ETH Price: $2,629.25 (+7.58%)

Token

Genno (Genno)
 

Overview

Max Total Supply

3,500 Genno

Holders

19

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
200 Genno
0x469203ee59e229751c2e3fdf696d5c8536577af9
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:
Genno

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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


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

// SPDX-License-Identifier: MIT

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: lovercatz.sol


pragma solidity ^0.8.9;

contract Genno is ERC721A, Ownable, ReentrancyGuard { 

    uint256 public _maxSupply = 3500;
    uint256 public _mintPrice = 0.02 ether;

    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 3500;

    bool public mintEnabled = false;

    bool public revealed = false;

    string public hiddenMetadataUri;

    mapping(address => uint) founderMaxMintMapping;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    constructor(string memory _hiddenMetadataUri,string memory initBaseURI) ERC721A("Genno", "Genno") {
        hiddenMetadataUri = _hiddenMetadataUri;
        baseURI = initBaseURI;
    }

    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;

        if(founderMaxMintMapping[msg.sender] > 0){
            _maxFreeMintPerAddr = founderMaxMintMapping[msg.sender];
        }

        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply + 1, "Sold out!");
        require(mintEnabled, "Minting is not live yet");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

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

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

        if (revealed == false) {
         return string(abi.encodePacked(hiddenMetadataUri));
        }

        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
     hiddenMetadataUri = _hiddenMetadataUri;
    }

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

    function setRevealed() external onlyOwner {
     revealed = !revealed;
    }

    function enableMint() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function setMaxMintOfAddress(address addresses,uint maxMint) public onlyOwner{
            founderMaxMintMapping[addresses] = maxMint;
    }

    function getMaxMintOfAddress(address addresses)  external view returns (uint){
        return founderMaxMintMapping[addresses];
    }

    function withdraw() public payable onlyOwner nonReentrant {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"},{"internalType":"string","name":"initBaseURI","type":"string"}],"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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"}],"name":"getMaxMintOfAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addresses","type":"address"},{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setMaxMintOfAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610dac600a5566470de4df820000600b556001600c55610dac600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200006357600080fd5b5060405162003bb338038062003bb38339818101604052810190620000899190620003f5565b6040518060400160405280600581526020017f47656e6e6f0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f47656e6e6f0000000000000000000000000000000000000000000000000000008152508160029081620001069190620006c5565b508060039081620001189190620006c5565b50620001296200018560201b60201c565b600081905550505062000151620001456200018a60201b60201c565b6200019260201b60201c565b600160098190555081600f90816200016a9190620006c5565b5080601190816200017c9190620006c5565b505050620007ac565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620002c18262000276565b810181811067ffffffffffffffff82111715620002e357620002e262000287565b5b80604052505050565b6000620002f862000258565b9050620003068282620002b6565b919050565b600067ffffffffffffffff82111562000329576200032862000287565b5b620003348262000276565b9050602081019050919050565b60005b838110156200036157808201518184015260208101905062000344565b8381111562000371576000848401525b50505050565b60006200038e62000388846200030b565b620002ec565b905082815260208101848484011115620003ad57620003ac62000271565b5b620003ba84828562000341565b509392505050565b600082601f830112620003da57620003d96200026c565b5b8151620003ec84826020860162000377565b91505092915050565b600080604083850312156200040f576200040e62000262565b5b600083015167ffffffffffffffff81111562000430576200042f62000267565b5b6200043e85828601620003c2565b925050602083015167ffffffffffffffff81111562000462576200046162000267565b5b6200047085828601620003c2565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004cd57607f821691505b602082108103620004e357620004e262000485565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200054d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200050e565b6200055986836200050e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005a6620005a06200059a8462000571565b6200057b565b62000571565b9050919050565b6000819050919050565b620005c28362000585565b620005da620005d182620005ad565b8484546200051b565b825550505050565b600090565b620005f1620005e2565b620005fe818484620005b7565b505050565b5b8181101562000626576200061a600082620005e7565b60018101905062000604565b5050565b601f82111562000675576200063f81620004e9565b6200064a84620004fe565b810160208510156200065a578190505b620006726200066985620004fe565b83018262000603565b50505b505050565b600082821c905092915050565b60006200069a600019846008026200067a565b1980831691505092915050565b6000620006b5838362000687565b9150826002028217905092915050565b620006d0826200047a565b67ffffffffffffffff811115620006ec57620006eb62000287565b5b620006f88254620004b4565b620007058282856200062a565b600060209050601f8311600181146200073d576000841562000728578287015190505b620007348582620006a7565b865550620007a4565b601f1984166200074d86620004e9565b60005b82811015620007775784890151825560018201915060208501945060208101905062000750565b8683101562000797578489015162000793601f89168262000687565b8355505b6001600288020188555050505b505050505050565b6133f780620007bc6000396000f3fe6080604052600436106102045760003560e01c80635e1c4b60116101185780639cb57d20116100a0578063b88d4fde1161006f578063b88d4fde146106ef578063c87b56dd14610718578063d123973014610755578063e985e9c514610780578063f2fde38b146107bd57610204565b80639cb57d2014610654578063a0712d681461067f578063a22cb4651461069b578063a45ba8e7146106c457610204565b8063715018a6116100e7578063715018a6146105955780638da5cb5b146105ac57806391b7f5ed146105d757806392910eec1461060057806395d89b411461062957610204565b80635e1c4b60146104c55780636352211e146104f05780636c0360eb1461052d57806370a082311461055857610204565b806323b872dd1161019b57806344b28d591161016a57806344b28d59146103f45780634fdd43cb1461040b578063518302271461043457806355f804b31461045f5780635a530a1a1461048857610204565b806323b872dd146103815780633bd64968146103aa5780633ccfd60b146103c157806342842e0e146103cb57610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806322f4596f1461032d57806323228b1b1461035857610204565b806301ffc9a7146102095780630387da421461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906122cd565b6107e6565b60405161023d9190612315565b60405180910390f35b34801561025257600080fd5b5061025b610878565b6040516102689190612349565b60405180910390f35b34801561027d57600080fd5b5061028661087e565b60405161029391906123fd565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be919061244b565b610910565b6040516102d091906124b9565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612500565b61098f565b005b34801561030e57600080fd5b50610317610ad3565b6040516103249190612349565b60405180910390f35b34801561033957600080fd5b50610342610aea565b60405161034f9190612349565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612500565b610af0565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612540565b610b40565b005b3480156103b657600080fd5b506103bf610e62565b005b6103c9610e96565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612540565b610f6c565b005b34801561040057600080fd5b50610409610f8c565b005b34801561041757600080fd5b50610432600480360381019061042d91906126c8565b610fc0565b005b34801561044057600080fd5b50610449610fdb565b6040516104569190612315565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906126c8565b610fee565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612711565b611009565b6040516104bc9190612349565b60405180910390f35b3480156104d157600080fd5b506104da611052565b6040516104e79190612349565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061244b565b611058565b60405161052491906124b9565b60405180910390f35b34801561053957600080fd5b5061054261106a565b60405161054f91906123fd565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612711565b6110f8565b60405161058c9190612349565b60405180910390f35b3480156105a157600080fd5b506105aa6111b0565b005b3480156105b857600080fd5b506105c16111c4565b6040516105ce91906124b9565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061244b565b6111ee565b005b34801561060c57600080fd5b506106276004803603810190610622919061244b565b611200565b005b34801561063557600080fd5b5061063e611212565b60405161064b91906123fd565b60405180910390f35b34801561066057600080fd5b506106696112a4565b6040516106769190612349565b60405180910390f35b6106996004803603810190610694919061244b565b6112aa565b005b3480156106a757600080fd5b506106c260048036038101906106bd919061276a565b611572565b005b3480156106d057600080fd5b506106d96116e9565b6040516106e691906123fd565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061284b565b611777565b005b34801561072457600080fd5b5061073f600480360381019061073a919061244b565b6117ea565b60405161074c91906123fd565b60405180910390f35b34801561076157600080fd5b5061076a6118aa565b6040516107779190612315565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906128ce565b6118bd565b6040516107b49190612315565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190612711565b611951565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461088d9061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b99061293d565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b826119d4565b610951576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099a82611058565b90508073ffffffffffffffffffffffffffffffffffffffff166109bb611a33565b73ffffffffffffffffffffffffffffffffffffffff1614610a1e576109e7816109e2611a33565b6118bd565b610a1d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610add611a3b565b6001546000540303905090565b600a5481565b610af8611a40565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000610b4b82611abe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bbe84611b8a565b91509150610bd48187610bcf611a33565b611bb1565b610c2057610be986610be4611a33565b6118bd565b610c1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c86576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c938686866001611bf5565b8015610c9e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6c85610d48888887611bfb565b7c020000000000000000000000000000000000000000000000000000000017611c23565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610df25760006001850190506000600460008381526020019081526020016000205403610df0576000548114610def578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e5a8686866001611c4e565b505050505050565b610e6a611a40565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610e9e611a40565b600260095403610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906129ba565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f1190612a0b565b60006040518083038185875af1925050503d8060008114610f4e576040519150601f19603f3d011682016040523d82523d6000602084013e610f53565b606091505b5050905080610f6157600080fd5b506001600981905550565b610f8783838360405180602001604052806000815250611777565b505050565b610f94611a40565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610fc8611a40565b80600f9081610fd79190612bcc565b5050565b600e60019054906101000a900460ff1681565b610ff6611a40565b80601190816110059190612bcc565b5050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d5481565b600061106382611abe565b9050919050565b601180546110779061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546110a39061293d565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b8611a40565b6111c26000611c54565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f6611a40565b80600b8190555050565b611208611a40565b80600d8190555050565b6060600380546112219061293d565b80601f016020809104026020016040519081016040528092919081815260200182805461124d9061293d565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b5050505050905090565b600c5481565b6000600b5490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561134057601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c819055505b60006001600d546113519190612ccd565b8361135a610ad3565b6113649190612ccd565b1080156113bd5750600c5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ba9190612ccd565b11155b806113fa57506113cb6111c4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561140757600091505b81836114139190612d23565b341015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90612dc9565b60405180910390fd5b6001600a546114649190612ccd565b8361146d610ad3565b6114779190612ccd565b106114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90612e35565b60405180910390fd5b600e60009054906101000a900460ff16611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90612ea1565b60405180910390fd5b80156115635782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155b9190612ccd565b925050819055505b61156d3384611d1a565b505050565b61157a611a33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115de576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115eb611a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611698611a33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116dd9190612315565b60405180910390a35050565b600f80546116f69061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546117229061293d565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b611782848484610b40565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e4576117ad84848484611d38565b6117e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117f5826119d4565b611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612f33565b60405180910390fd5b60001515600e60019054906101000a900460ff1615150361187757600f6040516020016118619190612fe1565b60405160208183030381529060405290506118a5565b601161188283611e88565b604051602001611893929190613075565b60405160208183030381529060405290505b919050565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611959611a40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613116565b60405180910390fd5b6119d181611c54565b50565b6000816119df611a3b565b111580156119ee575060005482105b8015611a2c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611a48611fe8565b73ffffffffffffffffffffffffffffffffffffffff16611a666111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613182565b60405180910390fd5b565b60008082905080611acd611a3b565b11611b5357600054811015611b525760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b50575b60008103611b46576004600083600190039350838152602001908152602001600020549050611b1c565b8092505050611b85565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c12868684611ff0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d34828260405180602001604052806000815250611ff9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5e611a33565b8786866040518563ffffffff1660e01b8152600401611d8094939291906131f7565b6020604051808303816000875af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db99190613258565b60015b611e35573d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b506000815103611e2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611ecf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe3565b600082905060005b60008214611f01578080611eea90613285565b915050600a82611efa91906132fc565b9150611ed7565b60008167ffffffffffffffff811115611f1d57611f1c61259d565b5b6040519080825280601f01601f191660200182016040528015611f4f5781602001600182028036833780820191505090505b5090505b60008514611fdc57600182611f68919061332d565b9150600a85611f779190613361565b6030611f839190612ccd565b60f81b818381518110611f9957611f98613392565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd591906132fc565b9450611f53565b8093505050505b919050565b600033905090565b60009392505050565b6120038383612096565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461209157600080549050600083820390505b6120436000868380600101945086611d38565b612079576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061203057816000541461208e57600080fd5b50505b505050565b600080549050600082036120d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e36000848385611bf5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061215a8361214b6000866000611bfb565b61215485612251565b17611c23565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121fb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121c0565b5060008203612236576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061224c6000848385611c4e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122aa81612275565b81146122b557600080fd5b50565b6000813590506122c7816122a1565b92915050565b6000602082840312156122e3576122e261226b565b5b60006122f1848285016122b8565b91505092915050565b60008115159050919050565b61230f816122fa565b82525050565b600060208201905061232a6000830184612306565b92915050565b6000819050919050565b61234381612330565b82525050565b600060208201905061235e600083018461233a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239e578082015181840152602081019050612383565b838111156123ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006123cf82612364565b6123d9818561236f565b93506123e9818560208601612380565b6123f2816123b3565b840191505092915050565b6000602082019050818103600083015261241781846123c4565b905092915050565b61242881612330565b811461243357600080fd5b50565b6000813590506124458161241f565b92915050565b6000602082840312156124615761246061226b565b5b600061246f84828501612436565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124a382612478565b9050919050565b6124b381612498565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b6124dd81612498565b81146124e857600080fd5b50565b6000813590506124fa816124d4565b92915050565b600080604083850312156125175761251661226b565b5b6000612525858286016124eb565b925050602061253685828601612436565b9150509250929050565b6000806000606084860312156125595761255861226b565b5b6000612567868287016124eb565b9350506020612578868287016124eb565b925050604061258986828701612436565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125d5826123b3565b810181811067ffffffffffffffff821117156125f4576125f361259d565b5b80604052505050565b6000612607612261565b905061261382826125cc565b919050565b600067ffffffffffffffff8211156126335761263261259d565b5b61263c826123b3565b9050602081019050919050565b82818337600083830152505050565b600061266b61266684612618565b6125fd565b90508281526020810184848401111561268757612686612598565b5b612692848285612649565b509392505050565b600082601f8301126126af576126ae612593565b5b81356126bf848260208601612658565b91505092915050565b6000602082840312156126de576126dd61226b565b5b600082013567ffffffffffffffff8111156126fc576126fb612270565b5b6127088482850161269a565b91505092915050565b6000602082840312156127275761272661226b565b5b6000612735848285016124eb565b91505092915050565b612747816122fa565b811461275257600080fd5b50565b6000813590506127648161273e565b92915050565b600080604083850312156127815761278061226b565b5b600061278f858286016124eb565b92505060206127a085828601612755565b9150509250929050565b600067ffffffffffffffff8211156127c5576127c461259d565b5b6127ce826123b3565b9050602081019050919050565b60006127ee6127e9846127aa565b6125fd565b90508281526020810184848401111561280a57612809612598565b5b612815848285612649565b509392505050565b600082601f83011261283257612831612593565b5b81356128428482602086016127db565b91505092915050565b600080600080608085870312156128655761286461226b565b5b6000612873878288016124eb565b9450506020612884878288016124eb565b935050604061289587828801612436565b925050606085013567ffffffffffffffff8111156128b6576128b5612270565b5b6128c28782880161281d565b91505092959194509250565b600080604083850312156128e5576128e461226b565b5b60006128f3858286016124eb565b9250506020612904858286016124eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061295557607f821691505b6020821081036129685761296761290e565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006129a4601f8361236f565b91506129af8261296e565b602082019050919050565b600060208201905081810360008301526129d381612997565b9050919050565b600081905092915050565b50565b60006129f56000836129da565b9150612a00826129e5565b600082019050919050565b6000612a16826129e8565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a45565b612a8c8683612a45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ac9612ac4612abf84612330565b612aa4565b612330565b9050919050565b6000819050919050565b612ae383612aae565b612af7612aef82612ad0565b848454612a52565b825550505050565b600090565b612b0c612aff565b612b17818484612ada565b505050565b5b81811015612b3b57612b30600082612b04565b600181019050612b1d565b5050565b601f821115612b8057612b5181612a20565b612b5a84612a35565b81016020851015612b69578190505b612b7d612b7585612a35565b830182612b1c565b50505b505050565b600082821c905092915050565b6000612ba360001984600802612b85565b1980831691505092915050565b6000612bbc8383612b92565b9150826002028217905092915050565b612bd582612364565b67ffffffffffffffff811115612bee57612bed61259d565b5b612bf8825461293d565b612c03828285612b3f565b600060209050601f831160018114612c365760008415612c24578287015190505b612c2e8582612bb0565b865550612c96565b601f198416612c4486612a20565b60005b82811015612c6c57848901518255600182019150602085019450602081019050612c47565b86831015612c895784890151612c85601f891682612b92565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cd882612330565b9150612ce383612330565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d1857612d17612c9e565b5b828201905092915050565b6000612d2e82612330565b9150612d3983612330565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7257612d71612c9e565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612db3601d8361236f565b9150612dbe82612d7d565b602082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e1f60098361236f565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612e8b60178361236f565b9150612e9682612e55565b602082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f1d602f8361236f565b9150612f2882612ec1565b604082019050919050565b60006020820190508181036000830152612f4c81612f10565b9050919050565b600081905092915050565b60008154612f6b8161293d565b612f758186612f53565b94506001821660008114612f905760018114612fa557612fd8565b60ff1983168652811515820286019350612fd8565b612fae85612a20565b60005b83811015612fd057815481890152600182019150602081019050612fb1565b838801955050505b50505092915050565b6000612fed8284612f5e565b915081905092915050565b600061300382612364565b61300d8185612f53565b935061301d818560208601612380565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061305f600583612f53565b915061306a82613029565b600582019050919050565b60006130818285612f5e565b915061308d8284612ff8565b915061309882613052565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061310060268361236f565b915061310b826130a4565b604082019050919050565b6000602082019050818103600083015261312f816130f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061316c60208361236f565b915061317782613136565b602082019050919050565b6000602082019050818103600083015261319b8161315f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131c9826131a2565b6131d381856131ad565b93506131e3818560208601612380565b6131ec816123b3565b840191505092915050565b600060808201905061320c60008301876124aa565b61321960208301866124aa565b613226604083018561233a565b818103606083015261323881846131be565b905095945050505050565b600081519050613252816122a1565b92915050565b60006020828403121561326e5761326d61226b565b5b600061327c84828501613243565b91505092915050565b600061329082612330565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132c2576132c1612c9e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061330782612330565b915061331283612330565b925082613322576133216132cd565b5b828204905092915050565b600061333882612330565b915061334383612330565b92508282101561335657613355612c9e565b5b828203905092915050565b600061336c82612330565b915061337783612330565b925082613387576133866132cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e0842d1d0bb63b5a0931dfff246641900662240c83f6ad1b555b673967f0359d64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d546470696b4d6b67546776414c757239707a487857696541536166784e65437a5234766a593570703957766a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d7777772e62616964752e636f6d00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635e1c4b60116101185780639cb57d20116100a0578063b88d4fde1161006f578063b88d4fde146106ef578063c87b56dd14610718578063d123973014610755578063e985e9c514610780578063f2fde38b146107bd57610204565b80639cb57d2014610654578063a0712d681461067f578063a22cb4651461069b578063a45ba8e7146106c457610204565b8063715018a6116100e7578063715018a6146105955780638da5cb5b146105ac57806391b7f5ed146105d757806392910eec1461060057806395d89b411461062957610204565b80635e1c4b60146104c55780636352211e146104f05780636c0360eb1461052d57806370a082311461055857610204565b806323b872dd1161019b57806344b28d591161016a57806344b28d59146103f45780634fdd43cb1461040b578063518302271461043457806355f804b31461045f5780635a530a1a1461048857610204565b806323b872dd146103815780633bd64968146103aa5780633ccfd60b146103c157806342842e0e146103cb57610204565b8063095ea7b3116101d7578063095ea7b3146102d957806318160ddd1461030257806322f4596f1461032d57806323228b1b1461035857610204565b806301ffc9a7146102095780630387da421461024657806306fdde0314610271578063081812fc1461029c575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906122cd565b6107e6565b60405161023d9190612315565b60405180910390f35b34801561025257600080fd5b5061025b610878565b6040516102689190612349565b60405180910390f35b34801561027d57600080fd5b5061028661087e565b60405161029391906123fd565b60405180910390f35b3480156102a857600080fd5b506102c360048036038101906102be919061244b565b610910565b6040516102d091906124b9565b60405180910390f35b3480156102e557600080fd5b5061030060048036038101906102fb9190612500565b61098f565b005b34801561030e57600080fd5b50610317610ad3565b6040516103249190612349565b60405180910390f35b34801561033957600080fd5b50610342610aea565b60405161034f9190612349565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190612500565b610af0565b005b34801561038d57600080fd5b506103a860048036038101906103a39190612540565b610b40565b005b3480156103b657600080fd5b506103bf610e62565b005b6103c9610e96565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612540565b610f6c565b005b34801561040057600080fd5b50610409610f8c565b005b34801561041757600080fd5b50610432600480360381019061042d91906126c8565b610fc0565b005b34801561044057600080fd5b50610449610fdb565b6040516104569190612315565b60405180910390f35b34801561046b57600080fd5b50610486600480360381019061048191906126c8565b610fee565b005b34801561049457600080fd5b506104af60048036038101906104aa9190612711565b611009565b6040516104bc9190612349565b60405180910390f35b3480156104d157600080fd5b506104da611052565b6040516104e79190612349565b60405180910390f35b3480156104fc57600080fd5b506105176004803603810190610512919061244b565b611058565b60405161052491906124b9565b60405180910390f35b34801561053957600080fd5b5061054261106a565b60405161054f91906123fd565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612711565b6110f8565b60405161058c9190612349565b60405180910390f35b3480156105a157600080fd5b506105aa6111b0565b005b3480156105b857600080fd5b506105c16111c4565b6040516105ce91906124b9565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f9919061244b565b6111ee565b005b34801561060c57600080fd5b506106276004803603810190610622919061244b565b611200565b005b34801561063557600080fd5b5061063e611212565b60405161064b91906123fd565b60405180910390f35b34801561066057600080fd5b506106696112a4565b6040516106769190612349565b60405180910390f35b6106996004803603810190610694919061244b565b6112aa565b005b3480156106a757600080fd5b506106c260048036038101906106bd919061276a565b611572565b005b3480156106d057600080fd5b506106d96116e9565b6040516106e691906123fd565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061284b565b611777565b005b34801561072457600080fd5b5061073f600480360381019061073a919061244b565b6117ea565b60405161074c91906123fd565b60405180910390f35b34801561076157600080fd5b5061076a6118aa565b6040516107779190612315565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906128ce565b6118bd565b6040516107b49190612315565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190612711565b611951565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108715750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b5481565b60606002805461088d9061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546108b99061293d565b80156109065780601f106108db57610100808354040283529160200191610906565b820191906000526020600020905b8154815290600101906020018083116108e957829003601f168201915b5050505050905090565b600061091b826119d4565b610951576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061099a82611058565b90508073ffffffffffffffffffffffffffffffffffffffff166109bb611a33565b73ffffffffffffffffffffffffffffffffffffffff1614610a1e576109e7816109e2611a33565b6118bd565b610a1d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610add611a3b565b6001546000540303905090565b600a5481565b610af8611a40565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000610b4b82611abe565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bb2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610bbe84611b8a565b91509150610bd48187610bcf611a33565b611bb1565b610c2057610be986610be4611a33565b6118bd565b610c1f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c86576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c938686866001611bf5565b8015610c9e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610d6c85610d48888887611bfb565b7c020000000000000000000000000000000000000000000000000000000017611c23565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610df25760006001850190506000600460008381526020019081526020016000205403610df0576000548114610def578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e5a8686866001611c4e565b505050505050565b610e6a611a40565b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b610e9e611a40565b600260095403610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906129ba565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610f1190612a0b565b60006040518083038185875af1925050503d8060008114610f4e576040519150601f19603f3d011682016040523d82523d6000602084013e610f53565b606091505b5050905080610f6157600080fd5b506001600981905550565b610f8783838360405180602001604052806000815250611777565b505050565b610f94611a40565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b610fc8611a40565b80600f9081610fd79190612bcc565b5050565b600e60019054906101000a900460ff1681565b610ff6611a40565b80601190816110059190612bcc565b5050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600d5481565b600061106382611abe565b9050919050565b601180546110779061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546110a39061293d565b80156110f05780601f106110c5576101008083540402835291602001916110f0565b820191906000526020600020905b8154815290600101906020018083116110d357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361115f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111b8611a40565b6111c26000611c54565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111f6611a40565b80600b8190555050565b611208611a40565b80600d8190555050565b6060600380546112219061293d565b80601f016020809104026020016040519081016040528092919081815260200182805461124d9061293d565b801561129a5780601f1061126f5761010080835404028352916020019161129a565b820191906000526020600020905b81548152906001019060200180831161127d57829003601f168201915b5050505050905090565b600c5481565b6000600b5490506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561134057601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c819055505b60006001600d546113519190612ccd565b8361135a610ad3565b6113649190612ccd565b1080156113bd5750600c5483601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ba9190612ccd565b11155b806113fa57506113cb6111c4565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561140757600091505b81836114139190612d23565b341015611455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144c90612dc9565b60405180910390fd5b6001600a546114649190612ccd565b8361146d610ad3565b6114779190612ccd565b106114b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ae90612e35565b60405180910390fd5b600e60009054906101000a900460ff16611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90612ea1565b60405180910390fd5b80156115635782601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461155b9190612ccd565b925050819055505b61156d3384611d1a565b505050565b61157a611a33565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115de576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115eb611a33565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611698611a33565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116dd9190612315565b60405180910390a35050565b600f80546116f69061293d565b80601f01602080910402602001604051908101604052809291908181526020018280546117229061293d565b801561176f5780601f106117445761010080835404028352916020019161176f565b820191906000526020600020905b81548152906001019060200180831161175257829003601f168201915b505050505081565b611782848484610b40565b60008373ffffffffffffffffffffffffffffffffffffffff163b146117e4576117ad84848484611d38565b6117e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117f5826119d4565b611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b90612f33565b60405180910390fd5b60001515600e60019054906101000a900460ff1615150361187757600f6040516020016118619190612fe1565b60405160208183030381529060405290506118a5565b601161188283611e88565b604051602001611893929190613075565b60405160208183030381529060405290505b919050565b600e60009054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611959611a40565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bf90613116565b60405180910390fd5b6119d181611c54565b50565b6000816119df611a3b565b111580156119ee575060005482105b8015611a2c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611a48611fe8565b73ffffffffffffffffffffffffffffffffffffffff16611a666111c4565b73ffffffffffffffffffffffffffffffffffffffff1614611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613182565b60405180910390fd5b565b60008082905080611acd611a3b565b11611b5357600054811015611b525760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611b50575b60008103611b46576004600083600190039350838152602001908152602001600020549050611b1c565b8092505050611b85565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c12868684611ff0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611d34828260405180602001604052806000815250611ff9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d5e611a33565b8786866040518563ffffffff1660e01b8152600401611d8094939291906131f7565b6020604051808303816000875af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db99190613258565b60015b611e35573d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b506000815103611e2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060008203611ecf576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611fe3565b600082905060005b60008214611f01578080611eea90613285565b915050600a82611efa91906132fc565b9150611ed7565b60008167ffffffffffffffff811115611f1d57611f1c61259d565b5b6040519080825280601f01601f191660200182016040528015611f4f5781602001600182028036833780820191505090505b5090505b60008514611fdc57600182611f68919061332d565b9150600a85611f779190613361565b6030611f839190612ccd565b60f81b818381518110611f9957611f98613392565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611fd591906132fc565b9450611f53565b8093505050505b919050565b600033905090565b60009392505050565b6120038383612096565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461209157600080549050600083820390505b6120436000868380600101945086611d38565b612079576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061203057816000541461208e57600080fd5b50505b505050565b600080549050600082036120d6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e36000848385611bf5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061215a8361214b6000866000611bfb565b61215485612251565b17611c23565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121fb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506121c0565b5060008203612236576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061224c6000848385611c4e565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6122aa81612275565b81146122b557600080fd5b50565b6000813590506122c7816122a1565b92915050565b6000602082840312156122e3576122e261226b565b5b60006122f1848285016122b8565b91505092915050565b60008115159050919050565b61230f816122fa565b82525050565b600060208201905061232a6000830184612306565b92915050565b6000819050919050565b61234381612330565b82525050565b600060208201905061235e600083018461233a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561239e578082015181840152602081019050612383565b838111156123ad576000848401525b50505050565b6000601f19601f8301169050919050565b60006123cf82612364565b6123d9818561236f565b93506123e9818560208601612380565b6123f2816123b3565b840191505092915050565b6000602082019050818103600083015261241781846123c4565b905092915050565b61242881612330565b811461243357600080fd5b50565b6000813590506124458161241f565b92915050565b6000602082840312156124615761246061226b565b5b600061246f84828501612436565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006124a382612478565b9050919050565b6124b381612498565b82525050565b60006020820190506124ce60008301846124aa565b92915050565b6124dd81612498565b81146124e857600080fd5b50565b6000813590506124fa816124d4565b92915050565b600080604083850312156125175761251661226b565b5b6000612525858286016124eb565b925050602061253685828601612436565b9150509250929050565b6000806000606084860312156125595761255861226b565b5b6000612567868287016124eb565b9350506020612578868287016124eb565b925050604061258986828701612436565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125d5826123b3565b810181811067ffffffffffffffff821117156125f4576125f361259d565b5b80604052505050565b6000612607612261565b905061261382826125cc565b919050565b600067ffffffffffffffff8211156126335761263261259d565b5b61263c826123b3565b9050602081019050919050565b82818337600083830152505050565b600061266b61266684612618565b6125fd565b90508281526020810184848401111561268757612686612598565b5b612692848285612649565b509392505050565b600082601f8301126126af576126ae612593565b5b81356126bf848260208601612658565b91505092915050565b6000602082840312156126de576126dd61226b565b5b600082013567ffffffffffffffff8111156126fc576126fb612270565b5b6127088482850161269a565b91505092915050565b6000602082840312156127275761272661226b565b5b6000612735848285016124eb565b91505092915050565b612747816122fa565b811461275257600080fd5b50565b6000813590506127648161273e565b92915050565b600080604083850312156127815761278061226b565b5b600061278f858286016124eb565b92505060206127a085828601612755565b9150509250929050565b600067ffffffffffffffff8211156127c5576127c461259d565b5b6127ce826123b3565b9050602081019050919050565b60006127ee6127e9846127aa565b6125fd565b90508281526020810184848401111561280a57612809612598565b5b612815848285612649565b509392505050565b600082601f83011261283257612831612593565b5b81356128428482602086016127db565b91505092915050565b600080600080608085870312156128655761286461226b565b5b6000612873878288016124eb565b9450506020612884878288016124eb565b935050604061289587828801612436565b925050606085013567ffffffffffffffff8111156128b6576128b5612270565b5b6128c28782880161281d565b91505092959194509250565b600080604083850312156128e5576128e461226b565b5b60006128f3858286016124eb565b9250506020612904858286016124eb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061295557607f821691505b6020821081036129685761296761290e565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006129a4601f8361236f565b91506129af8261296e565b602082019050919050565b600060208201905081810360008301526129d381612997565b9050919050565b600081905092915050565b50565b60006129f56000836129da565b9150612a00826129e5565b600082019050919050565b6000612a16826129e8565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612a827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612a45565b612a8c8683612a45565b95508019841693508086168417925050509392505050565b6000819050919050565b6000612ac9612ac4612abf84612330565b612aa4565b612330565b9050919050565b6000819050919050565b612ae383612aae565b612af7612aef82612ad0565b848454612a52565b825550505050565b600090565b612b0c612aff565b612b17818484612ada565b505050565b5b81811015612b3b57612b30600082612b04565b600181019050612b1d565b5050565b601f821115612b8057612b5181612a20565b612b5a84612a35565b81016020851015612b69578190505b612b7d612b7585612a35565b830182612b1c565b50505b505050565b600082821c905092915050565b6000612ba360001984600802612b85565b1980831691505092915050565b6000612bbc8383612b92565b9150826002028217905092915050565b612bd582612364565b67ffffffffffffffff811115612bee57612bed61259d565b5b612bf8825461293d565b612c03828285612b3f565b600060209050601f831160018114612c365760008415612c24578287015190505b612c2e8582612bb0565b865550612c96565b601f198416612c4486612a20565b60005b82811015612c6c57848901518255600182019150602085019450602081019050612c47565b86831015612c895784890151612c85601f891682612b92565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cd882612330565b9150612ce383612330565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612d1857612d17612c9e565b5b828201905092915050565b6000612d2e82612330565b9150612d3983612330565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d7257612d71612c9e565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612db3601d8361236f565b9150612dbe82612d7d565b602082019050919050565b60006020820190508181036000830152612de281612da6565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612e1f60098361236f565b9150612e2a82612de9565b602082019050919050565b60006020820190508181036000830152612e4e81612e12565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612e8b60178361236f565b9150612e9682612e55565b602082019050919050565b60006020820190508181036000830152612eba81612e7e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f1d602f8361236f565b9150612f2882612ec1565b604082019050919050565b60006020820190508181036000830152612f4c81612f10565b9050919050565b600081905092915050565b60008154612f6b8161293d565b612f758186612f53565b94506001821660008114612f905760018114612fa557612fd8565b60ff1983168652811515820286019350612fd8565b612fae85612a20565b60005b83811015612fd057815481890152600182019150602081019050612fb1565b838801955050505b50505092915050565b6000612fed8284612f5e565b915081905092915050565b600061300382612364565b61300d8185612f53565b935061301d818560208601612380565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061305f600583612f53565b915061306a82613029565b600582019050919050565b60006130818285612f5e565b915061308d8284612ff8565b915061309882613052565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061310060268361236f565b915061310b826130a4565b604082019050919050565b6000602082019050818103600083015261312f816130f3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061316c60208361236f565b915061317782613136565b602082019050919050565b6000602082019050818103600083015261319b8161315f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006131c9826131a2565b6131d381856131ad565b93506131e3818560208601612380565b6131ec816123b3565b840191505092915050565b600060808201905061320c60008301876124aa565b61321960208301866124aa565b613226604083018561233a565b818103606083015261323881846131be565b905095945050505050565b600081519050613252816122a1565b92915050565b60006020828403121561326e5761326d61226b565b5b600061327c84828501613243565b91505092915050565b600061329082612330565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036132c2576132c1612c9e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061330782612330565b915061331283612330565b925082613322576133216132cd565b5b828204905092915050565b600061333882612330565b915061334383612330565b92508282101561335657613355612c9e565b5b828203905092915050565b600061336c82612330565b915061337783612330565b925082613387576133866132cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220e0842d1d0bb63b5a0931dfff246641900662240c83f6ad1b555b673967f0359d64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d546470696b4d6b67546776414c757239707a487857696541536166784e65437a5234766a593570703957766a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d7777772e62616964752e636f6d00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _hiddenMetadataUri (string): https://ipfs.io/ipfs/QmTdpikMkgTgvALur9pzHxWieASafxNeCzR4vjY5pp9Wvj
Arg [1] : initBaseURI (string): www.baidu.com

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d546470696b4d6b6754
Arg [4] : 6776414c757239707a487857696541536166784e65437a5234766a5935707039
Arg [5] : 57766a0000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [7] : 7777772e62616964752e636f6d00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59836:3280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27390:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59937:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28292:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34775:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34216:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24043:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59898:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62615:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38482:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62435:78;;;;;;;;;;;;;:::i;:::-;;62908:205;;;:::i;:::-;;41395:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62521:86;;;;;;;;;;;;;:::i;:::-;;61979:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60118:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62122:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62765:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60029:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29685:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60282:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25227:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8138:103;;;;;;;;;;;;;:::i;:::-;;7490:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62330:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62218:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28468;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59984:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60567:819;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35333:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60155:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42178:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61510:461;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60078:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35798:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8396:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27390:639;27475:4;27814:10;27799:25;;:11;:25;;;;:102;;;;27891:10;27876:25;;:11;:25;;;;27799:102;:179;;;;27968:10;27953:25;;:11;:25;;;;27799:179;27779:199;;27390:639;;;:::o;59937:38::-;;;;:::o;28292:100::-;28346:13;28379:5;28372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28292:100;:::o;34775:218::-;34851:7;34876:16;34884:7;34876;:16::i;:::-;34871:64;;34901:34;;;;;;;;;;;;;;34871:64;34955:15;:24;34971:7;34955:24;;;;;;;;;;;:30;;;;;;;;;;;;34948:37;;34775:218;;;:::o;34216:400::-;34297:13;34313:16;34321:7;34313;:16::i;:::-;34297:32;;34369:5;34346:28;;:19;:17;:19::i;:::-;:28;;;34342:175;;34394:44;34411:5;34418:19;:17;:19::i;:::-;34394:16;:44::i;:::-;34389:128;;34466:35;;;;;;;;;;;;;;34389:128;34342:175;34562:2;34529:15;:24;34545:7;34529:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34600:7;34596:2;34580:28;;34589:5;34580:28;;;;;;;;;;;;34286:330;34216:400;;:::o;24043:323::-;24104:7;24332:15;:13;:15::i;:::-;24317:12;;24301:13;;:28;:46;24294:53;;24043:323;:::o;59898:32::-;;;;:::o;62615:142::-;7376:13;:11;:13::i;:::-;62742:7:::1;62707:21;:32;62729:9;62707:32;;;;;;;;;;;;;;;:42;;;;62615:142:::0;;:::o;38482:2817::-;38616:27;38646;38665:7;38646:18;:27::i;:::-;38616:57;;38731:4;38690:45;;38706:19;38690:45;;;38686:86;;38744:28;;;;;;;;;;;;;;38686:86;38786:27;38815:23;38842:35;38869:7;38842:26;:35::i;:::-;38785:92;;;;38977:68;39002:15;39019:4;39025:19;:17;:19::i;:::-;38977:24;:68::i;:::-;38972:180;;39065:43;39082:4;39088:19;:17;:19::i;:::-;39065:16;:43::i;:::-;39060:92;;39117:35;;;;;;;;;;;;;;39060:92;38972:180;39183:1;39169:16;;:2;:16;;;39165:52;;39194:23;;;;;;;;;;;;;;39165:52;39230:43;39252:4;39258:2;39262:7;39271:1;39230:21;:43::i;:::-;39366:15;39363:160;;;39506:1;39485:19;39478:30;39363:160;39903:18;:24;39922:4;39903:24;;;;;;;;;;;;;;;;39901:26;;;;;;;;;;;;39972:18;:22;39991:2;39972:22;;;;;;;;;;;;;;;;39970:24;;;;;;;;;;;40294:146;40331:2;40380:45;40395:4;40401:2;40405:19;40380:14;:45::i;:::-;20442:8;40352:73;40294:18;:146::i;:::-;40265:17;:26;40283:7;40265:26;;;;;;;;;;;:175;;;;40611:1;20442:8;40560:19;:47;:52;40556:627;;40633:19;40665:1;40655:7;:11;40633:33;;40822:1;40788:17;:30;40806:11;40788:30;;;;;;;;;;;;:35;40784:384;;40926:13;;40911:11;:28;40907:242;;41106:19;41073:17;:30;41091:11;41073:30;;;;;;;;;;;:52;;;;40907:242;40784:384;40614:569;40556:627;41230:7;41226:2;41211:27;;41220:4;41211:27;;;;;;;;;;;;41249:42;41270:4;41276:2;41280:7;41289:1;41249:20;:42::i;:::-;38605:2694;;;38482:2817;;;:::o;62435:78::-;7376:13;:11;:13::i;:::-;62497:8:::1;;;;;;;;;;;62496:9;62485:8;;:20;;;;;;;;;;;;;;;;;;62435:78::o:0;62908:205::-;7376:13;:11;:13::i;:::-;4415:1:::1;5013:7;;:19:::0;5005:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4415:1;5146:7;:18;;;;62978:12:::2;63004:10;62996:24;;63042:21;62996:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62977:101;;;63097:7;63089:16;;;::::0;::::2;;62966:147;4371:1:::1;5325:7;:22;;;;62908:205::o:0;41395:185::-;41533:39;41550:4;41556:2;41560:7;41533:39;;;;;;;;;;;;:16;:39::i;:::-;41395:185;;;:::o;62521:86::-;7376:13;:11;:13::i;:::-;62588:11:::1;;;;;;;;;;;62587:12;62573:11;;:26;;;;;;;;;;;;;;;;;;62521:86::o:0;61979:135::-;7376:13;:11;:13::i;:::-;62088:18:::1;62068:17;:38;;;;;;:::i;:::-;;61979:135:::0;:::o;60118:28::-;;;;;;;;;;;;;:::o;62122:88::-;7376:13;:11;:13::i;:::-;62199:3:::1;62189:7;:13;;;;;;:::i;:::-;;62122:88:::0;:::o;62765:135::-;62837:4;62860:21;:32;62882:9;62860:32;;;;;;;;;;;;;;;;62853:39;;62765:135;;;:::o;60029:40::-;;;;:::o;29685:152::-;29757:7;29800:27;29819:7;29800:18;:27::i;:::-;29777:52;;29685:152;;;:::o;60282:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25227:233::-;25299:7;25340:1;25323:19;;:5;:19;;;25319:60;;25351:28;;;;;;;;;;;;;;25319:60;19386:13;25397:18;:25;25416:5;25397:25;;;;;;;;;;;;;;;;:55;25390:62;;25227:233;;;:::o;8138:103::-;7376:13;:11;:13::i;:::-;8203:30:::1;8230:1;8203:18;:30::i;:::-;8138:103::o:0;7490:87::-;7536:7;7563:6;;;;;;;;;;;7556:13;;7490:87;:::o;62330:97::-;7376:13;:11;:13::i;:::-;62410:9:::1;62397:10;:22;;;;62330:97:::0;:::o;62218:104::-;7376:13;:11;:13::i;:::-;62308:6:::1;62287:18;:27;;;;62218:104:::0;:::o;28468:::-;28524:13;28557:7;28550:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28468:104;:::o;59984:38::-;;;;:::o;60567:819::-;60624:12;60639:10;;60624:25;;60701:1;60665:21;:33;60687:10;60665:33;;;;;;;;;;;;;;;;:37;60662:123;;;60740:21;:33;60762:10;60740:33;;;;;;;;;;;;;;;;60718:19;:55;;;;60662:123;60797:11;60858:1;60837:18;;:22;;;;:::i;:::-;60829:5;60813:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;60812:127;;;;;60919:19;;60910:5;60878:17;:29;60896:10;60878:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;60812:127;60811:169;;;;60972:7;:5;:7::i;:::-;60958:21;;:10;:21;;;60811:169;60797:183;;60997:6;60993:47;;;61027:1;61020:8;;60993:47;61081:4;61073:5;:12;;;;:::i;:::-;61060:9;:25;;61052:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;61175:1;61162:10;;:14;;;;:::i;:::-;61154:5;61138:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:38;61130:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;61209:11;;;;;;;;;;;61201:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;61265:6;61261:77;;;61321:5;61288:17;:29;61306:10;61288:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;61261:77;61350:28;61360:10;61372:5;61350:9;:28::i;:::-;60613:773;;60567:819;:::o;35333:308::-;35444:19;:17;:19::i;:::-;35432:31;;:8;:31;;;35428:61;;35472:17;;;;;;;;;;;;;;35428:61;35554:8;35502:18;:39;35521:19;:17;:19::i;:::-;35502:39;;;;;;;;;;;;;;;:49;35542:8;35502:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35614:8;35578:55;;35593:19;:17;:19::i;:::-;35578:55;;;35624:8;35578:55;;;;;;:::i;:::-;;;;;;;;35333:308;;:::o;60155:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42178:399::-;42345:31;42358:4;42364:2;42368:7;42345:12;:31::i;:::-;42409:1;42391:2;:14;;;:19;42387:183;;42430:56;42461:4;42467:2;42471:7;42480:5;42430:30;:56::i;:::-;42425:145;;42514:40;;;;;;;;;;;;;;42425:145;42387:183;42178:399;;;;:::o;61510:461::-;61628:13;61681:16;61689:7;61681;:16::i;:::-;61659:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;61801:5;61789:17;;:8;;;;;;;;;;;:17;;;61785:97;;61851:17;61834:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;61820:50;;;;61785:97;61925:7;61934:18;:7;:16;:18::i;:::-;61908:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61894:69;;61510:461;;;;:::o;60078:31::-;;;;;;;;;;;;;:::o;35798:164::-;35895:4;35919:18;:25;35938:5;35919:25;;;;;;;;;;;;;;;:35;35945:8;35919:35;;;;;;;;;;;;;;;;;;;;;;;;;35912:42;;35798:164;;;;:::o;8396:201::-;7376:13;:11;:13::i;:::-;8505:1:::1;8485:22;;:8;:22;;::::0;8477:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8561:28;8580:8;8561:18;:28::i;:::-;8396:201:::0;:::o;36220:282::-;36285:4;36341:7;36322:15;:13;:15::i;:::-;:26;;:66;;;;;36375:13;;36365:7;:23;36322:66;:153;;;;;36474:1;20162:8;36426:17;:26;36444:7;36426:26;;;;;;;;;;;;:44;:49;36322:153;36302:173;;36220:282;;;:::o;57986:105::-;58046:7;58073:10;58066:17;;57986:105;:::o;23559:92::-;23615:7;23559:92;:::o;7655:132::-;7730:12;:10;:12::i;:::-;7719:23;;:7;:5;:7::i;:::-;:23;;;7711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7655:132::o;30840:1275::-;30907:7;30927:12;30942:7;30927:22;;31010:4;30991:15;:13;:15::i;:::-;:23;30987:1061;;31044:13;;31037:4;:20;31033:1015;;;31082:14;31099:17;:23;31117:4;31099:23;;;;;;;;;;;;31082:40;;31216:1;20162:8;31188:6;:24;:29;31184:845;;31853:113;31870:1;31860:6;:11;31853:113;;31913:17;:25;31931:6;;;;;;;31913:25;;;;;;;;;;;;31904:34;;31853:113;;;31999:6;31992:13;;;;;;31184:845;31059:989;31033:1015;30987:1061;32076:31;;;;;;;;;;;;;;30840:1275;;;;:::o;37383:479::-;37485:27;37514:23;37555:38;37596:15;:24;37612:7;37596:24;;;;;;;;;;;37555:65;;37767:18;37744:41;;37824:19;37818:26;37799:45;;37729:126;37383:479;;;:::o;36611:659::-;36760:11;36925:16;36918:5;36914:28;36905:37;;37085:16;37074:9;37070:32;37057:45;;37235:15;37224:9;37221:30;37213:5;37202:9;37199:20;37196:56;37186:66;;36611:659;;;;;:::o;43239:159::-;;;;;:::o;57295:311::-;57430:7;57450:16;20566:3;57476:19;:41;;57450:68;;20566:3;57544:31;57555:4;57561:2;57565:9;57544:10;:31::i;:::-;57536:40;;:62;;57529:69;;;57295:311;;;;;:::o;32663:450::-;32743:14;32911:16;32904:5;32900:28;32891:37;;33088:5;33074:11;33049:23;33045:41;33042:52;33035:5;33032:63;33022:73;;32663:450;;;;:::o;44063:158::-;;;;;:::o;8757:191::-;8831:16;8850:6;;;;;;;;;;;8831:25;;8876:8;8867:6;;:17;;;;;;;;;;;;;;;;;;8931:8;8900:40;;8921:8;8900:40;;;;;;;;;;;;8820:128;8757:191;:::o;51818:112::-;51895:27;51905:2;51909:8;51895:27;;;;;;;;;;;;:9;:27::i;:::-;51818:112;;:::o;44661:716::-;44824:4;44870:2;44845:45;;;44891:19;:17;:19::i;:::-;44912:4;44918:7;44927:5;44845:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44841:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45145:1;45128:6;:13;:18;45124:235;;45174:40;;;;;;;;;;;;;;45124:235;45317:6;45311:13;45302:6;45298:2;45294:15;45287:38;44841:529;45014:54;;;45004:64;;;:6;:64;;;;44997:71;;;44661:716;;;;;;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;6041:98::-;6094:7;6121:10;6114:17;;6041:98;:::o;56996:147::-;57133:6;56996:147;;;;;:::o;51045:689::-;51176:19;51182:2;51186:8;51176:5;:19::i;:::-;51255:1;51237:2;:14;;;:19;51233:483;;51277:11;51291:13;;51277:27;;51323:13;51345:8;51339:3;:14;51323:30;;51372:233;51403:62;51442:1;51446:2;51450:7;;;;;;51459:5;51403:30;:62::i;:::-;51398:167;;51501:40;;;;;;;;;;;;;;51398:167;51600:3;51592:5;:11;51372:233;;51687:3;51670:13;;:20;51666:34;;51692:8;;;51666:34;51258:458;;51233:483;51045:689;;;:::o;45839:2454::-;45912:20;45935:13;;45912:36;;45975:1;45963:8;:13;45959:44;;45985:18;;;;;;;;;;;;;;45959:44;46016:61;46046:1;46050:2;46054:12;46068:8;46016:21;:61::i;:::-;46560:1;19524:2;46530:1;:26;;46529:32;46517:8;:45;46491:18;:22;46510:2;46491:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46839:139;46876:2;46930:33;46953:1;46957:2;46961:1;46930:14;:33::i;:::-;46897:30;46918:8;46897:20;:30::i;:::-;:66;46839:18;:139::i;:::-;46805:17;:31;46823:12;46805:31;;;;;;;;;;;:173;;;;46995:16;47026:11;47055:8;47040:12;:23;47026:37;;47310:16;47306:2;47302:25;47290:37;;47682:12;47642:8;47601:1;47539:25;47480:1;47419;47392:335;47807:1;47793:12;47789:20;47747:346;47848:3;47839:7;47836:16;47747:346;;48066:7;48056:8;48053:1;48026:25;48023:1;48020;48015:59;47901:1;47892:7;47888:15;47877:26;;47747:346;;;47751:77;48138:1;48126:8;:13;48122:45;;48148:19;;;;;;;;;;;;;;48122:45;48200:3;48184:13;:19;;;;46265:1950;;48225:60;48254:1;48258:2;48262:12;48276:8;48225:20;:60::i;:::-;45901:2392;45839:2454;;:::o;33215:324::-;33285:14;33518:1;33508:8;33505:15;33479:24;33475:46;33465:56;;33215:324;;;:::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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:307::-;2301:1;2311:113;2325:6;2322:1;2319:13;2311:113;;;2410:1;2405:3;2401:11;2395:18;2391:1;2386:3;2382:11;2375:39;2347:2;2344:1;2340:10;2335:15;;2311:113;;;2442:6;2439:1;2436:13;2433:101;;;2522:1;2513:6;2508:3;2504:16;2497:27;2433:101;2282:258;2233:307;;;:::o;2546:102::-;2587:6;2638:2;2634:7;2629:2;2622:5;2618:14;2614:28;2604:38;;2546:102;;;:::o;2654:364::-;2742:3;2770:39;2803:5;2770:39;:::i;:::-;2825:71;2889:6;2884:3;2825:71;:::i;:::-;2818:78;;2905:52;2950:6;2945:3;2938:4;2931:5;2927:16;2905:52;:::i;:::-;2982:29;3004:6;2982:29;:::i;:::-;2977:3;2973:39;2966:46;;2746:272;2654:364;;;;:::o;3024:313::-;3137:4;3175:2;3164:9;3160:18;3152:26;;3224:9;3218:4;3214:20;3210:1;3199:9;3195:17;3188:47;3252:78;3325:4;3316:6;3252:78;:::i;:::-;3244:86;;3024:313;;;;:::o;3343:122::-;3416:24;3434:5;3416:24;:::i;:::-;3409:5;3406:35;3396:63;;3455:1;3452;3445:12;3396:63;3343:122;:::o;3471:139::-;3517:5;3555:6;3542:20;3533:29;;3571:33;3598:5;3571:33;:::i;:::-;3471:139;;;;:::o;3616:329::-;3675:6;3724:2;3712:9;3703:7;3699:23;3695:32;3692:119;;;3730:79;;:::i;:::-;3692:119;3850:1;3875:53;3920:7;3911:6;3900:9;3896:22;3875:53;:::i;:::-;3865:63;;3821:117;3616:329;;;;:::o;3951:126::-;3988:7;4028:42;4021:5;4017:54;4006:65;;3951:126;;;:::o;4083:96::-;4120:7;4149:24;4167:5;4149:24;:::i;:::-;4138:35;;4083:96;;;:::o;4185:118::-;4272:24;4290:5;4272:24;:::i;:::-;4267:3;4260:37;4185:118;;:::o;4309:222::-;4402:4;4440:2;4429:9;4425:18;4417:26;;4453:71;4521:1;4510:9;4506:17;4497:6;4453:71;:::i;:::-;4309:222;;;;:::o;4537:122::-;4610:24;4628:5;4610:24;:::i;:::-;4603:5;4600:35;4590:63;;4649:1;4646;4639:12;4590:63;4537:122;:::o;4665:139::-;4711:5;4749:6;4736:20;4727:29;;4765:33;4792:5;4765:33;:::i;:::-;4665:139;;;;:::o;4810:474::-;4878:6;4886;4935:2;4923:9;4914:7;4910:23;4906:32;4903:119;;;4941:79;;:::i;:::-;4903:119;5061:1;5086:53;5131:7;5122:6;5111:9;5107:22;5086:53;:::i;:::-;5076:63;;5032:117;5188:2;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5159:118;4810:474;;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:181::-;12773:33;12769:1;12761:6;12757:14;12750:57;12633:181;:::o;12820:366::-;12962:3;12983:67;13047:2;13042:3;12983:67;:::i;:::-;12976:74;;13059:93;13148:3;13059:93;:::i;:::-;13177:2;13172:3;13168:12;13161:19;;12820:366;;;:::o;13192:419::-;13358:4;13396:2;13385:9;13381:18;13373:26;;13445:9;13439:4;13435:20;13431:1;13420:9;13416:17;13409:47;13473:131;13599:4;13473:131;:::i;:::-;13465:139;;13192:419;;;:::o;13617:147::-;13718:11;13755:3;13740:18;;13617:147;;;;:::o;13770:114::-;;:::o;13890:398::-;14049:3;14070:83;14151:1;14146:3;14070:83;:::i;:::-;14063:90;;14162:93;14251:3;14162:93;:::i;:::-;14280:1;14275:3;14271:11;14264:18;;13890:398;;;:::o;14294:379::-;14478:3;14500:147;14643:3;14500:147;:::i;:::-;14493:154;;14664:3;14657:10;;14294:379;;;:::o;14679:141::-;14728:4;14751:3;14743:11;;14774:3;14771:1;14764:14;14808:4;14805:1;14795:18;14787:26;;14679:141;;;:::o;14826:93::-;14863:6;14910:2;14905;14898:5;14894:14;14890:23;14880:33;;14826:93;;;:::o;14925:107::-;14969:8;15019:5;15013:4;15009:16;14988:37;;14925:107;;;;:::o;15038:393::-;15107:6;15157:1;15145:10;15141:18;15180:97;15210:66;15199:9;15180:97;:::i;:::-;15298:39;15328:8;15317:9;15298:39;:::i;:::-;15286:51;;15370:4;15366:9;15359:5;15355:21;15346:30;;15419:4;15409:8;15405:19;15398:5;15395:30;15385:40;;15114:317;;15038:393;;;;;:::o;15437:60::-;15465:3;15486:5;15479:12;;15437:60;;;:::o;15503:142::-;15553:9;15586:53;15604:34;15613:24;15631:5;15613:24;:::i;:::-;15604:34;:::i;:::-;15586:53;:::i;:::-;15573:66;;15503:142;;;:::o;15651:75::-;15694:3;15715:5;15708:12;;15651:75;;;:::o;15732:269::-;15842:39;15873:7;15842:39;:::i;:::-;15903:91;15952:41;15976:16;15952:41;:::i;:::-;15944:6;15937:4;15931:11;15903:91;:::i;:::-;15897:4;15890:105;15808:193;15732:269;;;:::o;16007:73::-;16052:3;16007:73;:::o;16086:189::-;16163:32;;:::i;:::-;16204:65;16262:6;16254;16248:4;16204:65;:::i;:::-;16139:136;16086:189;;:::o;16281:186::-;16341:120;16358:3;16351:5;16348:14;16341:120;;;16412:39;16449:1;16442:5;16412:39;:::i;:::-;16385:1;16378:5;16374:13;16365:22;;16341:120;;;16281:186;;:::o;16473:543::-;16574:2;16569:3;16566:11;16563:446;;;16608:38;16640:5;16608:38;:::i;:::-;16692:29;16710:10;16692:29;:::i;:::-;16682:8;16678:44;16875:2;16863:10;16860:18;16857:49;;;16896:8;16881:23;;16857:49;16919:80;16975:22;16993:3;16975:22;:::i;:::-;16965:8;16961:37;16948:11;16919:80;:::i;:::-;16578:431;;16563:446;16473:543;;;:::o;17022:117::-;17076:8;17126:5;17120:4;17116:16;17095:37;;17022:117;;;;:::o;17145:169::-;17189:6;17222:51;17270:1;17266:6;17258:5;17255:1;17251:13;17222:51;:::i;:::-;17218:56;17303:4;17297;17293:15;17283:25;;17196:118;17145:169;;;;:::o;17319:295::-;17395:4;17541:29;17566:3;17560:4;17541:29;:::i;:::-;17533:37;;17603:3;17600:1;17596:11;17590:4;17587:21;17579:29;;17319:295;;;;:::o;17619:1395::-;17736:37;17769:3;17736:37;:::i;:::-;17838:18;17830:6;17827:30;17824:56;;;17860:18;;:::i;:::-;17824:56;17904:38;17936:4;17930:11;17904:38;:::i;:::-;17989:67;18049:6;18041;18035:4;17989:67;:::i;:::-;18083:1;18107:4;18094:17;;18139:2;18131:6;18128:14;18156:1;18151:618;;;;18813:1;18830:6;18827:77;;;18879:9;18874:3;18870:19;18864:26;18855:35;;18827:77;18930:67;18990:6;18983:5;18930:67;:::i;:::-;18924:4;18917:81;18786:222;18121:887;;18151:618;18203:4;18199:9;18191:6;18187:22;18237:37;18269:4;18237:37;:::i;:::-;18296:1;18310:208;18324:7;18321:1;18318:14;18310:208;;;18403:9;18398:3;18394:19;18388:26;18380:6;18373:42;18454:1;18446:6;18442:14;18432:24;;18501:2;18490:9;18486:18;18473:31;;18347:4;18344:1;18340:12;18335:17;;18310:208;;;18546:6;18537:7;18534:19;18531:179;;;18604:9;18599:3;18595:19;18589:26;18647:48;18689:4;18681:6;18677:17;18666:9;18647:48;:::i;:::-;18639:6;18632:64;18554:156;18531:179;18756:1;18752;18744:6;18740:14;18736:22;18730:4;18723:36;18158:611;;;18121:887;;17711:1303;;;17619:1395;;:::o;19020:180::-;19068:77;19065:1;19058:88;19165:4;19162:1;19155:15;19189:4;19186:1;19179:15;19206:305;19246:3;19265:20;19283:1;19265:20;:::i;:::-;19260:25;;19299:20;19317:1;19299:20;:::i;:::-;19294:25;;19453:1;19385:66;19381:74;19378:1;19375:81;19372:107;;;19459:18;;:::i;:::-;19372:107;19503:1;19500;19496:9;19489:16;;19206:305;;;;:::o;19517:348::-;19557:7;19580:20;19598:1;19580:20;:::i;:::-;19575:25;;19614:20;19632:1;19614:20;:::i;:::-;19609:25;;19802:1;19734:66;19730:74;19727:1;19724:81;19719:1;19712:9;19705:17;19701:105;19698:131;;;19809:18;;:::i;:::-;19698:131;19857:1;19854;19850:9;19839:20;;19517:348;;;;:::o;19871:179::-;20011:31;20007:1;19999:6;19995:14;19988:55;19871:179;:::o;20056:366::-;20198:3;20219:67;20283:2;20278:3;20219:67;:::i;:::-;20212:74;;20295:93;20384:3;20295:93;:::i;:::-;20413:2;20408:3;20404:12;20397:19;;20056:366;;;:::o;20428:419::-;20594:4;20632:2;20621:9;20617:18;20609:26;;20681:9;20675:4;20671:20;20667:1;20656:9;20652:17;20645:47;20709:131;20835:4;20709:131;:::i;:::-;20701:139;;20428:419;;;:::o;20853:159::-;20993:11;20989:1;20981:6;20977:14;20970:35;20853:159;:::o;21018:365::-;21160:3;21181:66;21245:1;21240:3;21181:66;:::i;:::-;21174:73;;21256:93;21345:3;21256:93;:::i;:::-;21374:2;21369:3;21365:12;21358:19;;21018:365;;;:::o;21389:419::-;21555:4;21593:2;21582:9;21578:18;21570:26;;21642:9;21636:4;21632:20;21628:1;21617:9;21613:17;21606:47;21670:131;21796:4;21670:131;:::i;:::-;21662:139;;21389:419;;;:::o;21814:173::-;21954:25;21950:1;21942:6;21938:14;21931:49;21814:173;:::o;21993:366::-;22135:3;22156:67;22220:2;22215:3;22156:67;:::i;:::-;22149:74;;22232:93;22321:3;22232:93;:::i;:::-;22350:2;22345:3;22341:12;22334:19;;21993:366;;;:::o;22365:419::-;22531:4;22569:2;22558:9;22554:18;22546:26;;22618:9;22612:4;22608:20;22604:1;22593:9;22589:17;22582:47;22646:131;22772:4;22646:131;:::i;:::-;22638:139;;22365:419;;;:::o;22790:234::-;22930:34;22926:1;22918:6;22914:14;22907:58;22999:17;22994:2;22986:6;22982:15;22975:42;22790:234;:::o;23030:366::-;23172:3;23193:67;23257:2;23252:3;23193:67;:::i;:::-;23186:74;;23269:93;23358:3;23269:93;:::i;:::-;23387:2;23382:3;23378:12;23371:19;;23030:366;;;:::o;23402:419::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23402:419;;;:::o;23827:148::-;23929:11;23966:3;23951:18;;23827:148;;;;:::o;24005:874::-;24108:3;24145:5;24139:12;24174:36;24200:9;24174:36;:::i;:::-;24226:89;24308:6;24303:3;24226:89;:::i;:::-;24219:96;;24346:1;24335:9;24331:17;24362:1;24357:166;;;;24537:1;24532:341;;;;24324:549;;24357:166;24441:4;24437:9;24426;24422:25;24417:3;24410:38;24503:6;24496:14;24489:22;24481:6;24477:35;24472:3;24468:45;24461:52;;24357:166;;24532:341;24599:38;24631:5;24599:38;:::i;:::-;24659:1;24673:154;24687:6;24684:1;24681:13;24673:154;;;24761:7;24755:14;24751:1;24746:3;24742:11;24735:35;24811:1;24802:7;24798:15;24787:26;;24709:4;24706:1;24702:12;24697:17;;24673:154;;;24856:6;24851:3;24847:16;24840:23;;24539:334;;24324:549;;24112:767;;24005:874;;;;:::o;24885:269::-;25014:3;25036:92;25124:3;25115:6;25036:92;:::i;:::-;25029:99;;25145:3;25138:10;;24885:269;;;;:::o;25160:377::-;25266:3;25294:39;25327:5;25294:39;:::i;:::-;25349:89;25431:6;25426:3;25349:89;:::i;:::-;25342:96;;25447:52;25492:6;25487:3;25480:4;25473:5;25469:16;25447:52;:::i;:::-;25524:6;25519:3;25515:16;25508:23;;25270:267;25160:377;;;;:::o;25543:155::-;25683:7;25679:1;25671:6;25667:14;25660:31;25543:155;:::o;25704:400::-;25864:3;25885:84;25967:1;25962:3;25885:84;:::i;:::-;25878:91;;25978:93;26067:3;25978:93;:::i;:::-;26096:1;26091:3;26087:11;26080:18;;25704:400;;;:::o;26110:695::-;26388:3;26410:92;26498:3;26489:6;26410:92;:::i;:::-;26403:99;;26519:95;26610:3;26601:6;26519:95;:::i;:::-;26512:102;;26631:148;26775:3;26631:148;:::i;:::-;26624:155;;26796:3;26789:10;;26110:695;;;;;:::o;26811:225::-;26951:34;26947:1;26939:6;26935:14;26928:58;27020:8;27015:2;27007:6;27003:15;26996:33;26811:225;:::o;27042:366::-;27184:3;27205:67;27269:2;27264:3;27205:67;:::i;:::-;27198:74;;27281:93;27370:3;27281:93;:::i;:::-;27399:2;27394:3;27390:12;27383:19;;27042:366;;;:::o;27414:419::-;27580:4;27618:2;27607:9;27603:18;27595:26;;27667:9;27661:4;27657:20;27653:1;27642:9;27638:17;27631:47;27695:131;27821:4;27695:131;:::i;:::-;27687:139;;27414:419;;;:::o;27839:182::-;27979:34;27975:1;27967:6;27963:14;27956:58;27839:182;:::o;28027:366::-;28169:3;28190:67;28254:2;28249:3;28190:67;:::i;:::-;28183:74;;28266:93;28355:3;28266:93;:::i;:::-;28384:2;28379:3;28375:12;28368:19;;28027:366;;;:::o;28399:419::-;28565:4;28603:2;28592:9;28588:18;28580:26;;28652:9;28646:4;28642:20;28638:1;28627:9;28623:17;28616:47;28680:131;28806:4;28680:131;:::i;:::-;28672:139;;28399:419;;;:::o;28824:98::-;28875:6;28909:5;28903:12;28893:22;;28824:98;;;:::o;28928:168::-;29011:11;29045:6;29040:3;29033:19;29085:4;29080:3;29076:14;29061:29;;28928:168;;;;:::o;29102:360::-;29188:3;29216:38;29248:5;29216:38;:::i;:::-;29270:70;29333:6;29328:3;29270:70;:::i;:::-;29263:77;;29349:52;29394:6;29389:3;29382:4;29375:5;29371:16;29349:52;:::i;:::-;29426:29;29448:6;29426:29;:::i;:::-;29421:3;29417:39;29410:46;;29192:270;29102:360;;;;:::o;29468:640::-;29663:4;29701:3;29690:9;29686:19;29678:27;;29715:71;29783:1;29772:9;29768:17;29759:6;29715:71;:::i;:::-;29796:72;29864:2;29853:9;29849:18;29840:6;29796:72;:::i;:::-;29878;29946:2;29935:9;29931:18;29922:6;29878:72;:::i;:::-;29997:9;29991:4;29987:20;29982:2;29971:9;29967:18;29960:48;30025:76;30096:4;30087:6;30025:76;:::i;:::-;30017:84;;29468:640;;;;;;;:::o;30114:141::-;30170:5;30201:6;30195:13;30186:22;;30217:32;30243:5;30217:32;:::i;:::-;30114:141;;;;:::o;30261:349::-;30330:6;30379:2;30367:9;30358:7;30354:23;30350:32;30347:119;;;30385:79;;:::i;:::-;30347:119;30505:1;30530:63;30585:7;30576:6;30565:9;30561:22;30530:63;:::i;:::-;30520:73;;30476:127;30261:349;;;;:::o;30616:233::-;30655:3;30678:24;30696:5;30678:24;:::i;:::-;30669:33;;30724:66;30717:5;30714:77;30711:103;;30794:18;;:::i;:::-;30711:103;30841:1;30834:5;30830:13;30823:20;;30616:233;;;:::o;30855:180::-;30903:77;30900:1;30893:88;31000:4;30997:1;30990:15;31024:4;31021:1;31014:15;31041:185;31081:1;31098:20;31116:1;31098:20;:::i;:::-;31093:25;;31132:20;31150:1;31132:20;:::i;:::-;31127:25;;31171:1;31161:35;;31176:18;;:::i;:::-;31161:35;31218:1;31215;31211:9;31206:14;;31041:185;;;;:::o;31232:191::-;31272:4;31292:20;31310:1;31292:20;:::i;:::-;31287:25;;31326:20;31344:1;31326:20;:::i;:::-;31321:25;;31365:1;31362;31359:8;31356:34;;;31370:18;;:::i;:::-;31356:34;31415:1;31412;31408:9;31400:17;;31232:191;;;;:::o;31429:176::-;31461:1;31478:20;31496:1;31478:20;:::i;:::-;31473:25;;31512:20;31530:1;31512:20;:::i;:::-;31507:25;;31551:1;31541:35;;31556:18;;:::i;:::-;31541:35;31597:1;31594;31590:9;31585:14;;31429:176;;;;:::o;31611:180::-;31659:77;31656:1;31649:88;31756:4;31753:1;31746:15;31780:4;31777:1;31770:15

Swarm Source

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