ETH Price: $3,045.25 (+0.71%)
Gas: 3 Gwei

Token

Destron Genesis (DSTRNGNS)
 

Overview

Max Total Supply

333 DSTRNGNS

Holders

178

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
glitchboy.eth
Balance
0 DSTRNGNS
0x330ef07d4d744d5a015589ed4cbf8b0795d3e2c8
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:
DestronGenesis

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: contracts/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    function _checkFilterOperator(address operator) internal view virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

// File: contracts/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.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/DestronGenesis.sol


pragma solidity ^0.8.4;




contract DestronGenesis is ERC721A, Ownable, DefaultOperatorFilterer {
    uint256 public maxSupply = 333;
    uint256 public teamSupply = 33;
    uint256 public price = 0.0025 ether;
    uint256 public maxPerTx = 5;
    uint256 public maxPerWallet = 5;
    uint256 public maxFreeSupply = 100;
    uint256 public maxFreePerWallet = 1;
    uint256 public freeMints = 0;
    bool public saleStarted = false;
    string public uriSuffix = ".json";
    string public baseURI = "ipfs://bafybeifuzbn3dslq4ywdbhqwmxt727dv33lzjum6n5rj3bkbhzu6j2ahoi/";

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {}

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function updatePrice(uint256 __price) public onlyOwner {
        price = __price;
    }

    function publicSale(uint256 amount) external payable {
        require(saleStarted, "Sale is not active.");
        require(amount <= maxPerTx, "Should not exceed max mint number!");
        require(totalSupply() + amount <= maxSupply, "Should not exceed max supply.");
        require(numberMinted(msg.sender) + amount <= maxPerWallet, "Should not exceed max per wallet.");

        uint256 freeMintCount = 0;
        bool isFreeMint = false;
        if (freeMints < maxFreeSupply) {
            freeMintCount = maxFreePerWallet;
        }

        uint256 count = amount;
        if (numberMinted(msg.sender) < freeMintCount) {
            if (numberMinted(msg.sender) + amount <= freeMintCount) {
                count = 0;
            }                
            else {
                count = numberMinted(msg.sender) + amount - freeMintCount;
            }
            isFreeMint = true;
        }

        require(msg.value >= count * price, "Ether value is not enough");
        
        if(isFreeMint) freeMints += 1;

        _safeMint(msg.sender, amount);
    }

    function mintForTeam(uint256 amount) external onlyOwner {
        require(teamSupply > 0,"Should not exceed mint limit");
        require(amount <= teamSupply,"Should not exceed mint limit");
        require(totalSupply() + amount <= maxSupply, "Should not exceed max supply.");
        teamSupply -= amount;
        _safeMint(msg.sender, amount);
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), uriSuffix)) : '';
    }

    function toggleSale() external onlyOwner {
        saleStarted = !saleStarted;
    }

    function setFreeMintStart() external onlyOwner {
        freeMints = 0;
    }

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

    function setMaxSupply(uint256 amount) external onlyOwner {
        maxSupply = amount;
    }

    function setTeamSupply(uint256 amount) external onlyOwner {
        teamSupply = amount;
    }

    function setMaxFreeSupply(uint256 amount) external onlyOwner {
        maxFreeSupply = amount;
    }

    function setMaxFreePerWallet(uint256 amount) external onlyOwner {
        maxFreePerWallet = amount;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed to send Ether");
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","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":"amount","type":"uint256"}],"name":"mintForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setFreeMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setTeamSupply","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":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","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":[],"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":[{"internalType":"uint256","name":"__price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61014d6009556021600a556608e1bc9bf04000600b556005600c819055600d8190556064600e556001600f5560006010556011805460ff1916905560c0604052608090815264173539b7b760d91b60a0526012906200005f908262000348565b50604051806080016040528060438152602001620022bd6043913960139062000089908262000348565b503480156200009757600080fd5b506040516200230038038062002300833981016040819052620000ba91620004c3565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600183836002620000e1838262000348565b506003620000f0828262000348565b50506000805550620001023362000251565b6daaeb6d7670e522a718067333cd4e3b15620002475780156200019557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200017657600080fd5b505af11580156200018b573d6000803e3d6000fd5b5050505062000247565b6001600160a01b03821615620001e65760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200015b565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200022d57600080fd5b505af115801562000242573d6000803e3d6000fd5b505050505b505050506200052d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002ce57607f821691505b602082108103620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200034357600081815260208120601f850160051c810160208610156200031e5750805b601f850160051c820191505b818110156200033f578281556001016200032a565b5050505b505050565b81516001600160401b03811115620003645762000364620002a3565b6200037c81620003758454620002b9565b84620002f5565b602080601f831160018114620003b457600084156200039b5750858301515b600019600386901b1c1916600185901b1785556200033f565b600085815260208120601f198616915b82811015620003e557888601518255948401946001909101908401620003c4565b5085821015620004045787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f8301126200042657600080fd5b81516001600160401b0380821115620004435762000443620002a3565b604051601f8301601f19908116603f011681019082821181831017156200046e576200046e620002a3565b816040528381526020925086838588010111156200048b57600080fd5b600091505b83821015620004af578582018301518183018401529082019062000490565b600093810190920192909252949350505050565b60008060408385031215620004d757600080fd5b82516001600160401b0380821115620004ef57600080fd5b620004fd8683870162000414565b935060208501519150808211156200051457600080fd5b50620005238582860162000414565b9150509250929050565b611d80806200053d6000396000f3fe6080604052600436106102465760003560e01c80636f8b44b011610139578063a7027357116100b6578063dc2b280e1161007a578063dc2b280e14610610578063dc33e68114610625578063e985e9c514610645578063f2fde38b14610665578063f8f103dd14610685578063f968adbe146106a557600080fd5b8063a70273571461059e578063b287c8ed146105b4578063b88d4fde146105c7578063c87b56dd146105da578063d5abeb01146105fa57600080fd5b80638d6cc56d116100fd5780638d6cc56d146105155780638da5cb5b1461053557806395d89b4114610553578063a035b1fe14610568578063a22cb4651461057e57600080fd5b80636f8b44b01461049557806370a08231146104b5578063715018a6146104d55780637d8966e4146104ea57806380b17335146104ff57600080fd5b8063453c2310116101c75780635b28fd911161018b5780635b28fd91146104065780635c474f9e146104265780636352211e146104405780636c0360eb146104605780636d7c4a4b1461047557600080fd5b8063453c231014610385578063475133341461039b5780635503a0e8146103b157806355f804b3146103c65780635a4d448a146103e657600080fd5b806323b872dd1161020e57806323b872dd146103125780632cfac6ec146103255780633ccfd60b1461033b57806341f434341461035057806342842e0e1461037257600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102ef575b600080fd5b34801561025757600080fd5b5061026b610266366004611788565b6106bb565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561070d565b60405161027791906117f5565b3480156102ae57600080fd5b506102c26102bd366004611808565b61079f565b6040516001600160a01b039091168152602001610277565b6102ed6102e836600461183d565b6107e3565b005b3480156102fb57600080fd5b50600154600054035b604051908152602001610277565b6102ed610320366004611867565b6107fc565b34801561033157600080fd5b50610304600a5481565b34801561034757600080fd5b506102ed610827565b34801561035c57600080fd5b506102c26daaeb6d7670e522a718067333cd4e81565b6102ed610380366004611867565b6108c6565b34801561039157600080fd5b50610304600d5481565b3480156103a757600080fd5b50610304600e5481565b3480156103bd57600080fd5b506102956108eb565b3480156103d257600080fd5b506102ed6103e13660046118a3565b610979565b3480156103f257600080fd5b506102ed610401366004611808565b61098e565b34801561041257600080fd5b506102ed610421366004611808565b610ac5565b34801561043257600080fd5b5060115461026b9060ff1681565b34801561044c57600080fd5b506102c261045b366004611808565b610ad2565b34801561046c57600080fd5b50610295610add565b34801561048157600080fd5b506102ed610490366004611808565b610aea565b3480156104a157600080fd5b506102ed6104b0366004611808565b610af7565b3480156104c157600080fd5b506103046104d0366004611915565b610b04565b3480156104e157600080fd5b506102ed610b53565b3480156104f657600080fd5b506102ed610b67565b34801561050b57600080fd5b5061030460105481565b34801561052157600080fd5b506102ed610530366004611808565b610b83565b34801561054157600080fd5b506008546001600160a01b03166102c2565b34801561055f57600080fd5b50610295610b90565b34801561057457600080fd5b50610304600b5481565b34801561058a57600080fd5b506102ed61059936600461193e565b610b9f565b3480156105aa57600080fd5b50610304600f5481565b6102ed6105c2366004611808565b610bb3565b6102ed6105d536600461198b565b610e24565b3480156105e657600080fd5b506102956105f5366004611808565b610e51565b34801561060657600080fd5b5061030460095481565b34801561061c57600080fd5b506102ed610ed8565b34801561063157600080fd5b50610304610640366004611915565b610ee7565b34801561065157600080fd5b5061026b610660366004611a67565b610f12565b34801561067157600080fd5b506102ed610680366004611915565b610f40565b34801561069157600080fd5b506102ed6106a0366004611808565b610fb6565b3480156106b157600080fd5b50610304600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806106ec57506380ac58cd60e01b6001600160e01b03198316145b806107075750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461071c90611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611a9a565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b60006107aa82610fc3565b6107c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107ed81610fea565b6107f783836110a3565b505050565b826001600160a01b03811633146108165761081633610fea565b610821848484611143565b50505050565b61082f6112dc565b604051600090339047908381818185875af1925050503d8060008114610871576040519150601f19603f3d011682016040523d82523d6000602084013e610876565b606091505b50509050806108c35760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b826001600160a01b03811633146108e0576108e033610fea565b610821848484611336565b601280546108f890611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461092490611a9a565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b505050505081565b6109816112dc565b60136107f7828483611b1a565b6109966112dc565b6000600a54116109e85760405162461bcd60e51b815260206004820152601c60248201527f53686f756c64206e6f7420657863656564206d696e74206c696d69740000000060448201526064016108ba565b600a54811115610a3a5760405162461bcd60e51b815260206004820152601c60248201527f53686f756c64206e6f7420657863656564206d696e74206c696d69740000000060448201526064016108ba565b60095481610a4b6001546000540390565b610a559190611bf0565b1115610aa35760405162461bcd60e51b815260206004820152601d60248201527f53686f756c64206e6f7420657863656564206d617820737570706c792e00000060448201526064016108ba565b80600a6000828254610ab59190611c03565b909155506108c390503382611351565b610acd6112dc565b600e55565b60006107078261136f565b601380546108f890611a9a565b610af26112dc565b600f55565b610aff6112dc565b600955565b60006001600160a01b038216610b2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b5b6112dc565b610b6560006113dd565b565b610b6f6112dc565b6011805460ff19811660ff90911615179055565b610b8b6112dc565b600b55565b60606003805461071c90611a9a565b81610ba981610fea565b6107f7838361142f565b60115460ff16610bfb5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016108ba565b600c54811115610c585760405162461bcd60e51b815260206004820152602260248201527f53686f756c64206e6f7420657863656564206d6178206d696e74206e756d6265604482015261722160f01b60648201526084016108ba565b60095481610c696001546000540390565b610c739190611bf0565b1115610cc15760405162461bcd60e51b815260206004820152601d60248201527f53686f756c64206e6f7420657863656564206d617820737570706c792e00000060448201526064016108ba565b600d5481610cce33610ee7565b610cd89190611bf0565b1115610d305760405162461bcd60e51b815260206004820152602160248201527f53686f756c64206e6f7420657863656564206d6178207065722077616c6c65746044820152601760f91b60648201526084016108ba565b600080600e546010541015610d4557600f5491505b8282610d5033610ee7565b1015610d9f578284610d6133610ee7565b610d6b9190611bf0565b11610d7857506000610d9a565b8284610d8333610ee7565b610d8d9190611bf0565b610d979190611c03565b90505b600191505b600b54610dac9082611c16565b341015610dfb5760405162461bcd60e51b815260206004820152601960248201527f45746865722076616c7565206973206e6f7420656e6f7567680000000000000060448201526064016108ba565b8115610e1a57600160106000828254610e149190611bf0565b90915550505b6108213385611351565b836001600160a01b0381163314610e3e57610e3e33610fea565b610e4a8585858561149b565b5050505050565b6060610e5c82610fc3565b610e7957604051630a14c4b560e41b815260040160405180910390fd5b60138054610e8690611a9a565b9050600003610ea45760405180602001604052806000815250610707565b6013610eaf836114df565b6012604051602001610ec393929190611ca0565b60405160208183030381529060405292915050565b610ee06112dc565b6000601055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610707565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f486112dc565b6001600160a01b038116610fad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ba565b6108c3816113dd565b610fbe6112dc565b600a55565b6000805482108015610707575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108c357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611057573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107b9190611cd3565b6108c357604051633b79c77360e21b81526001600160a01b03821660048201526024016108ba565b60006110ae82610ad2565b9050336001600160a01b038216146110e7576110ca8133610f12565b6110e7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061114e8261136f565b9050836001600160a01b0316816001600160a01b0316146111815760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176111ce576111b18633610f12565b6111ce57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166111f557604051633a954ecd60e21b815260040160405180910390fd5b801561120057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611292576001840160008181526004602052604081205490036112905760005481146112905760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610b655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ba565b6107f783838360405180602001604052806000815250610e24565b61136b828260405180602001604052806000815250611523565b5050565b6000816000548110156113c45760008181526004602052604081205490600160e01b821690036113c2575b806000036113bb57506000190160008181526004602052604090205461139a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114a68484846107fc565b6001600160a01b0383163b15610821576114c284848484611589565b610821576040516368d2bf6b60e11b815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114f95750819003601f19909101908152919050565b61152d8383611674565b6001600160a01b0383163b156107f7576000548281035b6115576000868380600101945086611589565b611574576040516368d2bf6b60e11b815260040160405180910390fd5b818110611544578160005414610e4a57600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115be903390899088908890600401611cf0565b6020604051808303816000875af19250505080156115f9575060408051601f3d908101601f191682019092526115f691810190611d2d565b60015b611657573d808015611627576040519150601f19603f3d011682016040523d82523d6000602084013e61162c565b606091505b50805160000361164f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008054908290036116995760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611710565b508160000361176957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108c357600080fd5b60006020828403121561179a57600080fd5b81356113bb81611772565b60005b838110156117c05781810151838201526020016117a8565b50506000910152565b600081518084526117e18160208601602086016117a5565b601f01601f19169290920160200192915050565b6020815260006113bb60208301846117c9565b60006020828403121561181a57600080fd5b5035919050565b80356001600160a01b038116811461183857600080fd5b919050565b6000806040838503121561185057600080fd5b61185983611821565b946020939093013593505050565b60008060006060848603121561187c57600080fd5b61188584611821565b925061189360208501611821565b9150604084013590509250925092565b600080602083850312156118b657600080fd5b823567ffffffffffffffff808211156118ce57600080fd5b818501915085601f8301126118e257600080fd5b8135818111156118f157600080fd5b86602082850101111561190357600080fd5b60209290920196919550909350505050565b60006020828403121561192757600080fd5b6113bb82611821565b80151581146108c357600080fd5b6000806040838503121561195157600080fd5b61195a83611821565b9150602083013561196a81611930565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119a157600080fd5b6119aa85611821565b93506119b860208601611821565b925060408501359150606085013567ffffffffffffffff808211156119dc57600080fd5b818701915087601f8301126119f057600080fd5b813581811115611a0257611a02611975565b604051601f8201601f19908116603f01168101908382118183101715611a2a57611a2a611975565b816040528281528a6020848701011115611a4357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a7a57600080fd5b611a8383611821565b9150611a9160208401611821565b90509250929050565b600181811c90821680611aae57607f821691505b602082108103611ace57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107f757600081815260208120601f850160051c81016020861015611afb5750805b601f850160051c820191505b818110156112d457828155600101611b07565b67ffffffffffffffff831115611b3257611b32611975565b611b4683611b408354611a9a565b83611ad4565b6000601f841160018114611b7a5760008515611b625750838201355b600019600387901b1c1916600186901b178355610e4a565b600083815260209020601f19861690835b82811015611bab5786850135825560209485019460019092019101611b8b565b5086821015611bc85760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070757610707611bda565b8181038181111561070757610707611bda565b808202811582820484141761070757610707611bda565b60008154611c3a81611a9a565b60018281168015611c525760018114611c6757611c96565b60ff1984168752821515830287019450611c96565b8560005260208060002060005b85811015611c8d5781548a820152908401908201611c74565b50505082870194505b5050505092915050565b6000611cac8286611c2d565b8451611cbc8183602089016117a5565b611cc881830186611c2d565b979650505050505050565b600060208284031215611ce557600080fd5b81516113bb81611930565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d23908301846117c9565b9695505050505050565b600060208284031215611d3f57600080fd5b81516113bb8161177256fea264697066735822122072dfaf712e37fb58c0c88d255375ac05e5e027ec56a0e45fc283f15c9cb7d1b564736f6c63430008110033697066733a2f2f6261667962656966757a626e3364736c7134797764626871776d7874373237647633336c7a6a756d366e35726a33626b62687a75366a3261686f692f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f44657374726f6e2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008445354524e474e53000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80636f8b44b011610139578063a7027357116100b6578063dc2b280e1161007a578063dc2b280e14610610578063dc33e68114610625578063e985e9c514610645578063f2fde38b14610665578063f8f103dd14610685578063f968adbe146106a557600080fd5b8063a70273571461059e578063b287c8ed146105b4578063b88d4fde146105c7578063c87b56dd146105da578063d5abeb01146105fa57600080fd5b80638d6cc56d116100fd5780638d6cc56d146105155780638da5cb5b1461053557806395d89b4114610553578063a035b1fe14610568578063a22cb4651461057e57600080fd5b80636f8b44b01461049557806370a08231146104b5578063715018a6146104d55780637d8966e4146104ea57806380b17335146104ff57600080fd5b8063453c2310116101c75780635b28fd911161018b5780635b28fd91146104065780635c474f9e146104265780636352211e146104405780636c0360eb146104605780636d7c4a4b1461047557600080fd5b8063453c231014610385578063475133341461039b5780635503a0e8146103b157806355f804b3146103c65780635a4d448a146103e657600080fd5b806323b872dd1161020e57806323b872dd146103125780632cfac6ec146103255780633ccfd60b1461033b57806341f434341461035057806342842e0e1461037257600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102ef575b600080fd5b34801561025757600080fd5b5061026b610266366004611788565b6106bb565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b5061029561070d565b60405161027791906117f5565b3480156102ae57600080fd5b506102c26102bd366004611808565b61079f565b6040516001600160a01b039091168152602001610277565b6102ed6102e836600461183d565b6107e3565b005b3480156102fb57600080fd5b50600154600054035b604051908152602001610277565b6102ed610320366004611867565b6107fc565b34801561033157600080fd5b50610304600a5481565b34801561034757600080fd5b506102ed610827565b34801561035c57600080fd5b506102c26daaeb6d7670e522a718067333cd4e81565b6102ed610380366004611867565b6108c6565b34801561039157600080fd5b50610304600d5481565b3480156103a757600080fd5b50610304600e5481565b3480156103bd57600080fd5b506102956108eb565b3480156103d257600080fd5b506102ed6103e13660046118a3565b610979565b3480156103f257600080fd5b506102ed610401366004611808565b61098e565b34801561041257600080fd5b506102ed610421366004611808565b610ac5565b34801561043257600080fd5b5060115461026b9060ff1681565b34801561044c57600080fd5b506102c261045b366004611808565b610ad2565b34801561046c57600080fd5b50610295610add565b34801561048157600080fd5b506102ed610490366004611808565b610aea565b3480156104a157600080fd5b506102ed6104b0366004611808565b610af7565b3480156104c157600080fd5b506103046104d0366004611915565b610b04565b3480156104e157600080fd5b506102ed610b53565b3480156104f657600080fd5b506102ed610b67565b34801561050b57600080fd5b5061030460105481565b34801561052157600080fd5b506102ed610530366004611808565b610b83565b34801561054157600080fd5b506008546001600160a01b03166102c2565b34801561055f57600080fd5b50610295610b90565b34801561057457600080fd5b50610304600b5481565b34801561058a57600080fd5b506102ed61059936600461193e565b610b9f565b3480156105aa57600080fd5b50610304600f5481565b6102ed6105c2366004611808565b610bb3565b6102ed6105d536600461198b565b610e24565b3480156105e657600080fd5b506102956105f5366004611808565b610e51565b34801561060657600080fd5b5061030460095481565b34801561061c57600080fd5b506102ed610ed8565b34801561063157600080fd5b50610304610640366004611915565b610ee7565b34801561065157600080fd5b5061026b610660366004611a67565b610f12565b34801561067157600080fd5b506102ed610680366004611915565b610f40565b34801561069157600080fd5b506102ed6106a0366004611808565b610fb6565b3480156106b157600080fd5b50610304600c5481565b60006301ffc9a760e01b6001600160e01b0319831614806106ec57506380ac58cd60e01b6001600160e01b03198316145b806107075750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461071c90611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461074890611a9a565b80156107955780601f1061076a57610100808354040283529160200191610795565b820191906000526020600020905b81548152906001019060200180831161077857829003601f168201915b5050505050905090565b60006107aa82610fc3565b6107c7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b816107ed81610fea565b6107f783836110a3565b505050565b826001600160a01b03811633146108165761081633610fea565b610821848484611143565b50505050565b61082f6112dc565b604051600090339047908381818185875af1925050503d8060008114610871576040519150601f19603f3d011682016040523d82523d6000602084013e610876565b606091505b50509050806108c35760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064015b60405180910390fd5b50565b826001600160a01b03811633146108e0576108e033610fea565b610821848484611336565b601280546108f890611a9a565b80601f016020809104026020016040519081016040528092919081815260200182805461092490611a9a565b80156109715780601f1061094657610100808354040283529160200191610971565b820191906000526020600020905b81548152906001019060200180831161095457829003601f168201915b505050505081565b6109816112dc565b60136107f7828483611b1a565b6109966112dc565b6000600a54116109e85760405162461bcd60e51b815260206004820152601c60248201527f53686f756c64206e6f7420657863656564206d696e74206c696d69740000000060448201526064016108ba565b600a54811115610a3a5760405162461bcd60e51b815260206004820152601c60248201527f53686f756c64206e6f7420657863656564206d696e74206c696d69740000000060448201526064016108ba565b60095481610a4b6001546000540390565b610a559190611bf0565b1115610aa35760405162461bcd60e51b815260206004820152601d60248201527f53686f756c64206e6f7420657863656564206d617820737570706c792e00000060448201526064016108ba565b80600a6000828254610ab59190611c03565b909155506108c390503382611351565b610acd6112dc565b600e55565b60006107078261136f565b601380546108f890611a9a565b610af26112dc565b600f55565b610aff6112dc565b600955565b60006001600160a01b038216610b2d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610b5b6112dc565b610b6560006113dd565b565b610b6f6112dc565b6011805460ff19811660ff90911615179055565b610b8b6112dc565b600b55565b60606003805461071c90611a9a565b81610ba981610fea565b6107f7838361142f565b60115460ff16610bfb5760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9903737ba1030b1ba34bb329760691b60448201526064016108ba565b600c54811115610c585760405162461bcd60e51b815260206004820152602260248201527f53686f756c64206e6f7420657863656564206d6178206d696e74206e756d6265604482015261722160f01b60648201526084016108ba565b60095481610c696001546000540390565b610c739190611bf0565b1115610cc15760405162461bcd60e51b815260206004820152601d60248201527f53686f756c64206e6f7420657863656564206d617820737570706c792e00000060448201526064016108ba565b600d5481610cce33610ee7565b610cd89190611bf0565b1115610d305760405162461bcd60e51b815260206004820152602160248201527f53686f756c64206e6f7420657863656564206d6178207065722077616c6c65746044820152601760f91b60648201526084016108ba565b600080600e546010541015610d4557600f5491505b8282610d5033610ee7565b1015610d9f578284610d6133610ee7565b610d6b9190611bf0565b11610d7857506000610d9a565b8284610d8333610ee7565b610d8d9190611bf0565b610d979190611c03565b90505b600191505b600b54610dac9082611c16565b341015610dfb5760405162461bcd60e51b815260206004820152601960248201527f45746865722076616c7565206973206e6f7420656e6f7567680000000000000060448201526064016108ba565b8115610e1a57600160106000828254610e149190611bf0565b90915550505b6108213385611351565b836001600160a01b0381163314610e3e57610e3e33610fea565b610e4a8585858561149b565b5050505050565b6060610e5c82610fc3565b610e7957604051630a14c4b560e41b815260040160405180910390fd5b60138054610e8690611a9a565b9050600003610ea45760405180602001604052806000815250610707565b6013610eaf836114df565b6012604051602001610ec393929190611ca0565b60405160208183030381529060405292915050565b610ee06112dc565b6000601055565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610707565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610f486112dc565b6001600160a01b038116610fad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ba565b6108c3816113dd565b610fbe6112dc565b600a55565b6000805482108015610707575050600090815260046020526040902054600160e01b161590565b6daaeb6d7670e522a718067333cd4e3b156108c357604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611057573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061107b9190611cd3565b6108c357604051633b79c77360e21b81526001600160a01b03821660048201526024016108ba565b60006110ae82610ad2565b9050336001600160a01b038216146110e7576110ca8133610f12565b6110e7576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061114e8261136f565b9050836001600160a01b0316816001600160a01b0316146111815760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176111ce576111b18633610f12565b6111ce57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166111f557604051633a954ecd60e21b815260040160405180910390fd5b801561120057600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003611292576001840160008181526004602052604081205490036112905760005481146112905760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6008546001600160a01b03163314610b655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108ba565b6107f783838360405180602001604052806000815250610e24565b61136b828260405180602001604052806000815250611523565b5050565b6000816000548110156113c45760008181526004602052604081205490600160e01b821690036113c2575b806000036113bb57506000190160008181526004602052604090205461139a565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6114a68484846107fc565b6001600160a01b0383163b15610821576114c284848484611589565b610821576040516368d2bf6b60e11b815260040160405180910390fd5b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114f95750819003601f19909101908152919050565b61152d8383611674565b6001600160a01b0383163b156107f7576000548281035b6115576000868380600101945086611589565b611574576040516368d2bf6b60e11b815260040160405180910390fd5b818110611544578160005414610e4a57600080fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115be903390899088908890600401611cf0565b6020604051808303816000875af19250505080156115f9575060408051601f3d908101601f191682019092526115f691810190611d2d565b60015b611657573d808015611627576040519150601f19603f3d011682016040523d82523d6000602084013e61162c565b606091505b50805160000361164f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60008054908290036116995760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461174857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611710565b508160000361176957604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108c357600080fd5b60006020828403121561179a57600080fd5b81356113bb81611772565b60005b838110156117c05781810151838201526020016117a8565b50506000910152565b600081518084526117e18160208601602086016117a5565b601f01601f19169290920160200192915050565b6020815260006113bb60208301846117c9565b60006020828403121561181a57600080fd5b5035919050565b80356001600160a01b038116811461183857600080fd5b919050565b6000806040838503121561185057600080fd5b61185983611821565b946020939093013593505050565b60008060006060848603121561187c57600080fd5b61188584611821565b925061189360208501611821565b9150604084013590509250925092565b600080602083850312156118b657600080fd5b823567ffffffffffffffff808211156118ce57600080fd5b818501915085601f8301126118e257600080fd5b8135818111156118f157600080fd5b86602082850101111561190357600080fd5b60209290920196919550909350505050565b60006020828403121561192757600080fd5b6113bb82611821565b80151581146108c357600080fd5b6000806040838503121561195157600080fd5b61195a83611821565b9150602083013561196a81611930565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156119a157600080fd5b6119aa85611821565b93506119b860208601611821565b925060408501359150606085013567ffffffffffffffff808211156119dc57600080fd5b818701915087601f8301126119f057600080fd5b813581811115611a0257611a02611975565b604051601f8201601f19908116603f01168101908382118183101715611a2a57611a2a611975565b816040528281528a6020848701011115611a4357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611a7a57600080fd5b611a8383611821565b9150611a9160208401611821565b90509250929050565b600181811c90821680611aae57607f821691505b602082108103611ace57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156107f757600081815260208120601f850160051c81016020861015611afb5750805b601f850160051c820191505b818110156112d457828155600101611b07565b67ffffffffffffffff831115611b3257611b32611975565b611b4683611b408354611a9a565b83611ad4565b6000601f841160018114611b7a5760008515611b625750838201355b600019600387901b1c1916600186901b178355610e4a565b600083815260209020601f19861690835b82811015611bab5786850135825560209485019460019092019101611b8b565b5086821015611bc85760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561070757610707611bda565b8181038181111561070757610707611bda565b808202811582820484141761070757610707611bda565b60008154611c3a81611a9a565b60018281168015611c525760018114611c6757611c96565b60ff1984168752821515830287019450611c96565b8560005260208060002060005b85811015611c8d5781548a820152908401908201611c74565b50505082870194505b5050505092915050565b6000611cac8286611c2d565b8451611cbc8183602089016117a5565b611cc881830186611c2d565b979650505050505050565b600060208284031215611ce557600080fd5b81516113bb81611930565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d23908301846117c9565b9695505050505050565b600060208284031215611d3f57600080fd5b81516113bb8161177256fea264697066735822122072dfaf712e37fb58c0c88d255375ac05e5e027ec56a0e45fc283f15c9cb7d1b564736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f44657374726f6e2047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008445354524e474e53000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Destron Genesis
Arg [1] : _symbol (string): DSTRNGNS

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 44657374726f6e2047656e657369730000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 445354524e474e53000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

60484:4743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27377:639;;;;;;;;;;-1:-1:-1;27377:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27377:639:0;;;;;;;;28279:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34770:218::-;;;;;;;;;;-1:-1:-1;34770:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;34770:218:0;1533:203:1;64440:165:0;;;;;;:::i;:::-;;:::i;:::-;;24030:323;;;;;;;;;;-1:-1:-1;24304:12:0;;24091:7;24288:13;:28;24030:323;;;2324:25:1;;;2312:2;2297:18;24030:323:0;2178:177:1;64613:171:0;;;;;;:::i;:::-;;:::i;60597:30::-;;;;;;;;;;;;;;;;63966:177;;;;;;;;;;;;;:::i;2897:143::-;;;;;;;;;;;;2997:42;2897:143;;64792:179;;;;;;:::i;:::-;;:::i;60710:31::-;;;;;;;;;;;;;;;;60748:34;;;;;;;;;;;;;;;;60904:33;;;;;;;;;;;;;:::i;63420:106::-;;;;;;;;;;-1:-1:-1;63420:106:0;;;;;:::i;:::-;;:::i;62464:359::-;;;;;;;;;;-1:-1:-1;62464:359:0;;;;;:::i;:::-;;:::i;63740:102::-;;;;;;;;;;-1:-1:-1;63740:102:0;;;;;:::i;:::-;;:::i;60866:31::-;;;;;;;;;;-1:-1:-1;60866:31:0;;;;;;;;29672:152;;;;;;;;;;-1:-1:-1;29672:152:0;;;;;:::i;:::-;;:::i;60944:93::-;;;;;;;;;;;;;:::i;63850:108::-;;;;;;;;;;-1:-1:-1;63850:108:0;;;;;:::i;:::-;;:::i;63534:94::-;;;;;;;;;;-1:-1:-1;63534:94:0;;;;;:::i;:::-;;:::i;25214:233::-;;;;;;;;;;-1:-1:-1;25214:233:0;;;;;:::i;:::-;;:::i;8156:103::-;;;;;;;;;;;;;:::i;63239:86::-;;;;;;;;;;;;;:::i;60831:28::-;;;;;;;;;;;;;;;;61257:89;;;;;;;;;;-1:-1:-1;61257:89:0;;;;;:::i;:::-;;:::i;7508:87::-;;;;;;;;;;-1:-1:-1;7581:6:0;;-1:-1:-1;;;;;7581:6:0;7508:87;;28455:104;;;;;;;;;;;;;:::i;60634:35::-;;;;;;;;;;;;;;;;64256:176;;;;;;;;;;-1:-1:-1;64256:176:0;;;;;:::i;:::-;;:::i;60789:35::-;;;;;;;;;;;;;;;;61354:1102;;;;;;:::i;:::-;;:::i;64979:245::-;;;;;;:::i;:::-;;:::i;62939:292::-;;;;;;;;;;-1:-1:-1;62939:292:0;;;;;:::i;:::-;;:::i;60560:30::-;;;;;;;;;;;;;;;;63333:79;;;;;;;;;;;;;:::i;61136:113::-;;;;;;;;;;-1:-1:-1;61136:113:0;;;;;:::i;:::-;;:::i;35719:164::-;;;;;;;;;;-1:-1:-1;35719:164:0;;;;;:::i;:::-;;:::i;8414:201::-;;;;;;;;;;-1:-1:-1;8414:201:0;;;;;:::i;:::-;;:::i;63636:96::-;;;;;;;;;;-1:-1:-1;63636:96:0;;;;;:::i;:::-;;:::i;60676:27::-;;;;;;;;;;;;;;;;27377:639;27462:4;-1:-1:-1;;;;;;;;;27786:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;27863:25:0;;;27786:102;:179;;;-1:-1:-1;;;;;;;;;;27940:25:0;;;27786:179;27766:199;27377:639;-1:-1:-1;;27377:639:0:o;28279:100::-;28333:13;28366:5;28359:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28279:100;:::o;34770:218::-;34846:7;34871:16;34879:7;34871;:16::i;:::-;34866:64;;34896:34;;-1:-1:-1;;;34896:34:0;;;;;;;;;;;34866:64;-1:-1:-1;34950:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;34950:30:0;;34770:218::o;64440:165::-;64544:8;4418:30;4439:8;4418:20;:30::i;:::-;64565:32:::1;64579:8;64589:7;64565:13;:32::i;:::-;64440:165:::0;;;:::o;64613:171::-;64722:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;64739:37:::1;64758:4;64764:2;64768:7;64739:18;:37::i;:::-;64613:171:::0;;;;:::o;63966:177::-;7394:13;:11;:13::i;:::-;64035:49:::1;::::0;64017:12:::1;::::0;64035:10:::1;::::0;64058:21:::1;::::0;64017:12;64035:49;64017:12;64035:49;64058:21;64035:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64016:68;;;64103:7;64095:40;;;::::0;-1:-1:-1;;;64095:40:0;;6500:2:1;64095:40:0::1;::::0;::::1;6482:21:1::0;6539:2;6519:18;;;6512:30;-1:-1:-1;;;6558:18:1;;;6551:50;6618:18;;64095:40:0::1;;;;;;;;;64005:138;63966:177::o:0;64792:179::-;64905:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;64922:41:::1;64945:4;64951:2;64955:7;64922:22;:41::i;60904:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63420:106::-;7394:13;:11;:13::i;:::-;63498:7:::1;:20;63508:10:::0;;63498:7;:20:::1;:::i;62464:359::-:0;7394:13;:11;:13::i;:::-;62552:1:::1;62539:10;;:14;62531:54;;;::::0;-1:-1:-1;;;62531:54:0;;8907:2:1;62531:54:0::1;::::0;::::1;8889:21:1::0;8946:2;8926:18;;;8919:30;8985;8965:18;;;8958:58;9033:18;;62531:54:0::1;8705:352:1::0;62531:54:0::1;62614:10;;62604:6;:20;;62596:60;;;::::0;-1:-1:-1;;;62596:60:0;;8907:2:1;62596:60:0::1;::::0;::::1;8889:21:1::0;8946:2;8926:18;;;8919:30;8985;8965:18;;;8958:58;9033:18;;62596:60:0::1;8705:352:1::0;62596:60:0::1;62701:9;;62691:6;62675:13;24304:12:::0;;24091:7;24288:13;:28;;24030:323;62675:13:::1;:22;;;;:::i;:::-;:35;;62667:77;;;::::0;-1:-1:-1;;;62667:77:0;;9526:2:1;62667:77:0::1;::::0;::::1;9508:21:1::0;9565:2;9545:18;;;9538:30;9604:31;9584:18;;;9577:59;9653:18;;62667:77:0::1;9324:353:1::0;62667:77:0::1;62769:6;62755:10;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;62786:29:0::1;::::0;-1:-1:-1;62796:10:0::1;62808:6:::0;62786:9:::1;:29::i;63740:102::-:0;7394:13;:11;:13::i;:::-;63812::::1;:22:::0;63740:102::o;29672:152::-;29744:7;29787:27;29806:7;29787:18;:27::i;60944:93::-;;;;;;;:::i;63850:108::-;7394:13;:11;:13::i;:::-;63925:16:::1;:25:::0;63850:108::o;63534:94::-;7394:13;:11;:13::i;:::-;63602:9:::1;:18:::0;63534:94::o;25214:233::-;25286:7;-1:-1:-1;;;;;25310:19:0;;25306:60;;25338:28;;-1:-1:-1;;;25338:28:0;;;;;;;;;;;25306:60;-1:-1:-1;;;;;;25384:25:0;;;;;:18;:25;;;;;;19373:13;25384:55;;25214:233::o;8156:103::-;7394:13;:11;:13::i;:::-;8221:30:::1;8248:1;8221:18;:30::i;:::-;8156:103::o:0;63239:86::-;7394:13;:11;:13::i;:::-;63306:11:::1;::::0;;-1:-1:-1;;63291:26:0;::::1;63306:11;::::0;;::::1;63305:12;63291:26;::::0;;63239:86::o;61257:89::-;7394:13;:11;:13::i;:::-;61323:5:::1;:15:::0;61257:89::o;28455:104::-;28511:13;28544:7;28537:14;;;;;:::i;64256:176::-;64360:8;4418:30;4439:8;4418:20;:30::i;:::-;64381:43:::1;64405:8;64415;64381:23;:43::i;61354:1102::-:0;61426:11;;;;61418:43;;;;-1:-1:-1;;;61418:43:0;;10017:2:1;61418:43:0;;;9999:21:1;10056:2;10036:18;;;10029:30;-1:-1:-1;;;10075:18:1;;;10068:49;10134:18;;61418:43:0;9815:343:1;61418:43:0;61490:8;;61480:6;:18;;61472:65;;;;-1:-1:-1;;;61472:65:0;;10365:2:1;61472:65:0;;;10347:21:1;10404:2;10384:18;;;10377:30;10443:34;10423:18;;;10416:62;-1:-1:-1;;;10494:18:1;;;10487:32;10536:19;;61472:65:0;10163:398:1;61472:65:0;61582:9;;61572:6;61556:13;24304:12;;24091:7;24288:13;:28;;24030:323;61556:13;:22;;;;:::i;:::-;:35;;61548:77;;;;-1:-1:-1;;;61548:77:0;;9526:2:1;61548:77:0;;;9508:21:1;9565:2;9545:18;;;9538:30;9604:31;9584:18;;;9577:59;9653:18;;61548:77:0;9324:353:1;61548:77:0;61681:12;;61671:6;61644:24;61657:10;61644:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;61636:95;;;;-1:-1:-1;;;61636:95:0;;10768:2:1;61636:95:0;;;10750:21:1;10807:2;10787:18;;;10780:30;10846:34;10826:18;;;10819:62;-1:-1:-1;;;10897:18:1;;;10890:31;10938:19;;61636:95:0;10566:397:1;61636:95:0;61744:21;61780:15;61830:13;;61818:9;;:25;61814:90;;;61876:16;;61860:32;;61814:90;61932:6;61980:13;61953:24;61966:10;61953:12;:24::i;:::-;:40;61949:331;;;62051:13;62041:6;62014:24;62027:10;62014:12;:24::i;:::-;:33;;;;:::i;:::-;:50;62010:227;;-1:-1:-1;62093:1:0;62010:227;;;62208:13;62199:6;62172:24;62185:10;62172:12;:24::i;:::-;:33;;;;:::i;:::-;:49;;;;:::i;:::-;62164:57;;62010:227;62264:4;62251:17;;61949:331;62321:5;;62313:13;;:5;:13;:::i;:::-;62300:9;:26;;62292:64;;;;-1:-1:-1;;;62292:64:0;;11343:2:1;62292:64:0;;;11325:21:1;11382:2;11362:18;;;11355:30;11421:27;11401:18;;;11394:55;11466:18;;62292:64:0;11141:349:1;62292:64:0;62380:10;62377:29;;;62405:1;62392:9;;:14;;;;;;;:::i;:::-;;;;-1:-1:-1;;62377:29:0;62419;62429:10;62441:6;62419:9;:29::i;64979:245::-;65147:4;-1:-1:-1;;;;;4238:18:0;;4246:10;4238:18;4234:83;;4273:32;4294:10;4273:20;:32::i;:::-;65169:47:::1;65192:4;65198:2;65202:7;65211:4;65169:22;:47::i;:::-;64979:245:::0;;;;;:::o;62939:292::-;63012:13;63043:16;63051:7;63043;:16::i;:::-;63038:59;;63068:29;;-1:-1:-1;;;63068:29:0;;;;;;;;;;;63038:59;63131:7;63125:21;;;;;:::i;:::-;;;63150:1;63125:26;:98;;;;;;;;;;;;;;;;;63178:7;63187:18;63197:7;63187:9;:18::i;:::-;63207:9;63161:56;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63118:105;62939:292;-1:-1:-1;;62939:292:0:o;63333:79::-;7394:13;:11;:13::i;:::-;63403:1:::1;63391:9;:13:::0;63333:79::o;61136:113::-;-1:-1:-1;;;;;25618:25:0;;61194:7;25618:25;;;:18;:25;;19511:2;25618:25;;;;19373:13;25618:50;;25617:82;61221:20;25529:178;35719:164;-1:-1:-1;;;;;35840:25:0;;;35816:4;35840:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35719:164::o;8414:201::-;7394:13;:11;:13::i;:::-;-1:-1:-1;;;;;8503:22:0;::::1;8495:73;;;::::0;-1:-1:-1;;;8495:73:0;;12898:2:1;8495:73:0::1;::::0;::::1;12880:21:1::0;12937:2;12917:18;;;12910:30;12976:34;12956:18;;;12949:62;-1:-1:-1;;;13027:18:1;;;13020:36;13073:19;;8495:73:0::1;12696:402:1::0;8495:73:0::1;8579:28;8598:8;8579:18;:28::i;63636:96::-:0;7394:13;:11;:13::i;:::-;63705:10:::1;:19:::0;63636:96::o;36141:282::-;36206:4;36296:13;;36286:7;:23;36243:153;;;;-1:-1:-1;;36347:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;36347:44:0;:49;;36141:282::o;4476:419::-;2997:42;4667:45;:49;4663:225;;4738:67;;-1:-1:-1;;;4738:67:0;;4789:4;4738:67;;;13315:34:1;-1:-1:-1;;;;;13385:15:1;;13365:18;;;13358:43;2997:42:0;;4738;;13250:18:1;;4738:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4733:144;;4833:28;;-1:-1:-1;;;4833:28:0;;-1:-1:-1;;;;;1697:32:1;;4833:28:0;;;1679:51:1;1652:18;;4833:28:0;1533:203:1;34203:408:0;34292:13;34308:16;34316:7;34308;:16::i;:::-;34292:32;-1:-1:-1;58536:10:0;-1:-1:-1;;;;;34341:28:0;;;34337:175;;34389:44;34406:5;58536:10;35719:164;:::i;34389:44::-;34384:128;;34461:35;;-1:-1:-1;;;34461:35:0;;;;;;;;;;;34384:128;34524:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;34524:35:0;-1:-1:-1;;;;;34524:35:0;;;;;;;;;34575:28;;34524:24;;34575:28;;;;;;;34281:330;34203:408;;:::o;38409:2825::-;38551:27;38581;38600:7;38581:18;:27::i;:::-;38551:57;;38666:4;-1:-1:-1;;;;;38625:45:0;38641:19;-1:-1:-1;;;;;38625:45:0;;38621:86;;38679:28;;-1:-1:-1;;;38679:28:0;;;;;;;;;;;38621:86;38721:27;37517:24;;;:15;:24;;;;;37745:26;;58536:10;37142:30;;;-1:-1:-1;;;;;36835:28:0;;37120:20;;;37117:56;38907:180;;39000:43;39017:4;58536:10;35719:164;:::i;39000:43::-;38995:92;;39052:35;;-1:-1:-1;;;39052:35:0;;;;;;;;;;;38995:92;-1:-1:-1;;;;;39104:16:0;;39100:52;;39129:23;;-1:-1:-1;;;39129:23:0;;;;;;;;;;;39100:52;39301:15;39298:160;;;39441:1;39420:19;39413:30;39298:160;-1:-1:-1;;;;;39838:24:0;;;;;;;:18;:24;;;;;;39836:26;;-1:-1:-1;;39836:26:0;;;39907:22;;;;;;;;;39905:24;;-1:-1:-1;39905:24:0;;;33061:11;33036:23;33032:41;33019:63;-1:-1:-1;;;33019:63:0;40200:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;40495:47:0;;:52;;40491:627;;40600:1;40590:11;;40568:19;40723:30;;;:17;:30;;;;;;:35;;40719:384;;40861:13;;40846:11;:28;40842:242;;41008:30;;;;:17;:30;;;;;:52;;;40842:242;40549:569;40491:627;41165:7;41161:2;-1:-1:-1;;;;;41146:27:0;41155:4;-1:-1:-1;;;;;41146:27:0;;;;;;;;;;;41184:42;38540:2694;;;38409:2825;;;:::o;7673:132::-;7581:6;;-1:-1:-1;;;;;7581:6:0;58536:10;7737:23;7729:68;;;;-1:-1:-1;;;7729:68:0;;13864:2:1;7729:68:0;;;13846:21:1;;;13883:18;;;13876:30;13942:34;13922:18;;;13915:62;13994:18;;7729:68:0;13662:356:1;41330:193:0;41476:39;41493:4;41499:2;41503:7;41476:39;;;;;;;;;;;;:16;:39::i;52281:112::-;52358:27;52368:2;52372:8;52358:27;;;;;;;;;;;;:9;:27::i;:::-;52281:112;;:::o;30827:1275::-;30894:7;30929;31031:13;;31024:4;:20;31020:1015;;;31069:14;31086:23;;;:17;:23;;;;;;;-1:-1:-1;;;31175:24:0;;:29;;31171:845;;31840:113;31847:6;31857:1;31847:11;31840:113;;-1:-1:-1;;;31918:6:0;31900:25;;;;:17;:25;;;;;;31840:113;;;31986:6;30827:1275;-1:-1:-1;;;30827:1275:0:o;31171:845::-;31046:989;31020:1015;32063:31;;-1:-1:-1;;;32063:31:0;;;;;;;;;;;8775:191;8868:6;;;-1:-1:-1;;;;;8885:17:0;;;-1:-1:-1;;;;;;8885:17:0;;;;;;;8918:40;;8868:6;;;8885:17;8868:6;;8918:40;;8849:16;;8918:40;8838:128;8775:191;:::o;35328:234::-;58536:10;35423:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;35423:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;35423:60:0;;;;;;;;;;35499:55;;540:41:1;;;35423:49:0;;58536:10;35499:55;;513:18:1;35499:55:0;;;;;;;35328:234;;:::o;42121:407::-;42296:31;42309:4;42315:2;42319:7;42296:12;:31::i;:::-;-1:-1:-1;;;;;42342:14:0;;;:19;42338:183;;42381:56;42412:4;42418:2;42422:7;42431:5;42381:30;:56::i;:::-;42376:145;;42465:40;;-1:-1:-1;;;42465:40:0;;;;;;;;;;;58656:1745;58721:17;59155:4;59148;59142:11;59138:22;59247:1;59241:4;59234:15;59322:4;59319:1;59315:12;59308:19;;;59404:1;59399:3;59392:14;59508:3;59747:5;59729:428;59795:1;59790:3;59786:11;59779:18;;59966:2;59960:4;59956:13;59952:2;59948:22;59943:3;59935:36;60060:2;60050:13;;60117:25;59729:428;60117:25;-1:-1:-1;60187:13:0;;;-1:-1:-1;;60302:14:0;;;60364:19;;;60302:14;58656:1745;-1:-1:-1;58656:1745:0:o;51508:689::-;51639:19;51645:2;51649:8;51639:5;:19::i;:::-;-1:-1:-1;;;;;51700:14:0;;;:19;51696:483;;51740:11;51754:13;51802:14;;;51835:233;51866:62;51905:1;51909:2;51913:7;;;;;;51922:5;51866:30;:62::i;:::-;51861:167;;51964:40;;-1:-1:-1;;;51964:40:0;;;;;;;;;;;51861:167;52063:3;52055:5;:11;51835:233;;52150:3;52133:13;;:20;52129:34;;52155:8;;;44612:716;44796:88;;-1:-1:-1;;;44796:88:0;;44775:4;;-1:-1:-1;;;;;44796:45:0;;;;;:88;;58536:10;;44863:4;;44869:7;;44878:5;;44796:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44796:88:0;;;;;;;;-1:-1:-1;;44796:88:0;;;;;;;;;;;;:::i;:::-;;;44792:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45079:6;:13;45096:1;45079:18;45075:235;;45125:40;;-1:-1:-1;;;45125:40:0;;;;;;;;;;;45075:235;45268:6;45262:13;45253:6;45249:2;45245:15;45238:38;44792:529;-1:-1:-1;;;;;;44955:64:0;-1:-1:-1;;;44955:64:0;;-1:-1:-1;44612:716:0;;;;;;:::o;45790:2966::-;45863:20;45886:13;;;45914;;;45910:44;;45936:18;;-1:-1:-1;;;45936:18:0;;;;;;;;;;;45910:44;-1:-1:-1;;;;;46442:22:0;;;;;;:18;:22;;;;19511:2;46442:22;;;:71;;46480:32;46468:45;;46442:71;;;46756:31;;;:17;:31;;;;;-1:-1:-1;33492:15:0;;33466:24;33462:46;33061:11;33036:23;33032:41;33029:52;33019:63;;46756:173;;46991:23;;;;46756:31;;46442:22;;47756:25;46442:22;;47609:335;48270:1;48256:12;48252:20;48210:346;48311:3;48302:7;48299:16;48210:346;;48529:7;48519:8;48516:1;48489:25;48486:1;48483;48478:59;48364:1;48351:15;48210:346;;;48214:77;48589:8;48601:1;48589:13;48585:45;;48611:19;;-1:-1:-1;;;48611:19:0;;;;;;;;;;;48585:45;48647:13;:19;-1:-1:-1;64440:165:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2932:592::-;3003:6;3011;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;3149:18;3190:2;3182:6;3179:14;3176:34;;;3206:1;3203;3196:12;3176:34;3244:6;3233:9;3229:22;3219:32;;3289:7;3282:4;3278:2;3274:13;3270:27;3260:55;;3311:1;3308;3301:12;3260:55;3351:2;3338:16;3377:2;3369:6;3366:14;3363:34;;;3393:1;3390;3383:12;3363:34;3438:7;3433:2;3424:6;3420:2;3416:15;3412:24;3409:37;3406:57;;;3459:1;3456;3449:12;3406:57;3490:2;3482:11;;;;;3512:6;;-1:-1:-1;2932:592:1;;-1:-1:-1;;;;2932:592:1:o;3529:186::-;3588:6;3641:2;3629:9;3620:7;3616:23;3612:32;3609:52;;;3657:1;3654;3647:12;3609:52;3680:29;3699:9;3680:29;:::i;3720:118::-;3806:5;3799:13;3792:21;3785:5;3782:32;3772:60;;3828:1;3825;3818:12;3843:315;3908:6;3916;3969:2;3957:9;3948:7;3944:23;3940:32;3937:52;;;3985:1;3982;3975:12;3937:52;4008:29;4027:9;4008:29;:::i;:::-;3998:39;;4087:2;4076:9;4072:18;4059:32;4100:28;4122:5;4100:28;:::i;:::-;4147:5;4137:15;;;3843:315;;;;;:::o;4163:127::-;4224:10;4219:3;4215:20;4212:1;4205:31;4255:4;4252:1;4245:15;4279:4;4276:1;4269:15;4295:1138;4390:6;4398;4406;4414;4467:3;4455:9;4446:7;4442:23;4438:33;4435:53;;;4484:1;4481;4474:12;4435:53;4507:29;4526:9;4507:29;:::i;:::-;4497:39;;4555:38;4589:2;4578:9;4574:18;4555:38;:::i;:::-;4545:48;;4640:2;4629:9;4625:18;4612:32;4602:42;;4695:2;4684:9;4680:18;4667:32;4718:18;4759:2;4751:6;4748:14;4745:34;;;4775:1;4772;4765:12;4745:34;4813:6;4802:9;4798:22;4788:32;;4858:7;4851:4;4847:2;4843:13;4839:27;4829:55;;4880:1;4877;4870:12;4829:55;4916:2;4903:16;4938:2;4934;4931:10;4928:36;;;4944:18;;:::i;:::-;5019:2;5013:9;4987:2;5073:13;;-1:-1:-1;;5069:22:1;;;5093:2;5065:31;5061:40;5049:53;;;5117:18;;;5137:22;;;5114:46;5111:72;;;5163:18;;:::i;:::-;5203:10;5199:2;5192:22;5238:2;5230:6;5223:18;5278:7;5273:2;5268;5264;5260:11;5256:20;5253:33;5250:53;;;5299:1;5296;5289:12;5250:53;5355:2;5350;5346;5342:11;5337:2;5329:6;5325:15;5312:46;5400:1;5395:2;5390;5382:6;5378:15;5374:24;5367:35;5421:6;5411:16;;;;;;;4295:1138;;;;;;;:::o;5438:260::-;5506:6;5514;5567:2;5555:9;5546:7;5542:23;5538:32;5535:52;;;5583:1;5580;5573:12;5535:52;5606:29;5625:9;5606:29;:::i;:::-;5596:39;;5654:38;5688:2;5677:9;5673:18;5654:38;:::i;:::-;5644:48;;5438:260;;;;;:::o;5703:380::-;5782:1;5778:12;;;;5825;;;5846:61;;5900:4;5892:6;5888:17;5878:27;;5846:61;5953:2;5945:6;5942:14;5922:18;5919:38;5916:161;;5999:10;5994:3;5990:20;5987:1;5980:31;6034:4;6031:1;6024:15;6062:4;6059:1;6052:15;5916:161;;5703:380;;;:::o;6773:545::-;6875:2;6870:3;6867:11;6864:448;;;6911:1;6936:5;6932:2;6925:17;6981:4;6977:2;6967:19;7051:2;7039:10;7035:19;7032:1;7028:27;7022:4;7018:38;7087:4;7075:10;7072:20;7069:47;;;-1:-1:-1;7110:4:1;7069:47;7165:2;7160:3;7156:12;7153:1;7149:20;7143:4;7139:31;7129:41;;7220:82;7238:2;7231:5;7228:13;7220:82;;;7283:17;;;7264:1;7253:13;7220:82;;7494:1206;7618:18;7613:3;7610:27;7607:53;;;7640:18;;:::i;:::-;7669:94;7759:3;7719:38;7751:4;7745:11;7719:38;:::i;:::-;7713:4;7669:94;:::i;:::-;7789:1;7814:2;7809:3;7806:11;7831:1;7826:616;;;;8486:1;8503:3;8500:93;;;-1:-1:-1;8559:19:1;;;8546:33;8500:93;-1:-1:-1;;7451:1:1;7447:11;;;7443:24;7439:29;7429:40;7475:1;7471:11;;;7426:57;8606:78;;7799:895;;7826:616;6720:1;6713:14;;;6757:4;6744:18;;-1:-1:-1;;7862:17:1;;;7963:9;7985:229;7999:7;7996:1;7993:14;7985:229;;;8088:19;;;8075:33;8060:49;;8195:4;8180:20;;;;8148:1;8136:14;;;;8015:12;7985:229;;;7989:3;8242;8233:7;8230:16;8227:159;;;8366:1;8362:6;8356:3;8350;8347:1;8343:11;8339:21;8335:34;8331:39;8318:9;8313:3;8309:19;8296:33;8292:79;8284:6;8277:95;8227:159;;;8429:1;8423:3;8420:1;8416:11;8412:19;8406:4;8399:33;7799:895;;7494:1206;;;:::o;9062:127::-;9123:10;9118:3;9114:20;9111:1;9104:31;9154:4;9151:1;9144:15;9178:4;9175:1;9168:15;9194:125;9259:9;;;9280:10;;;9277:36;;;9293:18;;:::i;9682:128::-;9749:9;;;9770:11;;;9767:37;;;9784:18;;:::i;10968:168::-;11041:9;;;11072;;11089:15;;;11083:22;;11069:37;11059:71;;11110:18;;:::i;11495:722::-;11545:3;11586:5;11580:12;11615:36;11641:9;11615:36;:::i;:::-;11670:1;11687:18;;;11714:133;;;;11861:1;11856:355;;;;11680:531;;11714:133;-1:-1:-1;;11747:24:1;;11735:37;;11820:14;;11813:22;11801:35;;11792:45;;;-1:-1:-1;11714:133:1;;11856:355;11887:5;11884:1;11877:16;11916:4;11961:2;11958:1;11948:16;11986:1;12000:165;12014:6;12011:1;12008:13;12000:165;;;12092:14;;12079:11;;;12072:35;12135:16;;;;12029:10;;12000:165;;;12004:3;;;12194:6;12189:3;12185:16;12178:23;;11680:531;;;;;11495:722;;;;:::o;12222:469::-;12443:3;12471:38;12505:3;12497:6;12471:38;:::i;:::-;12538:6;12532:13;12554:65;12612:6;12608:2;12601:4;12593:6;12589:17;12554:65;:::i;:::-;12635:50;12677:6;12673:2;12669:15;12661:6;12635:50;:::i;:::-;12628:57;12222:469;-1:-1:-1;;;;;;;12222:469:1:o;13412:245::-;13479:6;13532:2;13520:9;13511:7;13507:23;13503:32;13500:52;;;13548:1;13545;13538:12;13500:52;13580:9;13574:16;13599:28;13621:5;13599:28;:::i;14023:489::-;-1:-1:-1;;;;;14292:15:1;;;14274:34;;14344:15;;14339:2;14324:18;;14317:43;14391:2;14376:18;;14369:34;;;14439:3;14434:2;14419:18;;14412:31;;;14217:4;;14460:46;;14486:19;;14478:6;14460:46;:::i;:::-;14452:54;14023:489;-1:-1:-1;;;;;;14023:489:1:o;14517:249::-;14586:6;14639:2;14627:9;14618:7;14614:23;14610:32;14607:52;;;14655:1;14652;14645:12;14607:52;14687:9;14681:16;14706:30;14730:5;14706:30;:::i

Swarm Source

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