ETH Price: $2,360.64 (+0.87%)

Token

Secrets (SCR)
 

Overview

Max Total Supply

266 SCR

Holders

39

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SCR
0xaa67357b48e4747c1f6604c7cd9a3ca2c346996c
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:
SecretsCollective

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

    /**
     * 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 payable;

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

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

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

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                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 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: contracts/SecretsCollective.sol



pragma solidity ^0.8.7;





contract SecretsCollective is ERC721A, Ownable, ReentrancyGuard, Pausable{

    // public mint variables
    uint256 public maxSupply = 3707;
    uint256 public maxMint = 20;
    uint256 public price = 0.007 ether;

    //base uri, baseextension and pre-reveal
    string private baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;

    // booleans for reveal toggle and if mint is enabled
    bool public revealed = false;
    bool public publicMintEnabled = false;

    // keep track of # of minted tokens per user
    mapping(address => uint256) totalPublicMint;
    mapping(address => uint256) public totalFreeMints;

    // Constructor
    // https://filesite/CID/
    // initialize cid(Pinata, ipfs etc) for baseUri and contractUri, make sure / is at end and metadata files named as "x.png" "x.json" not "name x.png" etc
    // https://gateway.pinata.cloud/ipfs/CID/
    // initialize pre-reveal cid, baseExtension has to be name.json
    // https://gateway.pinata.cloud/ipfs/CID/hidden.json

    constructor (
        string memory _initBaseURI,
        string memory _initNotRevealedUri
        ) ERC721A("Secrets", "SCR") {
            setBaseURI(_initBaseURI); 
            setNotRevealedURI(_initNotRevealedUri); 
    }

    // only allows msg.sender to be external tx origin 
    modifier userOnly {
        require(tx.origin == msg.sender,"Error: Function cannot be called by another contract");
        _;
    }

    function teamMint(address _address, uint256 _amount) external userOnly onlyOwner nonReentrant {
        _safeMint(_address, _amount);
    }

    // Users can public mint tokens based on modifiers and requirements

    function mint(uint256 _quantity) external payable whenNotPaused nonReentrant {

        // user receives 1 free mint during mint
        if (totalFreeMints[msg.sender] == 0) {
            require(publicMintEnabled, "Public mint is currently paused");
            require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached");
            require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8");
            require(msg.value >= ((_quantity * price) - price), "Not enough ether sent");

            totalFreeMints[msg.sender] += 1;
            totalPublicMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

        // if user has already received free mint, regular price is applied
        } else {
            require(publicMintEnabled, "Public mint is currently paused");
            require(totalSupply() + _quantity <= maxSupply, "Error: max supply reached");
            require((totalPublicMint[msg.sender] + _quantity) <= maxMint, "Error: Cannot mint more than 8");
            require(msg.value >= (_quantity * price), "Not enough ether sent");

            totalPublicMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

        }
    }

    // returns the baseuri of collection, private
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    // override _startTokenId() from erc721a to start tokenId at 1
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    // return tokenUri from tokenId
    function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
    {
    require(_exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
    
    if(revealed == false) {
        return notRevealedUri;
    } else {
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _toString(tokenId), baseExtension))
        : "";
        }
    }

    // owner updates and functions

    function togglePublicMint() external onlyOwner {
        publicMintEnabled = !publicMintEnabled;
    }
    // reveal metadata + NFT images
    function reveal() external onlyOwner {
      revealed = !revealed;
    }
    function setPrice(uint256 _Price) external onlyOwner {
    price = _Price;
    }

    function setmaxMintAmount(uint256 _maxMint) external onlyOwner {
    maxMint = _maxMint;
    }
  
    function pause() public onlyOwner { 
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

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

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

    // withdraw to owner(), i.e only if msg.sender is owner
    function withdrawTransfer(address _to) external onlyOwner nonReentrant userOnly{
        payable(_to).transfer(address(this).balance);
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_Price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setmaxMintAmount","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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610e7b600b556014600c556618de76816d8000600d556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f908051906020019062000067929190620003de565b506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000ab57600080fd5b5060405162003ea138038062003ea18339818101604052810190620000d191906200050c565b6040518060400160405280600781526020017f53656372657473000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5343520000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000155929190620003de565b5080600390805190602001906200016e929190620003de565b506200017f620001f460201b60201c565b6000819055505050620001a76200019b620001fd60201b60201c565b6200020560201b60201c565b60016009819055506000600a60006101000a81548160ff021916908315150217905550620001db82620002cb60201b60201c565b620001ec81620002f760201b60201c565b505062000798565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002db6200032360201b60201c565b80600e9080519060200190620002f3929190620003de565b5050565b620003076200032360201b60201c565b80601090805190602001906200031f929190620003de565b5050565b62000333620001fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000359620003b460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003a990620005b8565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003ec9062000680565b90600052602060002090601f0160209004810192826200041057600085556200045c565b82601f106200042b57805160ff19168380011785556200045c565b828001600101855582156200045c579182015b828111156200045b5782518255916020019190600101906200043e565b5b5090506200046b91906200046f565b5090565b5b808211156200048a57600081600090555060010162000470565b5090565b6000620004a56200049f8462000603565b620005da565b905082815260208101848484011115620004c457620004c36200074f565b5b620004d18482856200064a565b509392505050565b600082601f830112620004f157620004f06200074a565b5b8151620005038482602086016200048e565b91505092915050565b6000806040838503121562000526576200052562000759565b5b600083015167ffffffffffffffff81111562000547576200054662000754565b5b6200055585828601620004d9565b925050602083015167ffffffffffffffff81111562000579576200057862000754565b5b6200058785828601620004d9565b9150509250929050565b6000620005a060208362000639565b9150620005ad826200076f565b602082019050919050565b60006020820190508181036000830152620005d38162000591565b9050919050565b6000620005e6620005f9565b9050620005f48282620006b6565b919050565b6000604051905090565b600067ffffffffffffffff8211156200062157620006206200071b565b5b6200062c826200075e565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200066a5780820151818401526020810190506200064d565b838111156200067a576000848401525b50505050565b600060028204905060018216806200069957607f821691505b60208210811415620006b057620006af620006ec565b5b50919050565b620006c1826200075e565b810181811067ffffffffffffffff82111715620006e357620006e26200071b565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6136f980620007a86000396000f3fe6080604052600436106102255760003560e01c80637501f74111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610766578063da3ef23f14610791578063e985e9c5146107ba578063f2c4ce1e146107f7578063f2fde38b1461082057610225565b8063a475b5dd146106a2578063add5a4fa146106b9578063b88d4fde146106e2578063c6682862146106fe578063c87b56dd1461072957610225565b806391b7f5ed116100f257806391b7f5ed146105de57806395d89b4114610607578063a035b1fe14610632578063a0712d681461065d578063a22cb4651461067957610225565b80637501f741146105485780637f00c7a6146105735780638456cb591461059c5780638da5cb5b146105b357610225565b80633f4ba83a116101b15780635c975abb116101755780635c975abb146104635780636352211e1461048e578063700d9df3146104cb57806370a08231146104f4578063715018a61461053157610225565b80633f4ba83a146103c55780634047638d146103dc57806342842e0e146103f3578063518302271461040f57806355f804b31461043a57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630f4161aa1461031657806318160ddd1461034157806323b872dd1461036c57806337321ec81461038857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ab4565b610849565b60405161025e9190612eec565b60405180910390f35b34801561027357600080fd5b5061027c6108db565b6040516102899190612f07565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b57565b61096d565b6040516102c69190612e85565b60405180910390f35b3480156102db57600080fd5b506102e46109ec565b6040516102f19190612f07565b60405180910390f35b610314600480360381019061030f9190612a74565b610a7a565b005b34801561032257600080fd5b5061032b610bbe565b6040516103389190612eec565b60405180910390f35b34801561034d57600080fd5b50610356610bd1565b6040516103639190613089565b60405180910390f35b6103866004803603810190610381919061295e565b610be8565b005b34801561039457600080fd5b506103af60048036038101906103aa91906128f1565b610f0d565b6040516103bc9190613089565b60405180910390f35b3480156103d157600080fd5b506103da610f25565b005b3480156103e857600080fd5b506103f1610f37565b005b61040d6004803603810190610408919061295e565b610f6b565b005b34801561041b57600080fd5b50610424610f8b565b6040516104319190612eec565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612b0e565b610f9e565b005b34801561046f57600080fd5b50610478610fc0565b6040516104859190612eec565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612b57565b610fd7565b6040516104c29190612e85565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906128f1565b610fe9565b005b34801561050057600080fd5b5061051b600480360381019061051691906128f1565b6110ff565b6040516105289190613089565b60405180910390f35b34801561053d57600080fd5b506105466111b8565b005b34801561055457600080fd5b5061055d6111cc565b60405161056a9190613089565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190612b57565b6111d2565b005b3480156105a857600080fd5b506105b16111e4565b005b3480156105bf57600080fd5b506105c86111f6565b6040516105d59190612e85565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612b57565b611220565b005b34801561061357600080fd5b5061061c611232565b6040516106299190612f07565b60405180910390f35b34801561063e57600080fd5b506106476112c4565b6040516106549190613089565b60405180910390f35b61067760048036038101906106729190612b57565b6112ca565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612a34565b6117a7565b005b3480156106ae57600080fd5b506106b76118b2565b005b3480156106c557600080fd5b506106e060048036038101906106db9190612a74565b6118e6565b005b6106fc60048036038101906106f791906129b1565b6119c0565b005b34801561070a57600080fd5b50610713611a33565b6040516107209190612f07565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b57565b611ac1565b60405161075d9190612f07565b60405180910390f35b34801561077257600080fd5b5061077b611c1a565b6040516107889190613089565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612b0e565b611c20565b005b3480156107c657600080fd5b506107e160048036038101906107dc919061291e565b611c42565b6040516107ee9190612eec565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190612b0e565b611cd6565b005b34801561082c57600080fd5b50610847600480360381019061084291906128f1565b611cf8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ea9061331d565b80601f01602080910402602001604051908101604052809291908181526020018280546109169061331d565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611d7c565b6109ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109f99061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a259061331d565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b505050505081565b6000610a8582610fd7565b90508073ffffffffffffffffffffffffffffffffffffffff16610aa6611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614610b0957610ad281610acd611ddb565b611c42565b610b08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160019054906101000a900460ff1681565b6000610bdb611de3565b6001546000540303905090565b6000610bf382611dec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611eba565b91509150610c7c8187610c77611ddb565b611ee1565b610cc857610c9186610c8c611ddb565b611c42565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3c8686866001611f25565b8015610d4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1585610df1888887611f2b565b7c020000000000000000000000000000000000000000000000000000000017611f53565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e9d576000600185019050600060046000838152602001908152602001600020541415610e9b576000548114610e9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f058686866001611f7e565b505050505050565b60136020528060005260406000206000915090505481565b610f2d611f84565b610f35612002565b565b610f3f611f84565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610f86838383604051806020016040528060008152506119c0565b505050565b601160009054906101000a900460ff1681565b610fa6611f84565b80600e9080519060200190610fbc929190612705565b5050565b6000600a60009054906101000a900460ff16905090565b6000610fe282611dec565b9050919050565b610ff1611f84565b60026009541415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613049565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612fc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110f3573d6000803e3d6000fd5b50600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611167576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111c0611f84565b6111ca6000612065565b565b600c5481565b6111da611f84565b80600c8190555050565b6111ec611f84565b6111f461212b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611228611f84565b80600d8190555050565b6060600380546112419061331d565b80601f016020809104026020016040519081016040528092919081815260200182805461126d9061331d565b80156112ba5780601f1061128f576101008083540402835291602001916112ba565b820191906000526020600020905b81548152906001019060200180831161129d57829003601f168201915b5050505050905090565b600d5481565b6112d261218e565b60026009541415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613049565b60405180910390fd5b60026009819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156115b657601160019054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613029565b60405180910390fd5b600b54816113c3610bd1565b6113cd9190613183565b111561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612fe9565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c9190613183565b111561149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613069565b60405180910390fd5b600d54600d54826114ae91906131d9565b6114b89190613233565b3410156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613009565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154a9190613183565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a09190613183565b925050819055506115b133826121d8565b61179c565b601160019054906101000a900460ff16611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613029565b60405180910390fd5b600b5481611611610bd1565b61161b9190613183565b111561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612fe9565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116aa9190613183565b11156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613069565b60405180910390fd5b600d54816116f991906131d9565b34101561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290613009565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461178a9190613183565b9250508190555061179b33826121d8565b5b600160098190555050565b80600760006117b4611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611861611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a69190612eec565b60405180910390a35050565b6118ba611f84565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90612fc9565b60405180910390fd5b61195c611f84565b600260095414156119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613049565b60405180910390fd5b60026009819055506119b482826121d8565b60016009819055505050565b6119cb848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a2d576119f6848484846121f6565b611a2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f8054611a409061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6c9061331d565b8015611ab95780601f10611a8e57610100808354040283529160200191611ab9565b820191906000526020600020905b815481529060010190602001808311611a9c57829003601f168201915b505050505081565b6060611acc82611d7c565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612fa9565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611bb95760108054611b349061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b609061331d565b8015611bad5780601f10611b8257610100808354040283529160200191611bad565b820191906000526020600020905b815481529060010190602001808311611b9057829003601f168201915b50505050509050611c15565b6000611bc3612356565b90506000815111611be35760405180602001604052806000815250611c11565b80611bed846123e8565b600f604051602001611c0193929190612e54565b6040516020818303038152906040525b9150505b919050565b600b5481565b611c28611f84565b80600f9080519060200190611c3e929190612705565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611f84565b8060109080519060200190611cf4929190612705565b5050565b611d00611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612f49565b60405180910390fd5b611d7981612065565b50565b600081611d87611de3565b11158015611d96575060005482105b8015611dd4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611dfb611de3565b11611e8357600054811015611e825760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e80575b6000811415611e76576004600083600190039350838152602001908152602001600020549050611e4b565b8092505050611eb5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f42868684612441565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f8c61244a565b73ffffffffffffffffffffffffffffffffffffffff16611faa6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790612f89565b60405180910390fd5b565b61200a612452565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e61244a565b60405161205b9190612e85565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61213361218e565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861217761244a565b6040516121849190612e85565b60405180910390a1565b612196610fc0565b156121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd90612f69565b60405180910390fd5b565b6121f282826040518060200160405280600081525061249b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261221c611ddb565b8786866040518563ffffffff1660e01b815260040161223e9493929190612ea0565b602060405180830381600087803b15801561225857600080fd5b505af192505050801561228957506040513d601f19601f820116820180604052508101906122869190612ae1565b60015b612303573d80600081146122b9576040519150601f19603f3d011682016040523d82523d6000602084013e6122be565b606091505b506000815114156122fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546123659061331d565b80601f01602080910402602001604051908101604052809291908181526020018280546123919061331d565b80156123de5780601f106123b3576101008083540402835291602001916123de565b820191906000526020600020905b8154815290600101906020018083116123c157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561242c57600184039350600a81066030018453600a81049050806124275761242c565b612401565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b61245a610fc0565b612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090612f29565b60405180910390fd5b565b6124a58383612538565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253357600080549050600083820390505b6124e560008683806001019450866121f6565b61251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d257816000541461253057600080fd5b50505b505050565b6000805490506000821415612579576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125866000848385611f25565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125fd836125ee6000866000611f2b565b6125f7856126f5565b17611f53565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461269e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612663565b5060008214156126da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126f06000848385611f7e565b505050565b60006001821460e11b9050919050565b8280546127119061331d565b90600052602060002090601f016020900481019282612733576000855561277a565b82601f1061274c57805160ff191683800117855561277a565b8280016001018555821561277a579182015b8281111561277957825182559160200191906001019061275e565b5b509050612787919061278b565b5090565b5b808211156127a457600081600090555060010161278c565b5090565b60006127bb6127b6846130c9565b6130a4565b9050828152602081018484840111156127d7576127d6613412565b5b6127e28482856132db565b509392505050565b60006127fd6127f8846130fa565b6130a4565b90508281526020810184848401111561281957612818613412565b5b6128248482856132db565b509392505050565b60008135905061283b81613667565b92915050565b6000813590506128508161367e565b92915050565b60008135905061286581613695565b92915050565b60008151905061287a81613695565b92915050565b600082601f8301126128955761289461340d565b5b81356128a58482602086016127a8565b91505092915050565b600082601f8301126128c3576128c261340d565b5b81356128d38482602086016127ea565b91505092915050565b6000813590506128eb816136ac565b92915050565b6000602082840312156129075761290661341c565b5b60006129158482850161282c565b91505092915050565b600080604083850312156129355761293461341c565b5b60006129438582860161282c565b92505060206129548582860161282c565b9150509250929050565b6000806000606084860312156129775761297661341c565b5b60006129858682870161282c565b93505060206129968682870161282c565b92505060406129a7868287016128dc565b9150509250925092565b600080600080608085870312156129cb576129ca61341c565b5b60006129d98782880161282c565b94505060206129ea8782880161282c565b93505060406129fb878288016128dc565b925050606085013567ffffffffffffffff811115612a1c57612a1b613417565b5b612a2887828801612880565b91505092959194509250565b60008060408385031215612a4b57612a4a61341c565b5b6000612a598582860161282c565b9250506020612a6a85828601612841565b9150509250929050565b60008060408385031215612a8b57612a8a61341c565b5b6000612a998582860161282c565b9250506020612aaa858286016128dc565b9150509250929050565b600060208284031215612aca57612ac961341c565b5b6000612ad884828501612856565b91505092915050565b600060208284031215612af757612af661341c565b5b6000612b058482850161286b565b91505092915050565b600060208284031215612b2457612b2361341c565b5b600082013567ffffffffffffffff811115612b4257612b41613417565b5b612b4e848285016128ae565b91505092915050565b600060208284031215612b6d57612b6c61341c565b5b6000612b7b848285016128dc565b91505092915050565b612b8d81613267565b82525050565b612b9c81613279565b82525050565b6000612bad82613140565b612bb78185613156565b9350612bc78185602086016132ea565b612bd081613421565b840191505092915050565b6000612be68261314b565b612bf08185613167565b9350612c008185602086016132ea565b612c0981613421565b840191505092915050565b6000612c1f8261314b565b612c298185613178565b9350612c398185602086016132ea565b80840191505092915050565b60008154612c528161331d565b612c5c8186613178565b94506001821660008114612c775760018114612c8857612cbb565b60ff19831686528186019350612cbb565b612c918561312b565b60005b83811015612cb357815481890152600182019150602081019050612c94565b838801955050505b50505092915050565b6000612cd1601483613167565b9150612cdc82613432565b602082019050919050565b6000612cf4602683613167565b9150612cff8261345b565b604082019050919050565b6000612d17601083613167565b9150612d22826134aa565b602082019050919050565b6000612d3a602083613167565b9150612d45826134d3565b602082019050919050565b6000612d5d602f83613167565b9150612d68826134fc565b604082019050919050565b6000612d80603483613167565b9150612d8b8261354b565b604082019050919050565b6000612da3601983613167565b9150612dae8261359a565b602082019050919050565b6000612dc6601583613167565b9150612dd1826135c3565b602082019050919050565b6000612de9601f83613167565b9150612df4826135ec565b602082019050919050565b6000612e0c601f83613167565b9150612e1782613615565b602082019050919050565b6000612e2f601e83613167565b9150612e3a8261363e565b602082019050919050565b612e4e816132d1565b82525050565b6000612e608286612c14565b9150612e6c8285612c14565b9150612e788284612c45565b9150819050949350505050565b6000602082019050612e9a6000830184612b84565b92915050565b6000608082019050612eb56000830187612b84565b612ec26020830186612b84565b612ecf6040830185612e45565b8181036060830152612ee18184612ba2565b905095945050505050565b6000602082019050612f016000830184612b93565b92915050565b60006020820190508181036000830152612f218184612bdb565b905092915050565b60006020820190508181036000830152612f4281612cc4565b9050919050565b60006020820190508181036000830152612f6281612ce7565b9050919050565b60006020820190508181036000830152612f8281612d0a565b9050919050565b60006020820190508181036000830152612fa281612d2d565b9050919050565b60006020820190508181036000830152612fc281612d50565b9050919050565b60006020820190508181036000830152612fe281612d73565b9050919050565b6000602082019050818103600083015261300281612d96565b9050919050565b6000602082019050818103600083015261302281612db9565b9050919050565b6000602082019050818103600083015261304281612ddc565b9050919050565b6000602082019050818103600083015261306281612dff565b9050919050565b6000602082019050818103600083015261308281612e22565b9050919050565b600060208201905061309e6000830184612e45565b92915050565b60006130ae6130bf565b90506130ba828261334f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130e4576130e36133de565b5b6130ed82613421565b9050602081019050919050565b600067ffffffffffffffff821115613115576131146133de565b5b61311e82613421565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061318e826132d1565b9150613199836132d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ce576131cd613380565b5b828201905092915050565b60006131e4826132d1565b91506131ef836132d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322857613227613380565b5b828202905092915050565b600061323e826132d1565b9150613249836132d1565b92508282101561325c5761325b613380565b5b828203905092915050565b6000613272826132b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133085780820151818401526020810190506132ed565b83811115613317576000848401525b50505050565b6000600282049050600182168061333557607f821691505b60208210811415613349576133486133af565b5b50919050565b61335882613421565b810181811067ffffffffffffffff82111715613377576133766133de565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b61367081613267565b811461367b57600080fd5b50565b61368781613279565b811461369257600080fd5b50565b61369e81613285565b81146136a957600080fd5b50565b6136b5816132d1565b81146136c057600080fd5b5056fea264697066735822122017f3a20a406d98c31098061ff6c13746fb774c8f28ed2dc332ba3f87d8d7d35d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d36332e6d7970696e6174612e636c6f75642f697066732f516d616b62533368794c4d31776e58424e595446584c703178776d58374159464d4b6262526138764866367153722f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d36332e6d7970696e6174612e636c6f75642f697066732f516d656d784a3661316b5279443545617948566d394a664e66775976574a6d59657076473832636147504a73416d2f0000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80637501f74111610123578063a475b5dd116100ab578063d5abeb011161006f578063d5abeb0114610766578063da3ef23f14610791578063e985e9c5146107ba578063f2c4ce1e146107f7578063f2fde38b1461082057610225565b8063a475b5dd146106a2578063add5a4fa146106b9578063b88d4fde146106e2578063c6682862146106fe578063c87b56dd1461072957610225565b806391b7f5ed116100f257806391b7f5ed146105de57806395d89b4114610607578063a035b1fe14610632578063a0712d681461065d578063a22cb4651461067957610225565b80637501f741146105485780637f00c7a6146105735780638456cb591461059c5780638da5cb5b146105b357610225565b80633f4ba83a116101b15780635c975abb116101755780635c975abb146104635780636352211e1461048e578063700d9df3146104cb57806370a08231146104f4578063715018a61461053157610225565b80633f4ba83a146103c55780634047638d146103dc57806342842e0e146103f3578063518302271461040f57806355f804b31461043a57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630f4161aa1461031657806318160ddd1461034157806323b872dd1461036c57806337321ec81461038857610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612ab4565b610849565b60405161025e9190612eec565b60405180910390f35b34801561027357600080fd5b5061027c6108db565b6040516102899190612f07565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612b57565b61096d565b6040516102c69190612e85565b60405180910390f35b3480156102db57600080fd5b506102e46109ec565b6040516102f19190612f07565b60405180910390f35b610314600480360381019061030f9190612a74565b610a7a565b005b34801561032257600080fd5b5061032b610bbe565b6040516103389190612eec565b60405180910390f35b34801561034d57600080fd5b50610356610bd1565b6040516103639190613089565b60405180910390f35b6103866004803603810190610381919061295e565b610be8565b005b34801561039457600080fd5b506103af60048036038101906103aa91906128f1565b610f0d565b6040516103bc9190613089565b60405180910390f35b3480156103d157600080fd5b506103da610f25565b005b3480156103e857600080fd5b506103f1610f37565b005b61040d6004803603810190610408919061295e565b610f6b565b005b34801561041b57600080fd5b50610424610f8b565b6040516104319190612eec565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190612b0e565b610f9e565b005b34801561046f57600080fd5b50610478610fc0565b6040516104859190612eec565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190612b57565b610fd7565b6040516104c29190612e85565b60405180910390f35b3480156104d757600080fd5b506104f260048036038101906104ed91906128f1565b610fe9565b005b34801561050057600080fd5b5061051b600480360381019061051691906128f1565b6110ff565b6040516105289190613089565b60405180910390f35b34801561053d57600080fd5b506105466111b8565b005b34801561055457600080fd5b5061055d6111cc565b60405161056a9190613089565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190612b57565b6111d2565b005b3480156105a857600080fd5b506105b16111e4565b005b3480156105bf57600080fd5b506105c86111f6565b6040516105d59190612e85565b60405180910390f35b3480156105ea57600080fd5b5061060560048036038101906106009190612b57565b611220565b005b34801561061357600080fd5b5061061c611232565b6040516106299190612f07565b60405180910390f35b34801561063e57600080fd5b506106476112c4565b6040516106549190613089565b60405180910390f35b61067760048036038101906106729190612b57565b6112ca565b005b34801561068557600080fd5b506106a0600480360381019061069b9190612a34565b6117a7565b005b3480156106ae57600080fd5b506106b76118b2565b005b3480156106c557600080fd5b506106e060048036038101906106db9190612a74565b6118e6565b005b6106fc60048036038101906106f791906129b1565b6119c0565b005b34801561070a57600080fd5b50610713611a33565b6040516107209190612f07565b60405180910390f35b34801561073557600080fd5b50610750600480360381019061074b9190612b57565b611ac1565b60405161075d9190612f07565b60405180910390f35b34801561077257600080fd5b5061077b611c1a565b6040516107889190613089565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b39190612b0e565b611c20565b005b3480156107c657600080fd5b506107e160048036038101906107dc919061291e565b611c42565b6040516107ee9190612eec565b60405180910390f35b34801561080357600080fd5b5061081e60048036038101906108199190612b0e565b611cd6565b005b34801561082c57600080fd5b50610847600480360381019061084291906128f1565b611cf8565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108a457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108d45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108ea9061331d565b80601f01602080910402602001604051908101604052809291908181526020018280546109169061331d565b80156109635780601f1061093857610100808354040283529160200191610963565b820191906000526020600020905b81548152906001019060200180831161094657829003601f168201915b5050505050905090565b600061097882611d7c565b6109ae576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601080546109f99061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a259061331d565b8015610a725780601f10610a4757610100808354040283529160200191610a72565b820191906000526020600020905b815481529060010190602001808311610a5557829003601f168201915b505050505081565b6000610a8582610fd7565b90508073ffffffffffffffffffffffffffffffffffffffff16610aa6611ddb565b73ffffffffffffffffffffffffffffffffffffffff1614610b0957610ad281610acd611ddb565b611c42565b610b08576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601160019054906101000a900460ff1681565b6000610bdb611de3565b6001546000540303905090565b6000610bf382611dec565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611eba565b91509150610c7c8187610c77611ddb565b611ee1565b610cc857610c9186610c8c611ddb565b611c42565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3c8686866001611f25565b8015610d4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1585610df1888887611f2b565b7c020000000000000000000000000000000000000000000000000000000017611f53565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610e9d576000600185019050600060046000838152602001908152602001600020541415610e9b576000548114610e9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f058686866001611f7e565b505050505050565b60136020528060005260406000206000915090505481565b610f2d611f84565b610f35612002565b565b610f3f611f84565b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b610f86838383604051806020016040528060008152506119c0565b505050565b601160009054906101000a900460ff1681565b610fa6611f84565b80600e9080519060200190610fbc929190612705565b5050565b6000600a60009054906101000a900460ff16905090565b6000610fe282611dec565b9050919050565b610ff1611f84565b60026009541415611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90613049565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146110ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a490612fc9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156110f3573d6000803e3d6000fd5b50600160098190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611167576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111c0611f84565b6111ca6000612065565b565b600c5481565b6111da611f84565b80600c8190555050565b6111ec611f84565b6111f461212b565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611228611f84565b80600d8190555050565b6060600380546112419061331d565b80601f016020809104026020016040519081016040528092919081815260200182805461126d9061331d565b80156112ba5780601f1061128f576101008083540402835291602001916112ba565b820191906000526020600020905b81548152906001019060200180831161129d57829003601f168201915b5050505050905090565b600d5481565b6112d261218e565b60026009541415611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90613049565b60405180910390fd5b60026009819055506000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414156115b657601160019054906101000a900460ff166113b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ae90613029565b60405180910390fd5b600b54816113c3610bd1565b6113cd9190613183565b111561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590612fe9565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c9190613183565b111561149d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149490613069565b60405180910390fd5b600d54600d54826114ae91906131d9565b6114b89190613233565b3410156114fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f190613009565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461154a9190613183565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a09190613183565b925050819055506115b133826121d8565b61179c565b601160019054906101000a900460ff16611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90613029565b60405180910390fd5b600b5481611611610bd1565b61161b9190613183565b111561165c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165390612fe9565b60405180910390fd5b600c5481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116aa9190613183565b11156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290613069565b60405180910390fd5b600d54816116f991906131d9565b34101561173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290613009565b60405180910390fd5b80601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461178a9190613183565b9250508190555061179b33826121d8565b5b600160098190555050565b80600760006117b4611ddb565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611861611ddb565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a69190612eec565b60405180910390a35050565b6118ba611f84565b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194b90612fc9565b60405180910390fd5b61195c611f84565b600260095414156119a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199990613049565b60405180910390fd5b60026009819055506119b482826121d8565b60016009819055505050565b6119cb848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a2d576119f6848484846121f6565b611a2c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f8054611a409061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a6c9061331d565b8015611ab95780601f10611a8e57610100808354040283529160200191611ab9565b820191906000526020600020905b815481529060010190602001808311611a9c57829003601f168201915b505050505081565b6060611acc82611d7c565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290612fa9565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611bb95760108054611b349061331d565b80601f0160208091040260200160405190810160405280929190818152602001828054611b609061331d565b8015611bad5780601f10611b8257610100808354040283529160200191611bad565b820191906000526020600020905b815481529060010190602001808311611b9057829003601f168201915b50505050509050611c15565b6000611bc3612356565b90506000815111611be35760405180602001604052806000815250611c11565b80611bed846123e8565b600f604051602001611c0193929190612e54565b6040516020818303038152906040525b9150505b919050565b600b5481565b611c28611f84565b80600f9080519060200190611c3e929190612705565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cde611f84565b8060109080519060200190611cf4929190612705565b5050565b611d00611f84565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790612f49565b60405180910390fd5b611d7981612065565b50565b600081611d87611de3565b11158015611d96575060005482105b8015611dd4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611dfb611de3565b11611e8357600054811015611e825760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e80575b6000811415611e76576004600083600190039350838152602001908152602001600020549050611e4b565b8092505050611eb5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f42868684612441565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f8c61244a565b73ffffffffffffffffffffffffffffffffffffffff16611faa6111f6565b73ffffffffffffffffffffffffffffffffffffffff1614612000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff790612f89565b60405180910390fd5b565b61200a612452565b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61204e61244a565b60405161205b9190612e85565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61213361218e565b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861217761244a565b6040516121849190612e85565b60405180910390a1565b612196610fc0565b156121d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cd90612f69565b60405180910390fd5b565b6121f282826040518060200160405280600081525061249b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261221c611ddb565b8786866040518563ffffffff1660e01b815260040161223e9493929190612ea0565b602060405180830381600087803b15801561225857600080fd5b505af192505050801561228957506040513d601f19601f820116820180604052508101906122869190612ae1565b60015b612303573d80600081146122b9576040519150601f19603f3d011682016040523d82523d6000602084013e6122be565b606091505b506000815114156122fb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e80546123659061331d565b80601f01602080910402602001604051908101604052809291908181526020018280546123919061331d565b80156123de5780601f106123b3576101008083540402835291602001916123de565b820191906000526020600020905b8154815290600101906020018083116123c157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561242c57600184039350600a81066030018453600a81049050806124275761242c565b612401565b50828103602084039350808452505050919050565b60009392505050565b600033905090565b61245a610fc0565b612499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249090612f29565b60405180910390fd5b565b6124a58383612538565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461253357600080549050600083820390505b6124e560008683806001019450866121f6565b61251b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124d257816000541461253057600080fd5b50505b505050565b6000805490506000821415612579576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125866000848385611f25565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125fd836125ee6000866000611f2b565b6125f7856126f5565b17611f53565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461269e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612663565b5060008214156126da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126f06000848385611f7e565b505050565b60006001821460e11b9050919050565b8280546127119061331d565b90600052602060002090601f016020900481019282612733576000855561277a565b82601f1061274c57805160ff191683800117855561277a565b8280016001018555821561277a579182015b8281111561277957825182559160200191906001019061275e565b5b509050612787919061278b565b5090565b5b808211156127a457600081600090555060010161278c565b5090565b60006127bb6127b6846130c9565b6130a4565b9050828152602081018484840111156127d7576127d6613412565b5b6127e28482856132db565b509392505050565b60006127fd6127f8846130fa565b6130a4565b90508281526020810184848401111561281957612818613412565b5b6128248482856132db565b509392505050565b60008135905061283b81613667565b92915050565b6000813590506128508161367e565b92915050565b60008135905061286581613695565b92915050565b60008151905061287a81613695565b92915050565b600082601f8301126128955761289461340d565b5b81356128a58482602086016127a8565b91505092915050565b600082601f8301126128c3576128c261340d565b5b81356128d38482602086016127ea565b91505092915050565b6000813590506128eb816136ac565b92915050565b6000602082840312156129075761290661341c565b5b60006129158482850161282c565b91505092915050565b600080604083850312156129355761293461341c565b5b60006129438582860161282c565b92505060206129548582860161282c565b9150509250929050565b6000806000606084860312156129775761297661341c565b5b60006129858682870161282c565b93505060206129968682870161282c565b92505060406129a7868287016128dc565b9150509250925092565b600080600080608085870312156129cb576129ca61341c565b5b60006129d98782880161282c565b94505060206129ea8782880161282c565b93505060406129fb878288016128dc565b925050606085013567ffffffffffffffff811115612a1c57612a1b613417565b5b612a2887828801612880565b91505092959194509250565b60008060408385031215612a4b57612a4a61341c565b5b6000612a598582860161282c565b9250506020612a6a85828601612841565b9150509250929050565b60008060408385031215612a8b57612a8a61341c565b5b6000612a998582860161282c565b9250506020612aaa858286016128dc565b9150509250929050565b600060208284031215612aca57612ac961341c565b5b6000612ad884828501612856565b91505092915050565b600060208284031215612af757612af661341c565b5b6000612b058482850161286b565b91505092915050565b600060208284031215612b2457612b2361341c565b5b600082013567ffffffffffffffff811115612b4257612b41613417565b5b612b4e848285016128ae565b91505092915050565b600060208284031215612b6d57612b6c61341c565b5b6000612b7b848285016128dc565b91505092915050565b612b8d81613267565b82525050565b612b9c81613279565b82525050565b6000612bad82613140565b612bb78185613156565b9350612bc78185602086016132ea565b612bd081613421565b840191505092915050565b6000612be68261314b565b612bf08185613167565b9350612c008185602086016132ea565b612c0981613421565b840191505092915050565b6000612c1f8261314b565b612c298185613178565b9350612c398185602086016132ea565b80840191505092915050565b60008154612c528161331d565b612c5c8186613178565b94506001821660008114612c775760018114612c8857612cbb565b60ff19831686528186019350612cbb565b612c918561312b565b60005b83811015612cb357815481890152600182019150602081019050612c94565b838801955050505b50505092915050565b6000612cd1601483613167565b9150612cdc82613432565b602082019050919050565b6000612cf4602683613167565b9150612cff8261345b565b604082019050919050565b6000612d17601083613167565b9150612d22826134aa565b602082019050919050565b6000612d3a602083613167565b9150612d45826134d3565b602082019050919050565b6000612d5d602f83613167565b9150612d68826134fc565b604082019050919050565b6000612d80603483613167565b9150612d8b8261354b565b604082019050919050565b6000612da3601983613167565b9150612dae8261359a565b602082019050919050565b6000612dc6601583613167565b9150612dd1826135c3565b602082019050919050565b6000612de9601f83613167565b9150612df4826135ec565b602082019050919050565b6000612e0c601f83613167565b9150612e1782613615565b602082019050919050565b6000612e2f601e83613167565b9150612e3a8261363e565b602082019050919050565b612e4e816132d1565b82525050565b6000612e608286612c14565b9150612e6c8285612c14565b9150612e788284612c45565b9150819050949350505050565b6000602082019050612e9a6000830184612b84565b92915050565b6000608082019050612eb56000830187612b84565b612ec26020830186612b84565b612ecf6040830185612e45565b8181036060830152612ee18184612ba2565b905095945050505050565b6000602082019050612f016000830184612b93565b92915050565b60006020820190508181036000830152612f218184612bdb565b905092915050565b60006020820190508181036000830152612f4281612cc4565b9050919050565b60006020820190508181036000830152612f6281612ce7565b9050919050565b60006020820190508181036000830152612f8281612d0a565b9050919050565b60006020820190508181036000830152612fa281612d2d565b9050919050565b60006020820190508181036000830152612fc281612d50565b9050919050565b60006020820190508181036000830152612fe281612d73565b9050919050565b6000602082019050818103600083015261300281612d96565b9050919050565b6000602082019050818103600083015261302281612db9565b9050919050565b6000602082019050818103600083015261304281612ddc565b9050919050565b6000602082019050818103600083015261306281612dff565b9050919050565b6000602082019050818103600083015261308281612e22565b9050919050565b600060208201905061309e6000830184612e45565b92915050565b60006130ae6130bf565b90506130ba828261334f565b919050565b6000604051905090565b600067ffffffffffffffff8211156130e4576130e36133de565b5b6130ed82613421565b9050602081019050919050565b600067ffffffffffffffff821115613115576131146133de565b5b61311e82613421565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061318e826132d1565b9150613199836132d1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131ce576131cd613380565b5b828201905092915050565b60006131e4826132d1565b91506131ef836132d1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561322857613227613380565b5b828202905092915050565b600061323e826132d1565b9150613249836132d1565b92508282101561325c5761325b613380565b5b828203905092915050565b6000613272826132b1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133085780820151818401526020810190506132ed565b83811115613317576000848401525b50505050565b6000600282049050600182168061333557607f821691505b60208210811415613349576133486133af565b5b50919050565b61335882613421565b810181811067ffffffffffffffff82111715613377576133766133de565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4572726f723a2046756e6374696f6e2063616e6e6f742062652063616c6c656460008201527f20627920616e6f7468657220636f6e7472616374000000000000000000000000602082015250565b7f4572726f723a206d617820737570706c79207265616368656400000000000000600082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f5075626c6963206d696e742069732063757272656e746c792070617573656400600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4572726f723a2043616e6e6f74206d696e74206d6f7265207468616e20380000600082015250565b61367081613267565b811461367b57600080fd5b50565b61368781613279565b811461369257600080fd5b50565b61369e81613285565b81146136a957600080fd5b50565b6136b5816132d1565b81146136c057600080fd5b5056fea264697066735822122017f3a20a406d98c31098061ff6c13746fb774c8f28ed2dc332ba3f87d8d7d35d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d36332e6d7970696e6174612e636c6f75642f697066732f516d616b62533368794c4d31776e58424e595446584c703178776d58374159464d4b6262526138764866367153722f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006668747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d36332e6d7970696e6174612e636c6f75642f697066732f516d656d784a3661316b5279443545617948566d394a664e66775976574a6d59657076473832636147504a73416d2f0000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://scarlet-changing-vicuna-63.mypinata.cloud/ipfs/QmakbS3hyLM1wnXBNYTFXLp1xwmX7AYFMKbbRa8vHf6qSr/
Arg [1] : _initNotRevealedUri (string): https://scarlet-changing-vicuna-63.mypinata.cloud/ipfs/QmemxJ6a1kRyD5EayHVm9JfNfwYvWJmYepvG82caGPJsAm/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [3] : 68747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d
Arg [4] : 36332e6d7970696e6174612e636c6f75642f697066732f516d616b6253336879
Arg [5] : 4c4d31776e58424e595446584c703178776d58374159464d4b62625261387648
Arg [6] : 66367153722f0000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000066
Arg [8] : 68747470733a2f2f736361726c65742d6368616e67696e672d766963756e612d
Arg [9] : 36332e6d7970696e6174612e636c6f75642f697066732f516d656d784a366131
Arg [10] : 6b5279443545617948566d394a664e66775976574a6d59657076473832636147
Arg [11] : 504a73416d2f0000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60525:5103:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27411:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28313:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34804:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60871:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34237:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61001:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24064:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38443:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61147:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64961:65;;;;;;;;;;;;;:::i;:::-;;64468:104;;;;;;;;;;;;;:::i;:::-;;41364:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60966:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65172:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8025:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29706:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65479:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25248:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5535:103;;;;;;;;;;;;;:::i;:::-;;60675:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64785:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64891:62;;;;;;;;;;;;;:::i;:::-;;4887:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64695:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28489:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60709:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62255:1275;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35362:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64615:74;;;;;;;;;;;;;:::i;:::-;;62031:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42155:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60827:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63919:503;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60637:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65034:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35753:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65284:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5793:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27411:639;27496:4;27835:10;27820:25;;:11;:25;;;;:102;;;;27912:10;27897:25;;:11;:25;;;;27820:102;:179;;;;27989:10;27974:25;;:11;:25;;;;27820:179;27800:199;;27411:639;;;:::o;28313:100::-;28367:13;28400:5;28393:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28313:100;:::o;34804:218::-;34880:7;34905:16;34913:7;34905;:16::i;:::-;34900:64;;34930:34;;;;;;;;;;;;;;34900:64;34984:15;:24;35000:7;34984:24;;;;;;;;;;;:30;;;;;;;;;;;;34977:37;;34804:218;;;:::o;60871:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34237:408::-;34326:13;34342:16;34350:7;34342;:16::i;:::-;34326:32;;34398:5;34375:28;;:19;:17;:19::i;:::-;:28;;;34371:175;;34423:44;34440:5;34447:19;:17;:19::i;:::-;34423:16;:44::i;:::-;34418:128;;34495:35;;;;;;;;;;;;;;34418:128;34371:175;34591:2;34558:15;:24;34574:7;34558:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34629:7;34625:2;34609:28;;34618:5;34609:28;;;;;;;;;;;;34315:330;34237:408;;:::o;61001:37::-;;;;;;;;;;;;;:::o;24064:323::-;24125:7;24353:15;:13;:15::i;:::-;24338:12;;24322:13;;:28;:46;24315:53;;24064:323;:::o;38443:2825::-;38585:27;38615;38634:7;38615:18;:27::i;:::-;38585:57;;38700:4;38659:45;;38675:19;38659:45;;;38655:86;;38713:28;;;;;;;;;;;;;;38655:86;38755:27;38784:23;38811:35;38838:7;38811:26;:35::i;:::-;38754:92;;;;38946:68;38971:15;38988:4;38994:19;:17;:19::i;:::-;38946:24;:68::i;:::-;38941:180;;39034:43;39051:4;39057:19;:17;:19::i;:::-;39034:16;:43::i;:::-;39029:92;;39086:35;;;;;;;;;;;;;;39029:92;38941:180;39152:1;39138:16;;:2;:16;;;39134:52;;;39163:23;;;;;;;;;;;;;;39134:52;39199:43;39221:4;39227:2;39231:7;39240:1;39199:21;:43::i;:::-;39335:15;39332:160;;;39475:1;39454:19;39447:30;39332:160;39872:18;:24;39891:4;39872:24;;;;;;;;;;;;;;;;39870:26;;;;;;;;;;;;39941:18;:22;39960:2;39941:22;;;;;;;;;;;;;;;;39939:24;;;;;;;;;;;40263:146;40300:2;40349:45;40364:4;40370:2;40374:19;40349:14;:45::i;:::-;20463:8;40321:73;40263:18;:146::i;:::-;40234:17;:26;40252:7;40234:26;;;;;;;;;;;:175;;;;40580:1;20463:8;40529:19;:47;:52;40525:627;;;40602:19;40634:1;40624:7;:11;40602:33;;40791:1;40757:17;:30;40775:11;40757:30;;;;;;;;;;;;:35;40753:384;;;40895:13;;40880:11;:28;40876:242;;41075:19;41042:17;:30;41060:11;41042:30;;;;;;;;;;;:52;;;;40876:242;40753:384;40583:569;40525:627;41199:7;41195:2;41180:27;;41189:4;41180:27;;;;;;;;;;;;41218:42;41239:4;41245:2;41249:7;41258:1;41218:20;:42::i;:::-;38574:2694;;;38443:2825;;;:::o;61147:49::-;;;;;;;;;;;;;;;;;:::o;64961:65::-;4773:13;:11;:13::i;:::-;65008:10:::1;:8;:10::i;:::-;64961:65::o:0;64468:104::-;4773:13;:11;:13::i;:::-;64547:17:::1;;;;;;;;;;;64546:18;64526:17;;:38;;;;;;;;;;;;;;;;;;64468:104::o:0;41364:193::-;41510:39;41527:4;41533:2;41537:7;41510:39;;;;;;;;;;;;:16;:39::i;:::-;41364:193;;;:::o;60966:28::-;;;;;;;;;;;;;:::o;65172:104::-;4773:13;:11;:13::i;:::-;65257:11:::1;65247:7;:21;;;;;;;;;;;;:::i;:::-;;65172:104:::0;:::o;8025:86::-;8072:4;8096:7;;;;;;;;;;;8089:14;;8025:86;:::o;29706:152::-;29778:7;29821:27;29840:7;29821:18;:27::i;:::-;29798:52;;29706:152;;;:::o;65479:142::-;4773:13;:11;:13::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;61937:10:::2;61924:23;;:9;:23;;;61916:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65577:3:::3;65569:21;;:44;65591:21;65569:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;1768:1:::1;2722:7;:22;;;;65479:142:::0;:::o;25248:233::-;25320:7;25361:1;25344:19;;:5;:19;;;25340:60;;;25372:28;;;;;;;;;;;;;;25340:60;19407:13;25418:18;:25;25437:5;25418:25;;;;;;;;;;;;;;;;:55;25411:62;;25248:233;;;:::o;5535:103::-;4773:13;:11;:13::i;:::-;5600:30:::1;5627:1;5600:18;:30::i;:::-;5535:103::o:0;60675:27::-;;;;:::o;64785:96::-;4773:13;:11;:13::i;:::-;64865:8:::1;64855:7;:18;;;;64785:96:::0;:::o;64891:62::-;4773:13;:11;:13::i;:::-;64937:8:::1;:6;:8::i;:::-;64891:62::o:0;4887:87::-;4933:7;4960:6;;;;;;;;;;;4953:13;;4887:87;:::o;64695:82::-;4773:13;:11;:13::i;:::-;64763:6:::1;64755:5;:14;;;;64695:82:::0;:::o;28489:104::-;28545:13;28578:7;28571:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28489:104;:::o;60709:34::-;;;;:::o;62255:1275::-;7630:19;:17;:19::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62429:1:::2;62399:14;:26;62414:10;62399:26;;;;;;;;;;;;;;;;:31;62395:1128;;;62455:17;;;;;;;;;;;62447:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;62560:9;;62547;62531:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;62523:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62667:7;;62653:9;62623:15;:27;62639:10;62623:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;62622:52;;62614:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;62768:5;;62759;;62747:9;:17;;;;:::i;:::-;62746:27;;;;:::i;:::-;62732:9;:42;;62724:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62847:1;62817:14;:26;62832:10;62817:26;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;62894:9;62863:15;:27;62879:10;62863:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;62918:32;62928:10;62940:9;62918;:32::i;:::-;62395:1128;;;63070:17;;;;;;;;;;;63062:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;63175:9;;63162;63146:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;63138:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;63282:7;;63268:9;63238:15;:27;63254:10;63238:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;63237:52;;63229:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;63373:5;;63361:9;:17;;;;:::i;:::-;63347:9;:32;;63339:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;63453:9;63422:15;:27;63438:10;63422:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;63477:32;63487:10;63499:9;63477;:32::i;:::-;62395:1128;1768:1:::1;2722:7;:22;;;;62255:1275:::0;:::o;35362:234::-;35509:8;35457:18;:39;35476:19;:17;:19::i;:::-;35457:39;;;;;;;;;;;;;;;:49;35497:8;35457:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;35569:8;35533:55;;35548:19;:17;:19::i;:::-;35533:55;;;35579:8;35533:55;;;;;;:::i;:::-;;;;;;;;35362:234;;:::o;64615:74::-;4773:13;:11;:13::i;:::-;64673:8:::1;;;;;;;;;;;64672:9;64661:8;;:20;;;;;;;;;;;;;;;;;;64615:74::o:0;62031:141::-;61937:10;61924:23;;:9;:23;;;61916:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;4773:13:::1;:11;:13::i;:::-;1812:1:::2;2410:7;;:19;;2402:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;62136:28:::3;62146:8;62156:7;62136:9;:28::i;:::-;1768:1:::2;2722:7;:22;;;;62031:141:::0;;:::o;42155:407::-;42330:31;42343:4;42349:2;42353:7;42330:12;:31::i;:::-;42394:1;42376:2;:14;;;:19;42372:183;;42415:56;42446:4;42452:2;42456:7;42465:5;42415:30;:56::i;:::-;42410:145;;42499:40;;;;;;;;;;;;;;42410:145;42372:183;42155:407;;;;:::o;60827:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63919:503::-;64017:13;64052:16;64060:7;64052;:16::i;:::-;64044:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;64147:5;64135:17;;:8;;;;;;;;;;;:17;;;64132:283;;;64172:14;64165:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64132:283;64211:28;64242:10;:8;:10::i;:::-;64211:41;;64301:1;64276:14;64270:28;:32;:133;;;;;;;;;;;;;;;;;64338:14;64354:18;64364:7;64354:9;:18::i;:::-;64374:13;64321:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64270:133;64263:140;;;63919:503;;;;:::o;60637:31::-;;;;:::o;65034:130::-;4773:13;:11;:13::i;:::-;65139:17:::1;65123:13;:33;;;;;;;;;;;;:::i;:::-;;65034:130:::0;:::o;35753:164::-;35850:4;35874:18;:25;35893:5;35874:25;;;;;;;;;;;;;;;:35;35900:8;35874:35;;;;;;;;;;;;;;;;;;;;;;;;;35867:42;;35753:164;;;;:::o;65284:126::-;4773:13;:11;:13::i;:::-;65387:15:::1;65370:14;:32;;;;;;;;;;;;:::i;:::-;;65284:126:::0;:::o;5793:201::-;4773:13;:11;:13::i;:::-;5902:1:::1;5882:22;;:8;:22;;;;5874:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5958:28;5977:8;5958:18;:28::i;:::-;5793:201:::0;:::o;36175:282::-;36240:4;36296:7;36277:15;:13;:15::i;:::-;:26;;:66;;;;;36330:13;;36320:7;:23;36277:66;:153;;;;;36429:1;20183:8;36381:17;:26;36399:7;36381:26;;;;;;;;;;;;:44;:49;36277:153;36257:173;;36175:282;;;:::o;58483:105::-;58543:7;58570:10;58563:17;;58483:105;:::o;63773:101::-;63838:7;63865:1;63858:8;;63773:101;:::o;30861:1275::-;30928:7;30948:12;30963:7;30948:22;;31031:4;31012:15;:13;:15::i;:::-;:23;31008:1061;;31065:13;;31058:4;:20;31054:1015;;;31103:14;31120:17;:23;31138:4;31120:23;;;;;;;;;;;;31103:40;;31237:1;20183:8;31209:6;:24;:29;31205:845;;;31874:113;31891:1;31881:6;:11;31874:113;;;31934:17;:25;31952:6;;;;;;;31934:25;;;;;;;;;;;;31925:34;;31874:113;;;32020:6;32013:13;;;;;;31205:845;31080:989;31054:1015;31008:1061;32097:31;;;;;;;;;;;;;;30861:1275;;;;:::o;37338:485::-;37440:27;37469:23;37510:38;37551:15;:24;37567:7;37551:24;;;;;;;;;;;37510:65;;37728:18;37705:41;;37785:19;37779:26;37760:45;;37690:126;37338:485;;;:::o;36566:659::-;36715:11;36880:16;36873:5;36869:28;36860:37;;37040:16;37029:9;37025:32;37012:45;;37190:15;37179:9;37176:30;37168:5;37157:9;37154:20;37151:56;37141:66;;36566:659;;;;;:::o;43224:159::-;;;;;:::o;57792:311::-;57927:7;57947:16;20587:3;57973:19;:41;;57947:68;;20587:3;58041:31;58052:4;58058:2;58062:9;58041:10;:31::i;:::-;58033:40;;:62;;58026:69;;;57792:311;;;;;:::o;32684:450::-;32764:14;32932:16;32925:5;32921:28;32912:37;;33109:5;33095:11;33070:23;33066:41;33063:52;33056:5;33053:63;33043:73;;32684:450;;;;:::o;44048:158::-;;;;;:::o;5052:132::-;5127:12;:10;:12::i;:::-;5116:23;;:7;:5;:7::i;:::-;:23;;;5108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5052:132::o;8880:120::-;7889:16;:14;:16::i;:::-;8949:5:::1;8939:7;;:15;;;;;;;;;;;;;;;;;;8970:22;8979:12;:10;:12::i;:::-;8970:22;;;;;;:::i;:::-;;;;;;;;8880:120::o:0;6154:191::-;6228:16;6247:6;;;;;;;;;;;6228:25;;6273:8;6264:6;;:17;;;;;;;;;;;;;;;;;;6328:8;6297:40;;6318:8;6297:40;;;;;;;;;;;;6217:128;6154:191;:::o;8621:118::-;7630:19;:17;:19::i;:::-;8691:4:::1;8681:7;;:14;;;;;;;;;;;;;;;;;;8711:20;8718:12;:10;:12::i;:::-;8711:20;;;;;;:::i;:::-;;;;;;;;8621:118::o:0;8184:108::-;8255:8;:6;:8::i;:::-;8254:9;8246:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;8184:108::o;52315:112::-;52392:27;52402:2;52406:8;52392:27;;;;;;;;;;;;:9;:27::i;:::-;52315:112;;:::o;44646:716::-;44809:4;44855:2;44830:45;;;44876:19;:17;:19::i;:::-;44897:4;44903:7;44912:5;44830:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44826:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45130:1;45113:6;:13;:18;45109:235;;;45159:40;;;;;;;;;;;;;;45109:235;45302:6;45296:13;45287:6;45283:2;45279:15;45272:38;44826:529;44999:54;;;44989:64;;;:6;:64;;;;44982:71;;;44646:716;;;;;;:::o;63589:108::-;63649:13;63682:7;63675:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63589:108;:::o;58690:1745::-;58755:17;59189:4;59182;59176:11;59172:22;59281:1;59275:4;59268:15;59356:4;59353:1;59349:12;59342:19;;59438:1;59433:3;59426:14;59542:3;59781:5;59763:428;59789:1;59763:428;;;59829:1;59824:3;59820:11;59813:18;;60000:2;59994:4;59990:13;59986:2;59982:22;59977:3;59969:36;60094:2;60088:4;60084:13;60076:21;;60161:4;60151:25;;60169:5;;60151:25;59763:428;;;59767:21;60230:3;60225;60221:13;60345:4;60340:3;60336:14;60329:21;;60410:6;60405:3;60398:19;58794:1634;;;58690:1745;;;:::o;57493:147::-;57630:6;57493:147;;;;;:::o;3438:98::-;3491:7;3518:10;3511:17;;3438:98;:::o;8369:108::-;8436:8;:6;:8::i;:::-;8428:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;8369:108::o;51542:689::-;51673:19;51679:2;51683:8;51673:5;:19::i;:::-;51752:1;51734:2;:14;;;:19;51730:483;;51774:11;51788:13;;51774:27;;51820:13;51842:8;51836:3;:14;51820:30;;51869:233;51900:62;51939:1;51943:2;51947:7;;;;;;51956:5;51900:30;:62::i;:::-;51895:167;;51998:40;;;;;;;;;;;;;;51895:167;52097:3;52089:5;:11;51869:233;;52184:3;52167:13;;:20;52163:34;;52189:8;;;52163:34;51755:458;;51730:483;51542:689;;;:::o;45824:2966::-;45897:20;45920:13;;45897:36;;45960:1;45948:8;:13;45944:44;;;45970:18;;;;;;;;;;;;;;45944:44;46001:61;46031:1;46035:2;46039:12;46053:8;46001:21;:61::i;:::-;46545:1;19545:2;46515:1;:26;;46514:32;46502:8;:45;46476:18;:22;46495:2;46476:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46824:139;46861:2;46915:33;46938:1;46942:2;46946:1;46915:14;:33::i;:::-;46882:30;46903:8;46882:20;:30::i;:::-;:66;46824:18;:139::i;:::-;46790:17;:31;46808:12;46790:31;;;;;;;;;;;:173;;;;46980:16;47011:11;47040:8;47025:12;:23;47011:37;;47561:16;47557:2;47553:25;47541:37;;47933:12;47893:8;47852:1;47790:25;47731:1;47670;47643:335;48304:1;48290:12;48286:20;48244:346;48345:3;48336:7;48333:16;48244:346;;48563:7;48553:8;48550:1;48523:25;48520:1;48517;48512:59;48398:1;48389:7;48385:15;48374:26;;48244:346;;;48248:77;48635:1;48623:8;:13;48619:45;;;48645:19;;;;;;;;;;;;;;48619:45;48697:3;48681:13;:19;;;;46250:2462;;48722:60;48751:1;48755:2;48759:12;48773:8;48722:20;:60::i;:::-;45886:2904;45824:2966;;:::o;33236:324::-;33306:14;33539:1;33529:8;33526:15;33500:24;33496:46;33486:56;;33236:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8540:845::-;8643:3;8680:5;8674:12;8709:36;8735:9;8709:36;:::i;:::-;8761:89;8843:6;8838:3;8761:89;:::i;:::-;8754:96;;8881:1;8870:9;8866:17;8897:1;8892:137;;;;9043:1;9038:341;;;;8859:520;;8892:137;8976:4;8972:9;8961;8957:25;8952:3;8945:38;9012:6;9007:3;9003:16;8996:23;;8892:137;;9038:341;9105:38;9137:5;9105:38;:::i;:::-;9165:1;9179:154;9193:6;9190:1;9187:13;9179:154;;;9267:7;9261:14;9257:1;9252:3;9248:11;9241:35;9317:1;9308:7;9304:15;9293:26;;9215:4;9212:1;9208:12;9203:17;;9179:154;;;9362:6;9357:3;9353:16;9346:23;;9045:334;;8859:520;;8647:738;;8540:845;;;;:::o;9391:366::-;9533:3;9554:67;9618:2;9613:3;9554:67;:::i;:::-;9547:74;;9630:93;9719:3;9630:93;:::i;:::-;9748:2;9743:3;9739:12;9732:19;;9391:366;;;:::o;9763:::-;9905:3;9926:67;9990:2;9985:3;9926:67;:::i;:::-;9919:74;;10002:93;10091:3;10002:93;:::i;:::-;10120:2;10115:3;10111:12;10104:19;;9763:366;;;:::o;10135:::-;10277:3;10298:67;10362:2;10357:3;10298:67;:::i;:::-;10291:74;;10374:93;10463:3;10374:93;:::i;:::-;10492:2;10487:3;10483:12;10476:19;;10135:366;;;:::o;10507:::-;10649:3;10670:67;10734:2;10729:3;10670:67;:::i;:::-;10663:74;;10746:93;10835:3;10746:93;:::i;:::-;10864:2;10859:3;10855:12;10848:19;;10507:366;;;:::o;10879:::-;11021:3;11042:67;11106:2;11101:3;11042:67;:::i;:::-;11035:74;;11118:93;11207:3;11118:93;:::i;:::-;11236:2;11231:3;11227:12;11220:19;;10879:366;;;:::o;11251:::-;11393:3;11414:67;11478:2;11473:3;11414:67;:::i;:::-;11407:74;;11490:93;11579:3;11490:93;:::i;:::-;11608:2;11603:3;11599:12;11592:19;;11251:366;;;:::o;11623:::-;11765:3;11786:67;11850:2;11845:3;11786:67;:::i;:::-;11779:74;;11862:93;11951:3;11862:93;:::i;:::-;11980:2;11975:3;11971:12;11964:19;;11623:366;;;:::o;11995:::-;12137:3;12158:67;12222:2;12217:3;12158:67;:::i;:::-;12151:74;;12234:93;12323:3;12234:93;:::i;:::-;12352:2;12347:3;12343:12;12336:19;;11995:366;;;:::o;12367:::-;12509:3;12530:67;12594:2;12589:3;12530:67;:::i;:::-;12523:74;;12606:93;12695:3;12606:93;:::i;:::-;12724:2;12719:3;12715:12;12708:19;;12367:366;;;:::o;12739:::-;12881:3;12902:67;12966:2;12961:3;12902:67;:::i;:::-;12895:74;;12978:93;13067:3;12978:93;:::i;:::-;13096:2;13091:3;13087:12;13080:19;;12739:366;;;:::o;13111:::-;13253:3;13274:67;13338:2;13333:3;13274:67;:::i;:::-;13267:74;;13350:93;13439:3;13350:93;:::i;:::-;13468:2;13463:3;13459:12;13452:19;;13111:366;;;:::o;13483:118::-;13570:24;13588:5;13570:24;:::i;:::-;13565:3;13558:37;13483:118;;:::o;13607:589::-;13832:3;13854:95;13945:3;13936:6;13854:95;:::i;:::-;13847:102;;13966:95;14057:3;14048:6;13966:95;:::i;:::-;13959:102;;14078:92;14166:3;14157:6;14078:92;:::i;:::-;14071:99;;14187:3;14180:10;;13607:589;;;;;;:::o;14202:222::-;14295:4;14333:2;14322:9;14318:18;14310:26;;14346:71;14414:1;14403:9;14399:17;14390:6;14346:71;:::i;:::-;14202:222;;;;:::o;14430:640::-;14625:4;14663:3;14652:9;14648:19;14640:27;;14677:71;14745:1;14734:9;14730:17;14721:6;14677:71;:::i;:::-;14758:72;14826:2;14815:9;14811:18;14802:6;14758:72;:::i;:::-;14840;14908:2;14897:9;14893:18;14884:6;14840:72;:::i;:::-;14959:9;14953:4;14949:20;14944:2;14933:9;14929:18;14922:48;14987:76;15058:4;15049:6;14987:76;:::i;:::-;14979:84;;14430:640;;;;;;;:::o;15076:210::-;15163:4;15201:2;15190:9;15186:18;15178:26;;15214:65;15276:1;15265:9;15261:17;15252:6;15214:65;:::i;:::-;15076:210;;;;:::o;15292:313::-;15405:4;15443:2;15432:9;15428:18;15420:26;;15492:9;15486:4;15482:20;15478:1;15467:9;15463:17;15456:47;15520:78;15593:4;15584:6;15520:78;:::i;:::-;15512:86;;15292:313;;;;:::o;15611:419::-;15777:4;15815:2;15804:9;15800:18;15792:26;;15864:9;15858:4;15854:20;15850:1;15839:9;15835:17;15828:47;15892:131;16018:4;15892:131;:::i;:::-;15884:139;;15611:419;;;:::o;16036:::-;16202:4;16240:2;16229:9;16225:18;16217:26;;16289:9;16283:4;16279:20;16275:1;16264:9;16260:17;16253:47;16317:131;16443:4;16317:131;:::i;:::-;16309:139;;16036:419;;;:::o;16461:::-;16627:4;16665:2;16654:9;16650:18;16642:26;;16714:9;16708:4;16704:20;16700:1;16689:9;16685:17;16678:47;16742:131;16868:4;16742:131;:::i;:::-;16734:139;;16461:419;;;:::o;16886:::-;17052:4;17090:2;17079:9;17075:18;17067:26;;17139:9;17133:4;17129:20;17125:1;17114:9;17110:17;17103:47;17167:131;17293:4;17167:131;:::i;:::-;17159:139;;16886:419;;;:::o;17311:::-;17477:4;17515:2;17504:9;17500:18;17492:26;;17564:9;17558:4;17554:20;17550:1;17539:9;17535:17;17528:47;17592:131;17718:4;17592:131;:::i;:::-;17584:139;;17311:419;;;:::o;17736:::-;17902:4;17940:2;17929:9;17925:18;17917:26;;17989:9;17983:4;17979:20;17975:1;17964:9;17960:17;17953:47;18017:131;18143:4;18017:131;:::i;:::-;18009:139;;17736:419;;;:::o;18161:::-;18327:4;18365:2;18354:9;18350:18;18342:26;;18414:9;18408:4;18404:20;18400:1;18389:9;18385:17;18378:47;18442:131;18568:4;18442:131;:::i;:::-;18434:139;;18161:419;;;:::o;18586:::-;18752:4;18790:2;18779:9;18775:18;18767:26;;18839:9;18833:4;18829:20;18825:1;18814:9;18810:17;18803:47;18867:131;18993:4;18867:131;:::i;:::-;18859:139;;18586:419;;;:::o;19011:::-;19177:4;19215:2;19204:9;19200:18;19192:26;;19264:9;19258:4;19254:20;19250:1;19239:9;19235:17;19228:47;19292:131;19418:4;19292:131;:::i;:::-;19284:139;;19011:419;;;:::o;19436:::-;19602:4;19640:2;19629:9;19625:18;19617:26;;19689:9;19683:4;19679:20;19675:1;19664:9;19660:17;19653:47;19717:131;19843:4;19717:131;:::i;:::-;19709:139;;19436:419;;;:::o;19861:::-;20027:4;20065:2;20054:9;20050:18;20042:26;;20114:9;20108:4;20104:20;20100:1;20089:9;20085:17;20078:47;20142:131;20268:4;20142:131;:::i;:::-;20134:139;;19861:419;;;:::o;20286:222::-;20379:4;20417:2;20406:9;20402:18;20394:26;;20430:71;20498:1;20487:9;20483:17;20474:6;20430:71;:::i;:::-;20286:222;;;;:::o;20514:129::-;20548:6;20575:20;;:::i;:::-;20565:30;;20604:33;20632:4;20624:6;20604:33;:::i;:::-;20514:129;;;:::o;20649:75::-;20682:6;20715:2;20709:9;20699:19;;20649:75;:::o;20730:307::-;20791:4;20881:18;20873:6;20870:30;20867:56;;;20903:18;;:::i;:::-;20867:56;20941:29;20963:6;20941:29;:::i;:::-;20933:37;;21025:4;21019;21015:15;21007:23;;20730:307;;;:::o;21043:308::-;21105:4;21195:18;21187:6;21184:30;21181:56;;;21217:18;;:::i;:::-;21181:56;21255:29;21277:6;21255:29;:::i;:::-;21247:37;;21339:4;21333;21329:15;21321:23;;21043:308;;;:::o;21357:141::-;21406:4;21429:3;21421:11;;21452:3;21449:1;21442:14;21486:4;21483:1;21473:18;21465:26;;21357:141;;;:::o;21504:98::-;21555:6;21589:5;21583:12;21573:22;;21504:98;;;:::o;21608:99::-;21660:6;21694:5;21688:12;21678:22;;21608:99;;;:::o;21713:168::-;21796:11;21830:6;21825:3;21818:19;21870:4;21865:3;21861:14;21846:29;;21713:168;;;;:::o;21887:169::-;21971:11;22005:6;22000:3;21993:19;22045:4;22040:3;22036:14;22021:29;;21887:169;;;;:::o;22062:148::-;22164:11;22201:3;22186:18;;22062:148;;;;:::o;22216:305::-;22256:3;22275:20;22293:1;22275:20;:::i;:::-;22270:25;;22309:20;22327:1;22309:20;:::i;:::-;22304:25;;22463:1;22395:66;22391:74;22388:1;22385:81;22382:107;;;22469:18;;:::i;:::-;22382:107;22513:1;22510;22506:9;22499:16;;22216:305;;;;:::o;22527:348::-;22567:7;22590:20;22608:1;22590:20;:::i;:::-;22585:25;;22624:20;22642:1;22624:20;:::i;:::-;22619:25;;22812:1;22744:66;22740:74;22737:1;22734:81;22729:1;22722:9;22715:17;22711:105;22708:131;;;22819:18;;:::i;:::-;22708:131;22867:1;22864;22860:9;22849:20;;22527:348;;;;:::o;22881:191::-;22921:4;22941:20;22959:1;22941:20;:::i;:::-;22936:25;;22975:20;22993:1;22975:20;:::i;:::-;22970:25;;23014:1;23011;23008:8;23005:34;;;23019:18;;:::i;:::-;23005:34;23064:1;23061;23057:9;23049:17;;22881:191;;;;:::o;23078:96::-;23115:7;23144:24;23162:5;23144:24;:::i;:::-;23133:35;;23078:96;;;:::o;23180:90::-;23214:7;23257:5;23250:13;23243:21;23232:32;;23180:90;;;:::o;23276:149::-;23312:7;23352:66;23345:5;23341:78;23330:89;;23276:149;;;:::o;23431:126::-;23468:7;23508:42;23501:5;23497:54;23486:65;;23431:126;;;:::o;23563:77::-;23600:7;23629:5;23618:16;;23563:77;;;:::o;23646:154::-;23730:6;23725:3;23720;23707:30;23792:1;23783:6;23778:3;23774:16;23767:27;23646:154;;;:::o;23806:307::-;23874:1;23884:113;23898:6;23895:1;23892:13;23884:113;;;23983:1;23978:3;23974:11;23968:18;23964:1;23959:3;23955:11;23948:39;23920:2;23917:1;23913:10;23908:15;;23884:113;;;24015:6;24012:1;24009:13;24006:101;;;24095:1;24086:6;24081:3;24077:16;24070:27;24006:101;23855:258;23806:307;;;:::o;24119:320::-;24163:6;24200:1;24194:4;24190:12;24180:22;;24247:1;24241:4;24237:12;24268:18;24258:81;;24324:4;24316:6;24312:17;24302:27;;24258:81;24386:2;24378:6;24375:14;24355:18;24352:38;24349:84;;;24405:18;;:::i;:::-;24349:84;24170:269;24119:320;;;:::o;24445:281::-;24528:27;24550:4;24528:27;:::i;:::-;24520:6;24516:40;24658:6;24646:10;24643:22;24622:18;24610:10;24607:34;24604:62;24601:88;;;24669:18;;:::i;:::-;24601:88;24709:10;24705:2;24698:22;24488:238;24445:281;;:::o;24732:180::-;24780:77;24777:1;24770:88;24877:4;24874:1;24867:15;24901:4;24898:1;24891:15;24918:180;24966:77;24963:1;24956:88;25063:4;25060:1;25053:15;25087:4;25084:1;25077:15;25104:180;25152:77;25149:1;25142:88;25249:4;25246:1;25239:15;25273:4;25270:1;25263:15;25290:117;25399:1;25396;25389:12;25413:117;25522:1;25519;25512:12;25536:117;25645:1;25642;25635:12;25659:117;25768:1;25765;25758:12;25782:102;25823:6;25874:2;25870:7;25865:2;25858:5;25854:14;25850:28;25840:38;;25782:102;;;:::o;25890:170::-;26030:22;26026:1;26018:6;26014:14;26007:46;25890:170;:::o;26066:225::-;26206:34;26202:1;26194:6;26190:14;26183:58;26275:8;26270:2;26262:6;26258:15;26251:33;26066:225;:::o;26297:166::-;26437:18;26433:1;26425:6;26421:14;26414:42;26297:166;:::o;26469:182::-;26609:34;26605:1;26597:6;26593:14;26586:58;26469:182;:::o;26657:234::-;26797:34;26793:1;26785:6;26781:14;26774:58;26866:17;26861:2;26853:6;26849:15;26842:42;26657:234;:::o;26897:239::-;27037:34;27033:1;27025:6;27021:14;27014:58;27106:22;27101:2;27093:6;27089:15;27082:47;26897:239;:::o;27142:175::-;27282:27;27278:1;27270:6;27266:14;27259:51;27142:175;:::o;27323:171::-;27463:23;27459:1;27451:6;27447:14;27440:47;27323:171;:::o;27500:181::-;27640:33;27636:1;27628:6;27624:14;27617:57;27500:181;:::o;27687:::-;27827:33;27823:1;27815:6;27811:14;27804:57;27687:181;:::o;27874:180::-;28014:32;28010:1;28002:6;27998:14;27991:56;27874:180;:::o;28060:122::-;28133:24;28151:5;28133:24;:::i;:::-;28126:5;28123:35;28113:63;;28172:1;28169;28162:12;28113:63;28060:122;:::o;28188:116::-;28258:21;28273:5;28258:21;:::i;:::-;28251:5;28248:32;28238:60;;28294:1;28291;28284:12;28238:60;28188:116;:::o;28310:120::-;28382:23;28399:5;28382:23;:::i;:::-;28375:5;28372:34;28362:62;;28420:1;28417;28410:12;28362:62;28310:120;:::o;28436:122::-;28509:24;28527:5;28509:24;:::i;:::-;28502:5;28499:35;28489:63;;28548:1;28545;28538:12;28489:63;28436:122;:::o

Swarm Source

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