ETH Price: $3,362.61 (-0.63%)
Gas: 1 Gwei

Token

GOLD MIXTAPE (GMIX)
 

Overview

Max Total Supply

81 GMIX

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
illuminaticongo.eth
Balance
1 GMIX
0x857D5884FC42CEa646bD62Cc84F806aEB9a2AE6F
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:
BITSHADOWZ

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.4;





contract BITSHADOWZ is ERC721A, ERC2981, Ownable {
 
    // Collection
    uint256 public maxSupply = 100;
    string public contractURI;
    string public baseURI;
    
    struct holder {
        address wallet;
        uint numTapes;
    }

    //Royalty
    address public royaltyAddress;
    uint public royalty = 750;
 
    constructor() ERC721A("GOLD MIXTAPE", "GMIX"){  
        royaltyAddress = payable(msg.sender);   
    }

    //Mint
    function mint(holder[] memory holders) external onlyOwner {
        for(uint i = 0; i < holders.length; i++){
            require(totalSupply() < maxSupply, "no supply");         
            _safeMint(holders[i].wallet, holders[i].numTapes);
        }
    }

    function _startTokenId() internal pure override(ERC721A) returns (uint256) {
        return 1;
    }

    //Metadata
    function setContractURI(string calldata _contractURI) external onlyOwner {
        contractURI = _contractURI;
    }

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

    function tokenURI(uint tokenId) public view override(ERC721A) returns (string memory) {
        require(tokenId != 0 && tokenId <= totalSupply(), "Token doesn't exist");
          return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"));
    }

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

    //Royalties
    function royaltyInfo(uint, uint _salePrice) public view override returns (address receiver, uint royaltyAmount) {
        return (royaltyAddress, (_salePrice * royalty) / 10000);
    }

    function setRoyalty(uint16 _royalty) external onlyOwner {
        require(_royalty <= 750, "Royalty capped at 7.5%");
        royalty = _royalty;
    }

    function setRoyaltyAddress(address _royaltyAddress) external onlyOwner {
        royaltyAddress = _royaltyAddress;
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return ERC721A.supportsInterface(interfaceId) || ERC2981.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"numTapes","type":"uint256"}],"internalType":"struct BITSHADOWZ.holder[]","name":"holders","type":"tuple[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526064600b556102ee600f553480156200001c57600080fd5b506040518060400160405280600c81526020017f474f4c44204d49585441504500000000000000000000000000000000000000008152506040518060400160405280600481526020017f474d4958000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000a192919062000211565b508060039080519060200190620000ba92919062000211565b50620000cb6200013a60201b60201c565b6000819055505050620000f3620000e76200014360201b60201c565b6200014b60201b60201c565b33600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000326565b60006001905090565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021f90620002c1565b90600052602060002090601f0160209004810192826200024357600085556200028f565b82601f106200025e57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028e57825182559160200191906001019062000271565b5b5090506200029e9190620002a2565b5090565b5b80821115620002bd576000816000905550600101620002a3565b5090565b60006002820490506001821680620002da57607f821691505b60208210811415620002f157620002f0620002f7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61319580620003366000396000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063ad2f852a1161008a578063d5abeb0111610064578063d5abeb01146105d5578063e8a3d48514610600578063e985e9c51461062b578063f2fde38b14610668576101b7565b8063ad2f852a14610551578063b88d4fde1461057c578063c87b56dd14610598576101b7565b80638da5cb5b116100c65780638da5cb5b146104a9578063938e3d7b146104d457806395d89b41146104fd578063a22cb46514610528576101b7565b806370a082311461042c578063715018a6146104695780637e0b420114610480576101b7565b806329ee566c1161015957806342842e0e1161013357806342842e0e1461037f57806355f804b31461039b5780636352211e146103c45780636c0360eb14610401576101b7565b806329ee566c146102ed5780632a55205a1461031857806336e79a5a14610356576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306d254da146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612608565b610691565b6040516101f09190612a29565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906123fc565b6106b3565b005b34801561022e57600080fd5b50610237610773565b6040516102449190612a44565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f91906126dc565b610805565b6040516102819190612999565b60405180910390f35b6102a4600480360381019061029f919061257f565b610884565b005b3480156102b257600080fd5b506102bb6109c8565b6040516102c89190612b06565b60405180910390f35b6102eb60048036038101906102e69190612469565b6109df565b005b3480156102f957600080fd5b50610302610d04565b60405161030f9190612b06565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612709565b610d0a565b60405161034d929190612a00565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906126af565b610d56565b005b61039960048036038101906103949190612469565b610e29565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190612662565b610e49565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906126dc565b610edb565b6040516103f89190612999565b60405180910390f35b34801561040d57600080fd5b50610416610eed565b6040516104239190612a44565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906123fc565b610f7b565b6040516104609190612b06565b60405180910390f35b34801561047557600080fd5b5061047e611034565b005b34801561048c57600080fd5b506104a760048036038101906104a291906125bf565b6110bc565b005b3480156104b557600080fd5b506104be6111ec565b6040516104cb9190612999565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612662565b611216565b005b34801561050957600080fd5b506105126112a8565b60405161051f9190612a44565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a919061253f565b61133a565b005b34801561055d57600080fd5b50610566611445565b6040516105739190612999565b60405180910390f35b610596600480360381019061059191906124bc565b61146b565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906126dc565b6114de565b6040516105cc9190612a44565b60405180910390f35b3480156105e157600080fd5b506105ea611569565b6040516105f79190612b06565b60405180910390f35b34801561060c57600080fd5b5061061561156f565b6040516106229190612a44565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612429565b6115fd565b60405161065f9190612a29565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906123fc565b611691565b005b600061069c82611789565b806106ac57506106ab8261181b565b5b9050919050565b6106bb611895565b73ffffffffffffffffffffffffffffffffffffffff166106d96111ec565b73ffffffffffffffffffffffffffffffffffffffff161461072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072690612ae6565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461078290612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90612dd4565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b60006108108261189d565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088f82610edb565b90508073ffffffffffffffffffffffffffffffffffffffff166108b06118fc565b73ffffffffffffffffffffffffffffffffffffffff1614610913576108dc816108d76118fc565b6115fd565b610912576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d2611904565b6001546000540303905090565b60006109ea8261190d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a51576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5d846119db565b91509150610a738187610a6e6118fc565b611a02565b610abf57610a8886610a836118fc565b6115fd565b610abe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b338686866001611a46565b8015610b3e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0c85610be8888887611a4c565b7c020000000000000000000000000000000000000000000000000000000017611a74565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c94576000600185019050600060046000838152602001908152602001600020541415610c92576000548114610c91578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cfc8686866001611a9f565b505050505050565b600f5481565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600f5485610d419190612c82565b610d4b9190612c51565b915091509250929050565b610d5e611895565b73ffffffffffffffffffffffffffffffffffffffff16610d7c6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612ae6565b60405180910390fd5b6102ee8161ffff161115610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290612ac6565b60405180910390fd5b8061ffff16600f8190555050565b610e448383836040518060200160405280600081525061146b565b505050565b610e51611895565b73ffffffffffffffffffffffffffffffffffffffff16610e6f6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612ae6565b60405180910390fd5b8181600d9190610ed6929190612127565b505050565b6000610ee68261190d565b9050919050565b600d8054610efa90612dd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2690612dd4565b8015610f735780601f10610f4857610100808354040283529160200191610f73565b820191906000526020600020905b815481529060010190602001808311610f5657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61103c611895565b73ffffffffffffffffffffffffffffffffffffffff1661105a6111ec565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612ae6565b60405180910390fd5b6110ba6000611aa5565b565b6110c4611895565b73ffffffffffffffffffffffffffffffffffffffff166110e26111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612ae6565b60405180910390fd5b60005b81518110156111e857600b5461114f6109c8565b1061118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690612a86565b60405180910390fd5b6111d58282815181106111a5576111a4612f3e565b5b6020026020010151600001518383815181106111c4576111c3612f3e565b5b602002602001015160200151611b6b565b80806111e090612e37565b91505061113b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611895565b73ffffffffffffffffffffffffffffffffffffffff1661123c6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612ae6565b60405180910390fd5b8181600c91906112a3929190612127565b505050565b6060600380546112b790612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390612dd4565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b5050505050905090565b80600760006113476118fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f46118fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190612a29565b60405180910390a35050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114768484846109df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114d8576114a184848484611b89565b6114d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141580156114f857506114f46109c8565b8211155b611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90612a66565b60405180910390fd5b600d61154283611ce9565b60405160200161155392919061296a565b6040516020818303038152906040529050919050565b600b5481565b600c805461157c90612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546115a890612dd4565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611699611895565b73ffffffffffffffffffffffffffffffffffffffff166116b76111ec565b73ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490612ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612aa6565b60405180910390fd5b61178681611aa5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188e575061188d82611e4a565b5b9050919050565b600033905090565b6000816118a8611904565b111580156118b7575060005482105b80156118f5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061191c611904565b116119a4576000548110156119a35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119a1575b600081141561199757600460008360019003935083815260200190815260200160002054905061196c565b80925050506119d6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a63868684611eb4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b85828260405180602001604052806000815250611ebd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611baf6118fc565b8786866040518563ffffffff1660e01b8152600401611bd194939291906129b4565b602060405180830381600087803b158015611beb57600080fd5b505af1925050508015611c1c57506040513d601f19601f82011682018060405250810190611c199190612635565b60015b611c96573d8060008114611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b50600081511415611c8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d31576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e45565b600082905060005b60008214611d63578080611d4c90612e37565b915050600a82611d5c9190612c51565b9150611d39565b60008167ffffffffffffffff811115611d7f57611d7e612f6d565b5b6040519080825280601f01601f191660200182016040528015611db15781602001600182028036833780820191505090505b5090505b60008514611e3e57600182611dca9190612cdc565b9150600a85611dd99190612e80565b6030611de59190612bfb565b60f81b818381518110611dfb57611dfa612f3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e379190612c51565b9450611db5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611ec78383611f5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5557600080549050600083820390505b611f076000868380600101945086611b89565b611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef4578160005414611f5257600080fd5b50505b505050565b6000805490506000821415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000848385611a46565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201f836120106000866000611a4c565b61201985612117565b17611a74565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612085565b5060008214156120fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121126000848385611a9f565b505050565b60006001821460e11b9050919050565b82805461213390612dd4565b90600052602060002090601f016020900481019282612155576000855561219c565b82601f1061216e57803560ff191683800117855561219c565b8280016001018555821561219c579182015b8281111561219b578235825591602001919060010190612180565b5b5090506121a991906121ad565b5090565b5b808211156121c65760008160009055506001016121ae565b5090565b60006121dd6121d884612b46565b612b21565b90508083825260208201905082856040860282011115612200576121ff612fab565b5b60005b8581101561223057816122168882612382565b845260208401935060408301925050600181019050612203565b5050509392505050565b600061224d61224884612b72565b612b21565b90508281526020810184848401111561226957612268612fb0565b5b612274848285612d92565b509392505050565b60008135905061228b816130ec565b92915050565b600082601f8301126122a6576122a5612fa1565b5b81356122b68482602086016121ca565b91505092915050565b6000813590506122ce81613103565b92915050565b6000813590506122e38161311a565b92915050565b6000815190506122f88161311a565b92915050565b600082601f83011261231357612312612fa1565b5b813561232384826020860161223a565b91505092915050565b60008083601f84011261234257612341612fa1565b5b8235905067ffffffffffffffff81111561235f5761235e612f9c565b5b60208301915083600182028301111561237b5761237a612fab565b5b9250929050565b60006040828403121561239857612397612fa6565b5b6123a26040612b21565b905060006123b28482850161227c565b60008301525060206123c6848285016123e7565b60208301525092915050565b6000813590506123e181613131565b92915050565b6000813590506123f681613148565b92915050565b60006020828403121561241257612411612fba565b5b60006124208482850161227c565b91505092915050565b600080604083850312156124405761243f612fba565b5b600061244e8582860161227c565b925050602061245f8582860161227c565b9150509250929050565b60008060006060848603121561248257612481612fba565b5b60006124908682870161227c565b93505060206124a18682870161227c565b92505060406124b2868287016123e7565b9150509250925092565b600080600080608085870312156124d6576124d5612fba565b5b60006124e48782880161227c565b94505060206124f58782880161227c565b9350506040612506878288016123e7565b925050606085013567ffffffffffffffff81111561252757612526612fb5565b5b612533878288016122fe565b91505092959194509250565b6000806040838503121561255657612555612fba565b5b60006125648582860161227c565b9250506020612575858286016122bf565b9150509250929050565b6000806040838503121561259657612595612fba565b5b60006125a48582860161227c565b92505060206125b5858286016123e7565b9150509250929050565b6000602082840312156125d5576125d4612fba565b5b600082013567ffffffffffffffff8111156125f3576125f2612fb5565b5b6125ff84828501612291565b91505092915050565b60006020828403121561261e5761261d612fba565b5b600061262c848285016122d4565b91505092915050565b60006020828403121561264b5761264a612fba565b5b6000612659848285016122e9565b91505092915050565b6000806020838503121561267957612678612fba565b5b600083013567ffffffffffffffff81111561269757612696612fb5565b5b6126a38582860161232c565b92509250509250929050565b6000602082840312156126c5576126c4612fba565b5b60006126d3848285016123d2565b91505092915050565b6000602082840312156126f2576126f1612fba565b5b6000612700848285016123e7565b91505092915050565b600080604083850312156127205761271f612fba565b5b600061272e858286016123e7565b925050602061273f858286016123e7565b9150509250929050565b61275281612d10565b82525050565b61276181612d22565b82525050565b600061277282612bb8565b61277c8185612bce565b935061278c818560208601612da1565b61279581612fbf565b840191505092915050565b60006127ab82612bc3565b6127b58185612bdf565b93506127c5818560208601612da1565b6127ce81612fbf565b840191505092915050565b60006127e482612bc3565b6127ee8185612bf0565b93506127fe818560208601612da1565b80840191505092915050565b6000815461281781612dd4565b6128218186612bf0565b9450600182166000811461283c576001811461284d57612880565b60ff19831686528186019350612880565b61285685612ba3565b60005b8381101561287857815481890152600182019150602081019050612859565b838801955050505b50505092915050565b6000612896601383612bdf565b91506128a182612fd0565b602082019050919050565b60006128b9600983612bdf565b91506128c482612ff9565b602082019050919050565b60006128dc602683612bdf565b91506128e782613022565b604082019050919050565b60006128ff601683612bdf565b915061290a82613071565b602082019050919050565b6000612922600583612bf0565b915061292d8261309a565b600582019050919050565b6000612945602083612bdf565b9150612950826130c3565b602082019050919050565b61296481612d88565b82525050565b6000612976828561280a565b915061298282846127d9565b915061298d82612915565b91508190509392505050565b60006020820190506129ae6000830184612749565b92915050565b60006080820190506129c96000830187612749565b6129d66020830186612749565b6129e3604083018561295b565b81810360608301526129f58184612767565b905095945050505050565b6000604082019050612a156000830185612749565b612a22602083018461295b565b9392505050565b6000602082019050612a3e6000830184612758565b92915050565b60006020820190508181036000830152612a5e81846127a0565b905092915050565b60006020820190508181036000830152612a7f81612889565b9050919050565b60006020820190508181036000830152612a9f816128ac565b9050919050565b60006020820190508181036000830152612abf816128cf565b9050919050565b60006020820190508181036000830152612adf816128f2565b9050919050565b60006020820190508181036000830152612aff81612938565b9050919050565b6000602082019050612b1b600083018461295b565b92915050565b6000612b2b612b3c565b9050612b378282612e06565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6157612b60612f6d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612b8d57612b8c612f6d565b5b612b9682612fbf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0682612d88565b9150612c1183612d88565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4657612c45612eb1565b5b828201905092915050565b6000612c5c82612d88565b9150612c6783612d88565b925082612c7757612c76612ee0565b5b828204905092915050565b6000612c8d82612d88565b9150612c9883612d88565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd157612cd0612eb1565b5b828202905092915050565b6000612ce782612d88565b9150612cf283612d88565b925082821015612d0557612d04612eb1565b5b828203905092915050565b6000612d1b82612d68565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dbf578082015181840152602081019050612da4565b83811115612dce576000848401525b50505050565b60006002820490506001821680612dec57607f821691505b60208210811415612e0057612dff612f0f565b5b50919050565b612e0f82612fbf565b810181811067ffffffffffffffff82111715612e2e57612e2d612f6d565b5b80604052505050565b6000612e4282612d88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e7557612e74612eb1565b5b600182019050919050565b6000612e8b82612d88565b9150612e9683612d88565b925082612ea657612ea5612ee0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f6e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f526f79616c74792063617070656420617420372e352500000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6130f581612d10565b811461310057600080fd5b50565b61310c81612d22565b811461311757600080fd5b50565b61312381612d2e565b811461312e57600080fd5b50565b61313a81612d5a565b811461314557600080fd5b50565b61315181612d88565b811461315c57600080fd5b5056fea2646970667358221220f6b322fe57e311af5804cb96a495fb5ba51eef9d2cfa1d5621800f7bb68c7ade64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063ad2f852a1161008a578063d5abeb0111610064578063d5abeb01146105d5578063e8a3d48514610600578063e985e9c51461062b578063f2fde38b14610668576101b7565b8063ad2f852a14610551578063b88d4fde1461057c578063c87b56dd14610598576101b7565b80638da5cb5b116100c65780638da5cb5b146104a9578063938e3d7b146104d457806395d89b41146104fd578063a22cb46514610528576101b7565b806370a082311461042c578063715018a6146104695780637e0b420114610480576101b7565b806329ee566c1161015957806342842e0e1161013357806342842e0e1461037f57806355f804b31461039b5780636352211e146103c45780636c0360eb14610401576101b7565b806329ee566c146102ed5780632a55205a1461031857806336e79a5a14610356576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806318160ddd146102a657806323b872dd146102d1576101b7565b806301ffc9a7146101bc57806306d254da146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612608565b610691565b6040516101f09190612a29565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b91906123fc565b6106b3565b005b34801561022e57600080fd5b50610237610773565b6040516102449190612a44565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f91906126dc565b610805565b6040516102819190612999565b60405180910390f35b6102a4600480360381019061029f919061257f565b610884565b005b3480156102b257600080fd5b506102bb6109c8565b6040516102c89190612b06565b60405180910390f35b6102eb60048036038101906102e69190612469565b6109df565b005b3480156102f957600080fd5b50610302610d04565b60405161030f9190612b06565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612709565b610d0a565b60405161034d929190612a00565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906126af565b610d56565b005b61039960048036038101906103949190612469565b610e29565b005b3480156103a757600080fd5b506103c260048036038101906103bd9190612662565b610e49565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906126dc565b610edb565b6040516103f89190612999565b60405180910390f35b34801561040d57600080fd5b50610416610eed565b6040516104239190612a44565b60405180910390f35b34801561043857600080fd5b50610453600480360381019061044e91906123fc565b610f7b565b6040516104609190612b06565b60405180910390f35b34801561047557600080fd5b5061047e611034565b005b34801561048c57600080fd5b506104a760048036038101906104a291906125bf565b6110bc565b005b3480156104b557600080fd5b506104be6111ec565b6040516104cb9190612999565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190612662565b611216565b005b34801561050957600080fd5b506105126112a8565b60405161051f9190612a44565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a919061253f565b61133a565b005b34801561055d57600080fd5b50610566611445565b6040516105739190612999565b60405180910390f35b610596600480360381019061059191906124bc565b61146b565b005b3480156105a457600080fd5b506105bf60048036038101906105ba91906126dc565b6114de565b6040516105cc9190612a44565b60405180910390f35b3480156105e157600080fd5b506105ea611569565b6040516105f79190612b06565b60405180910390f35b34801561060c57600080fd5b5061061561156f565b6040516106229190612a44565b60405180910390f35b34801561063757600080fd5b50610652600480360381019061064d9190612429565b6115fd565b60405161065f9190612a29565b60405180910390f35b34801561067457600080fd5b5061068f600480360381019061068a91906123fc565b611691565b005b600061069c82611789565b806106ac57506106ab8261181b565b5b9050919050565b6106bb611895565b73ffffffffffffffffffffffffffffffffffffffff166106d96111ec565b73ffffffffffffffffffffffffffffffffffffffff161461072f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072690612ae6565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60606002805461078290612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90612dd4565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b60006108108261189d565b610846576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088f82610edb565b90508073ffffffffffffffffffffffffffffffffffffffff166108b06118fc565b73ffffffffffffffffffffffffffffffffffffffff1614610913576108dc816108d76118fc565b6115fd565b610912576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109d2611904565b6001546000540303905090565b60006109ea8261190d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a51576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5d846119db565b91509150610a738187610a6e6118fc565b611a02565b610abf57610a8886610a836118fc565b6115fd565b610abe576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b338686866001611a46565b8015610b3e57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0c85610be8888887611a4c565b7c020000000000000000000000000000000000000000000000000000000017611a74565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c94576000600185019050600060046000838152602001908152602001600020541415610c92576000548114610c91578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cfc8686866001611a9f565b505050505050565b600f5481565b600080600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600f5485610d419190612c82565b610d4b9190612c51565b915091509250929050565b610d5e611895565b73ffffffffffffffffffffffffffffffffffffffff16610d7c6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc990612ae6565b60405180910390fd5b6102ee8161ffff161115610e1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1290612ac6565b60405180910390fd5b8061ffff16600f8190555050565b610e448383836040518060200160405280600081525061146b565b505050565b610e51611895565b73ffffffffffffffffffffffffffffffffffffffff16610e6f6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614610ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebc90612ae6565b60405180910390fd5b8181600d9190610ed6929190612127565b505050565b6000610ee68261190d565b9050919050565b600d8054610efa90612dd4565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2690612dd4565b8015610f735780601f10610f4857610100808354040283529160200191610f73565b820191906000526020600020905b815481529060010190602001808311610f5657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61103c611895565b73ffffffffffffffffffffffffffffffffffffffff1661105a6111ec565b73ffffffffffffffffffffffffffffffffffffffff16146110b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a790612ae6565b60405180910390fd5b6110ba6000611aa5565b565b6110c4611895565b73ffffffffffffffffffffffffffffffffffffffff166110e26111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f90612ae6565b60405180910390fd5b60005b81518110156111e857600b5461114f6109c8565b1061118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690612a86565b60405180910390fd5b6111d58282815181106111a5576111a4612f3e565b5b6020026020010151600001518383815181106111c4576111c3612f3e565b5b602002602001015160200151611b6b565b80806111e090612e37565b91505061113b565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61121e611895565b73ffffffffffffffffffffffffffffffffffffffff1661123c6111ec565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990612ae6565b60405180910390fd5b8181600c91906112a3929190612127565b505050565b6060600380546112b790612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546112e390612dd4565b80156113305780601f1061130557610100808354040283529160200191611330565b820191906000526020600020905b81548152906001019060200180831161131357829003601f168201915b5050505050905090565b80600760006113476118fc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113f46118fc565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114399190612a29565b60405180910390a35050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114768484846109df565b60008373ffffffffffffffffffffffffffffffffffffffff163b146114d8576114a184848484611b89565b6114d7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600082141580156114f857506114f46109c8565b8211155b611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90612a66565b60405180910390fd5b600d61154283611ce9565b60405160200161155392919061296a565b6040516020818303038152906040529050919050565b600b5481565b600c805461157c90612dd4565b80601f01602080910402602001604051908101604052809291908181526020018280546115a890612dd4565b80156115f55780601f106115ca576101008083540402835291602001916115f5565b820191906000526020600020905b8154815290600101906020018083116115d857829003601f168201915b505050505081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611699611895565b73ffffffffffffffffffffffffffffffffffffffff166116b76111ec565b73ffffffffffffffffffffffffffffffffffffffff161461170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490612ae6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612aa6565b60405180910390fd5b61178681611aa5565b50565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806117e457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806118145750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061188e575061188d82611e4a565b5b9050919050565b600033905090565b6000816118a8611904565b111580156118b7575060005482105b80156118f5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061191c611904565b116119a4576000548110156119a35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119a1575b600081141561199757600460008360019003935083815260200190815260200160002054905061196c565b80925050506119d6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a63868684611eb4565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b85828260405180602001604052806000815250611ebd565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611baf6118fc565b8786866040518563ffffffff1660e01b8152600401611bd194939291906129b4565b602060405180830381600087803b158015611beb57600080fd5b505af1925050508015611c1c57506040513d601f19601f82011682018060405250810190611c199190612635565b60015b611c96573d8060008114611c4c576040519150601f19603f3d011682016040523d82523d6000602084013e611c51565b606091505b50600081511415611c8e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611d31576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e45565b600082905060005b60008214611d63578080611d4c90612e37565b915050600a82611d5c9190612c51565b9150611d39565b60008167ffffffffffffffff811115611d7f57611d7e612f6d565b5b6040519080825280601f01601f191660200182016040528015611db15781602001600182028036833780820191505090505b5090505b60008514611e3e57600182611dca9190612cdc565b9150600a85611dd99190612e80565b6030611de59190612bfb565b60f81b818381518110611dfb57611dfa612f3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e379190612c51565b9450611db5565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60009392505050565b611ec78383611f5a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611f5557600080549050600083820390505b611f076000868380600101945086611b89565b611f3d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611ef4578160005414611f5257600080fd5b50505b505050565b6000805490506000821415611f9b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fa86000848385611a46565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061201f836120106000866000611a4c565b61201985612117565b17611a74565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146120c057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612085565b5060008214156120fc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121126000848385611a9f565b505050565b60006001821460e11b9050919050565b82805461213390612dd4565b90600052602060002090601f016020900481019282612155576000855561219c565b82601f1061216e57803560ff191683800117855561219c565b8280016001018555821561219c579182015b8281111561219b578235825591602001919060010190612180565b5b5090506121a991906121ad565b5090565b5b808211156121c65760008160009055506001016121ae565b5090565b60006121dd6121d884612b46565b612b21565b90508083825260208201905082856040860282011115612200576121ff612fab565b5b60005b8581101561223057816122168882612382565b845260208401935060408301925050600181019050612203565b5050509392505050565b600061224d61224884612b72565b612b21565b90508281526020810184848401111561226957612268612fb0565b5b612274848285612d92565b509392505050565b60008135905061228b816130ec565b92915050565b600082601f8301126122a6576122a5612fa1565b5b81356122b68482602086016121ca565b91505092915050565b6000813590506122ce81613103565b92915050565b6000813590506122e38161311a565b92915050565b6000815190506122f88161311a565b92915050565b600082601f83011261231357612312612fa1565b5b813561232384826020860161223a565b91505092915050565b60008083601f84011261234257612341612fa1565b5b8235905067ffffffffffffffff81111561235f5761235e612f9c565b5b60208301915083600182028301111561237b5761237a612fab565b5b9250929050565b60006040828403121561239857612397612fa6565b5b6123a26040612b21565b905060006123b28482850161227c565b60008301525060206123c6848285016123e7565b60208301525092915050565b6000813590506123e181613131565b92915050565b6000813590506123f681613148565b92915050565b60006020828403121561241257612411612fba565b5b60006124208482850161227c565b91505092915050565b600080604083850312156124405761243f612fba565b5b600061244e8582860161227c565b925050602061245f8582860161227c565b9150509250929050565b60008060006060848603121561248257612481612fba565b5b60006124908682870161227c565b93505060206124a18682870161227c565b92505060406124b2868287016123e7565b9150509250925092565b600080600080608085870312156124d6576124d5612fba565b5b60006124e48782880161227c565b94505060206124f58782880161227c565b9350506040612506878288016123e7565b925050606085013567ffffffffffffffff81111561252757612526612fb5565b5b612533878288016122fe565b91505092959194509250565b6000806040838503121561255657612555612fba565b5b60006125648582860161227c565b9250506020612575858286016122bf565b9150509250929050565b6000806040838503121561259657612595612fba565b5b60006125a48582860161227c565b92505060206125b5858286016123e7565b9150509250929050565b6000602082840312156125d5576125d4612fba565b5b600082013567ffffffffffffffff8111156125f3576125f2612fb5565b5b6125ff84828501612291565b91505092915050565b60006020828403121561261e5761261d612fba565b5b600061262c848285016122d4565b91505092915050565b60006020828403121561264b5761264a612fba565b5b6000612659848285016122e9565b91505092915050565b6000806020838503121561267957612678612fba565b5b600083013567ffffffffffffffff81111561269757612696612fb5565b5b6126a38582860161232c565b92509250509250929050565b6000602082840312156126c5576126c4612fba565b5b60006126d3848285016123d2565b91505092915050565b6000602082840312156126f2576126f1612fba565b5b6000612700848285016123e7565b91505092915050565b600080604083850312156127205761271f612fba565b5b600061272e858286016123e7565b925050602061273f858286016123e7565b9150509250929050565b61275281612d10565b82525050565b61276181612d22565b82525050565b600061277282612bb8565b61277c8185612bce565b935061278c818560208601612da1565b61279581612fbf565b840191505092915050565b60006127ab82612bc3565b6127b58185612bdf565b93506127c5818560208601612da1565b6127ce81612fbf565b840191505092915050565b60006127e482612bc3565b6127ee8185612bf0565b93506127fe818560208601612da1565b80840191505092915050565b6000815461281781612dd4565b6128218186612bf0565b9450600182166000811461283c576001811461284d57612880565b60ff19831686528186019350612880565b61285685612ba3565b60005b8381101561287857815481890152600182019150602081019050612859565b838801955050505b50505092915050565b6000612896601383612bdf565b91506128a182612fd0565b602082019050919050565b60006128b9600983612bdf565b91506128c482612ff9565b602082019050919050565b60006128dc602683612bdf565b91506128e782613022565b604082019050919050565b60006128ff601683612bdf565b915061290a82613071565b602082019050919050565b6000612922600583612bf0565b915061292d8261309a565b600582019050919050565b6000612945602083612bdf565b9150612950826130c3565b602082019050919050565b61296481612d88565b82525050565b6000612976828561280a565b915061298282846127d9565b915061298d82612915565b91508190509392505050565b60006020820190506129ae6000830184612749565b92915050565b60006080820190506129c96000830187612749565b6129d66020830186612749565b6129e3604083018561295b565b81810360608301526129f58184612767565b905095945050505050565b6000604082019050612a156000830185612749565b612a22602083018461295b565b9392505050565b6000602082019050612a3e6000830184612758565b92915050565b60006020820190508181036000830152612a5e81846127a0565b905092915050565b60006020820190508181036000830152612a7f81612889565b9050919050565b60006020820190508181036000830152612a9f816128ac565b9050919050565b60006020820190508181036000830152612abf816128cf565b9050919050565b60006020820190508181036000830152612adf816128f2565b9050919050565b60006020820190508181036000830152612aff81612938565b9050919050565b6000602082019050612b1b600083018461295b565b92915050565b6000612b2b612b3c565b9050612b378282612e06565b919050565b6000604051905090565b600067ffffffffffffffff821115612b6157612b60612f6d565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612b8d57612b8c612f6d565b5b612b9682612fbf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c0682612d88565b9150612c1183612d88565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c4657612c45612eb1565b5b828201905092915050565b6000612c5c82612d88565b9150612c6783612d88565b925082612c7757612c76612ee0565b5b828204905092915050565b6000612c8d82612d88565b9150612c9883612d88565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612cd157612cd0612eb1565b5b828202905092915050565b6000612ce782612d88565b9150612cf283612d88565b925082821015612d0557612d04612eb1565b5b828203905092915050565b6000612d1b82612d68565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612dbf578082015181840152602081019050612da4565b83811115612dce576000848401525b50505050565b60006002820490506001821680612dec57607f821691505b60208210811415612e0057612dff612f0f565b5b50919050565b612e0f82612fbf565b810181811067ffffffffffffffff82111715612e2e57612e2d612f6d565b5b80604052505050565b6000612e4282612d88565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e7557612e74612eb1565b5b600182019050919050565b6000612e8b82612d88565b9150612e9683612d88565b925082612ea657612ea5612ee0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f546f6b656e20646f65736e277420657869737400000000000000000000000000600082015250565b7f6e6f20737570706c790000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f526f79616c74792063617070656420617420372e352500000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6130f581612d10565b811461310057600080fd5b50565b61310c81612d22565b811461311757600080fd5b50565b61312381612d2e565b811461312e57600080fd5b50565b61313a81612d5a565b811461314557600080fd5b50565b61315181612d88565b811461315c57600080fd5b5056fea2646970667358221220f6b322fe57e311af5804cb96a495fb5ba51eef9d2cfa1d5621800f7bb68c7ade64736f6c63430008070033

Deployed Bytecode Sourcemap

64056:2217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66055:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65925:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31850:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38341:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37774:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27601:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41980:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64367:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65569:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;65763:154;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44901:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65050:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33243:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64203:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28785:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11727:103;;;;;;;;;;;;;:::i;:::-;;64527:263;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11076:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64924:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32026:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38899:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64331:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45692:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65170:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64134:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64171:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39290:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11985:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66055:215;66158:4;66182:38;66208:11;66182:25;:38::i;:::-;:80;;;;66224:38;66250:11;66224:25;:38::i;:::-;66182:80;66175:87;;66055:215;;;:::o;65925:122::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66024:15:::1;66007:14;;:32;;;;;;;;;;;;;;;;;;65925:122:::0;:::o;31850:100::-;31904:13;31937:5;31930:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31850:100;:::o;38341:218::-;38417:7;38442:16;38450:7;38442;:16::i;:::-;38437:64;;38467:34;;;;;;;;;;;;;;38437:64;38521:15;:24;38537:7;38521:24;;;;;;;;;;;:30;;;;;;;;;;;;38514:37;;38341:218;;;:::o;37774:408::-;37863:13;37879:16;37887:7;37879;:16::i;:::-;37863:32;;37935:5;37912:28;;:19;:17;:19::i;:::-;:28;;;37908:175;;37960:44;37977:5;37984:19;:17;:19::i;:::-;37960:16;:44::i;:::-;37955:128;;38032:35;;;;;;;;;;;;;;37955:128;37908:175;38128:2;38095:15;:24;38111:7;38095:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38166:7;38162:2;38146:28;;38155:5;38146:28;;;;;;;;;;;;37852:330;37774:408;;:::o;27601:323::-;27662:7;27890:15;:13;:15::i;:::-;27875:12;;27859:13;;:28;:46;27852:53;;27601:323;:::o;41980:2825::-;42122:27;42152;42171:7;42152:18;:27::i;:::-;42122:57;;42237:4;42196:45;;42212:19;42196:45;;;42192:86;;42250:28;;;;;;;;;;;;;;42192:86;42292:27;42321:23;42348:35;42375:7;42348:26;:35::i;:::-;42291:92;;;;42483:68;42508:15;42525:4;42531:19;:17;:19::i;:::-;42483:24;:68::i;:::-;42478:180;;42571:43;42588:4;42594:19;:17;:19::i;:::-;42571:16;:43::i;:::-;42566:92;;42623:35;;;;;;;;;;;;;;42566:92;42478:180;42689:1;42675:16;;:2;:16;;;42671:52;;;42700:23;;;;;;;;;;;;;;42671:52;42736:43;42758:4;42764:2;42768:7;42777:1;42736:21;:43::i;:::-;42872:15;42869:160;;;43012:1;42991:19;42984:30;42869:160;43409:18;:24;43428:4;43409:24;;;;;;;;;;;;;;;;43407:26;;;;;;;;;;;;43478:18;:22;43497:2;43478:22;;;;;;;;;;;;;;;;43476:24;;;;;;;;;;;43800:146;43837:2;43886:45;43901:4;43907:2;43911:19;43886:14;:45::i;:::-;24000:8;43858:73;43800:18;:146::i;:::-;43771:17;:26;43789:7;43771:26;;;;;;;;;;;:175;;;;44117:1;24000:8;44066:19;:47;:52;44062:627;;;44139:19;44171:1;44161:7;:11;44139:33;;44328:1;44294:17;:30;44312:11;44294:30;;;;;;;;;;;;:35;44290:384;;;44432:13;;44417:11;:28;44413:242;;44612:19;44579:17;:30;44597:11;44579:30;;;;;;;;;;;:52;;;;44413:242;44290:384;44120:569;44062:627;44736:7;44732:2;44717:27;;44726:4;44717:27;;;;;;;;;;;;44755:42;44776:4;44782:2;44786:7;44795:1;44755:20;:42::i;:::-;42111:2694;;;41980:2825;;;:::o;64367:25::-;;;;:::o;65569:186::-;65643:16;65661:18;65700:14;;;;;;;;;;;65741:5;65730:7;;65717:10;:20;;;;:::i;:::-;65716:30;;;;:::i;:::-;65692:55;;;;65569:186;;;;;:::o;65763:154::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65850:3:::1;65838:8;:15;;;;65830:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;65901:8;65891:18;;:7;:18;;;;65763:154:::0;:::o;44901:193::-;45047:39;45064:4;45070:2;45074:7;45047:39;;;;;;;;;;;;:16;:39::i;:::-;44901:193;;;:::o;65050:112::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65141:13:::1;;65131:7;:23;;;;;;;:::i;:::-;;65050:112:::0;;:::o;33243:152::-;33315:7;33358:27;33377:7;33358:18;:27::i;:::-;33335:52;;33243:152;;;:::o;64203:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28785:233::-;28857:7;28898:1;28881:19;;:5;:19;;;28877:60;;;28909:28;;;;;;;;;;;;;;28877:60;22944:13;28955:18;:25;28974:5;28955:25;;;;;;;;;;;;;;;;:55;28948:62;;28785:233;;;:::o;11727:103::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11792:30:::1;11819:1;11792:18;:30::i;:::-;11727:103::o:0;64527:263::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64600:6:::1;64596:187;64616:7;:14;64612:1;:18;64596:187;;;64675:9;;64659:13;:11;:13::i;:::-;:25;64651:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;64722:49;64732:7;64740:1;64732:10;;;;;;;;:::i;:::-;;;;;;;;:17;;;64751:7;64759:1;64751:10;;;;;;;;:::i;:::-;;;;;;;;:19;;;64722:9;:49::i;:::-;64632:3;;;;;:::i;:::-;;;;64596:187;;;;64527:263:::0;:::o;11076:87::-;11122:7;11149:6;;;;;;;;;;;11142:13;;11076:87;:::o;64924:118::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65022:12:::1;;65008:11;:26;;;;;;;:::i;:::-;;64924:118:::0;;:::o;32026:104::-;32082:13;32115:7;32108:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32026:104;:::o;38899:234::-;39046:8;38994:18;:39;39013:19;:17;:19::i;:::-;38994:39;;;;;;;;;;;;;;;:49;39034:8;38994:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;39106:8;39070:55;;39085:19;:17;:19::i;:::-;39070:55;;;39116:8;39070:55;;;;;;:::i;:::-;;;;;;;;38899:234;;:::o;64331:29::-;;;;;;;;;;;;;:::o;45692:407::-;45867:31;45880:4;45886:2;45890:7;45867:12;:31::i;:::-;45931:1;45913:2;:14;;;:19;45909:183;;45952:56;45983:4;45989:2;45993:7;46002:5;45952:30;:56::i;:::-;45947:145;;46036:40;;;;;;;;;;;;;;45947:145;45909:183;45692:407;;;;:::o;65170:266::-;65241:13;65286:1;65275:7;:12;;:40;;;;;65302:13;:11;:13::i;:::-;65291:7;:24;;65275:40;65267:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;65383:7;65392:25;65409:7;65392:16;:25::i;:::-;65366:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65352:76;;65170:266;;;:::o;64134:30::-;;;;:::o;64171:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39290:164::-;39387:4;39411:18;:25;39430:5;39411:25;;;;;;;;;;;;;;;:35;39437:8;39411:35;;;;;;;;;;;;;;;;;;;;;;;;;39404:42;;39290:164;;;;:::o;11985:201::-;11307:12;:10;:12::i;:::-;11296:23;;:7;:5;:7::i;:::-;:23;;;11288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12094:1:::1;12074:22;;:8;:22;;;;12066:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12150:28;12169:8;12150:18;:28::i;:::-;11985:201:::0;:::o;30948:639::-;31033:4;31372:10;31357:25;;:11;:25;;;;:102;;;;31449:10;31434:25;;:11;:25;;;;31357:102;:179;;;;31526:10;31511:25;;:11;:25;;;;31357:179;31337:199;;30948:639;;;:::o;4230:215::-;4332:4;4371:26;4356:41;;;:11;:41;;;;:81;;;;4401:36;4425:11;4401:23;:36::i;:::-;4356:81;4349:88;;4230:215;;;:::o;9800:98::-;9853:7;9880:10;9873:17;;9800:98;:::o;39712:282::-;39777:4;39833:7;39814:15;:13;:15::i;:::-;:26;;:66;;;;;39867:13;;39857:7;:23;39814:66;:153;;;;;39966:1;23720:8;39918:17;:26;39936:7;39918:26;;;;;;;;;;;;:44;:49;39814:153;39794:173;;39712:282;;;:::o;62020:105::-;62080:7;62107:10;62100:17;;62020:105;:::o;64798:102::-;64864:7;64891:1;64884:8;;64798:102;:::o;34398:1275::-;34465:7;34485:12;34500:7;34485:22;;34568:4;34549:15;:13;:15::i;:::-;:23;34545:1061;;34602:13;;34595:4;:20;34591:1015;;;34640:14;34657:17;:23;34675:4;34657:23;;;;;;;;;;;;34640:40;;34774:1;23720:8;34746:6;:24;:29;34742:845;;;35411:113;35428:1;35418:6;:11;35411:113;;;35471:17;:25;35489:6;;;;;;;35471:25;;;;;;;;;;;;35462:34;;35411:113;;;35557:6;35550:13;;;;;;34742:845;34617:989;34591:1015;34545:1061;35634:31;;;;;;;;;;;;;;34398:1275;;;;:::o;40875:485::-;40977:27;41006:23;41047:38;41088:15;:24;41104:7;41088:24;;;;;;;;;;;41047:65;;41265:18;41242:41;;41322:19;41316:26;41297:45;;41227:126;40875:485;;;:::o;40103:659::-;40252:11;40417:16;40410:5;40406:28;40397:37;;40577:16;40566:9;40562:32;40549:45;;40727:15;40716:9;40713:30;40705:5;40694:9;40691:20;40688:56;40678:66;;40103:659;;;;;:::o;46761:159::-;;;;;:::o;61329:311::-;61464:7;61484:16;24124:3;61510:19;:41;;61484:68;;24124:3;61578:31;61589:4;61595:2;61599:9;61578:10;:31::i;:::-;61570:40;;:62;;61563:69;;;61329:311;;;;;:::o;36221:450::-;36301:14;36469:16;36462:5;36458:28;36449:37;;36646:5;36632:11;36607:23;36603:41;36600:52;36593:5;36590:63;36580:73;;36221:450;;;;:::o;47585:158::-;;;;;:::o;12346:191::-;12420:16;12439:6;;;;;;;;;;;12420:25;;12465:8;12456:6;;:17;;;;;;;;;;;;;;;;;;12520:8;12489:40;;12510:8;12489:40;;;;;;;;;;;;12409:128;12346:191;:::o;55852:112::-;55929:27;55939:2;55943:8;55929:27;;;;;;;;;;;;:9;:27::i;:::-;55852:112;;:::o;48183:716::-;48346:4;48392:2;48367:45;;;48413:19;:17;:19::i;:::-;48434:4;48440:7;48449:5;48367:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48363:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48667:1;48650:6;:13;:18;48646:235;;;48696:40;;;;;;;;;;;;;;48646:235;48839:6;48833:13;48824:6;48820:2;48816:15;48809:38;48363:529;48536:54;;;48526:64;;;:6;:64;;;;48519:71;;;48183:716;;;;;;:::o;7362:723::-;7418:13;7648:1;7639:5;:10;7635:53;;;7666:10;;;;;;;;;;;;;;;;;;;;;7635:53;7698:12;7713:5;7698:20;;7729:14;7754:78;7769:1;7761:4;:9;7754:78;;7787:8;;;;;:::i;:::-;;;;7818:2;7810:10;;;;;:::i;:::-;;;7754:78;;;7842:19;7874:6;7864:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7842:39;;7892:154;7908:1;7899:5;:10;7892:154;;7936:1;7926:11;;;;;:::i;:::-;;;8003:2;7995:5;:10;;;;:::i;:::-;7982:2;:24;;;;:::i;:::-;7969:39;;7952:6;7959;7952:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8032:2;8023:11;;;;;:::i;:::-;;;7892:154;;;8070:6;8056:21;;;;;7362:723;;;;:::o;1782:157::-;1867:4;1906:25;1891:40;;;:11;:40;;;;1884:47;;1782:157;;;:::o;61030:147::-;61167:6;61030:147;;;;;:::o;55079:689::-;55210:19;55216:2;55220:8;55210:5;:19::i;:::-;55289:1;55271:2;:14;;;:19;55267:483;;55311:11;55325:13;;55311:27;;55357:13;55379:8;55373:3;:14;55357:30;;55406:233;55437:62;55476:1;55480:2;55484:7;;;;;;55493:5;55437:30;:62::i;:::-;55432:167;;55535:40;;;;;;;;;;;;;;55432:167;55634:3;55626:5;:11;55406:233;;55721:3;55704:13;;:20;55700:34;;55726:8;;;55700:34;55292:458;;55267:483;55079:689;;;:::o;49361:2966::-;49434:20;49457:13;;49434:36;;49497:1;49485:8;:13;49481:44;;;49507:18;;;;;;;;;;;;;;49481:44;49538:61;49568:1;49572:2;49576:12;49590:8;49538:21;:61::i;:::-;50082:1;23082:2;50052:1;:26;;50051:32;50039:8;:45;50013:18;:22;50032:2;50013:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;50361:139;50398:2;50452:33;50475:1;50479:2;50483:1;50452:14;:33::i;:::-;50419:30;50440:8;50419:20;:30::i;:::-;:66;50361:18;:139::i;:::-;50327:17;:31;50345:12;50327:31;;;;;;;;;;;:173;;;;50517:16;50548:11;50577:8;50562:12;:23;50548:37;;51098:16;51094:2;51090:25;51078:37;;51470:12;51430:8;51389:1;51327:25;51268:1;51207;51180:335;51841:1;51827:12;51823:20;51781:346;51882:3;51873:7;51870:16;51781:346;;52100:7;52090:8;52087:1;52060:25;52057:1;52054;52049:59;51935:1;51926:7;51922:15;51911:26;;51781:346;;;51785:77;52172:1;52160:8;:13;52156:45;;;52182:19;;;;;;;;;;;;;;52156:45;52234:3;52218:13;:19;;;;49787:2462;;52259:60;52288:1;52292:2;52296:12;52310:8;52259:20;:60::i;:::-;49423:2904;49361:2966;;:::o;36773:324::-;36843:14;37076:1;37066:8;37063:15;37037:24;37033:46;37023:56;;36773:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;41:794:1:-;161:5;186:105;202:88;283:6;202:88;:::i;:::-;186:105;:::i;:::-;177:114;;311:5;340:6;333:5;326:21;374:4;367:5;363:16;356:23;;400:6;450:3;442:4;434:6;430:17;425:3;421:27;418:36;415:143;;;469:79;;:::i;:::-;415:143;582:1;567:262;592:6;589:1;586:13;567:262;;;660:3;689:61;746:3;734:10;689:61;:::i;:::-;684:3;677:74;780:4;775:3;771:14;764:21;;814:4;809:3;805:14;798:21;;627:202;614:1;611;607:9;602:14;;567:262;;;571:14;167:668;;41:794;;;;;:::o;841:410::-;918:5;943:65;959:48;1000:6;959:48;:::i;:::-;943:65;:::i;:::-;934:74;;1031:6;1024:5;1017:21;1069:4;1062:5;1058:16;1107:3;1098:6;1093:3;1089:16;1086:25;1083:112;;;1114:79;;:::i;:::-;1083:112;1204:41;1238:6;1233:3;1228;1204:41;:::i;:::-;924:327;841:410;;;;;:::o;1257:139::-;1303:5;1341:6;1328:20;1319:29;;1357:33;1384:5;1357:33;:::i;:::-;1257:139;;;;:::o;1436:418::-;1531:5;1580:3;1573:4;1565:6;1561:17;1557:27;1547:122;;1588:79;;:::i;:::-;1547:122;1705:6;1692:20;1730:118;1844:3;1836:6;1829:4;1821:6;1817:17;1730:118;:::i;:::-;1721:127;;1537:317;1436:418;;;;:::o;1860:133::-;1903:5;1941:6;1928:20;1919:29;;1957:30;1981:5;1957:30;:::i;:::-;1860:133;;;;:::o;1999:137::-;2044:5;2082:6;2069:20;2060:29;;2098:32;2124:5;2098:32;:::i;:::-;1999:137;;;;:::o;2142:141::-;2198:5;2229:6;2223:13;2214:22;;2245:32;2271:5;2245:32;:::i;:::-;2142:141;;;;:::o;2302:338::-;2357:5;2406:3;2399:4;2391:6;2387:17;2383:27;2373:122;;2414:79;;:::i;:::-;2373:122;2531:6;2518:20;2556:78;2630:3;2622:6;2615:4;2607:6;2603:17;2556:78;:::i;:::-;2547:87;;2363:277;2302:338;;;;:::o;2660:553::-;2718:8;2728:6;2778:3;2771:4;2763:6;2759:17;2755:27;2745:122;;2786:79;;:::i;:::-;2745:122;2899:6;2886:20;2876:30;;2929:18;2921:6;2918:30;2915:117;;;2951:79;;:::i;:::-;2915:117;3065:4;3057:6;3053:17;3041:29;;3119:3;3111:4;3103:6;3099:17;3089:8;3085:32;3082:41;3079:128;;;3126:79;;:::i;:::-;3079:128;2660:553;;;;;:::o;3251:579::-;3324:5;3368:4;3356:9;3351:3;3347:19;3343:30;3340:117;;;3376:79;;:::i;:::-;3340:117;3475:21;3491:4;3475:21;:::i;:::-;3466:30;;3557:1;3597:49;3642:3;3633:6;3622:9;3618:22;3597:49;:::i;:::-;3590:4;3583:5;3579:16;3572:75;3506:152;3721:2;3762:49;3807:3;3798:6;3787:9;3783:22;3762:49;:::i;:::-;3755:4;3748:5;3744:16;3737:75;3668:155;3251:579;;;;:::o;3836:137::-;3881:5;3919:6;3906:20;3897:29;;3935:32;3961:5;3935:32;:::i;:::-;3836:137;;;;:::o;3979:139::-;4025:5;4063:6;4050:20;4041:29;;4079:33;4106:5;4079:33;:::i;:::-;3979:139;;;;:::o;4124:329::-;4183:6;4232:2;4220:9;4211:7;4207:23;4203:32;4200:119;;;4238:79;;:::i;:::-;4200:119;4358:1;4383:53;4428:7;4419:6;4408:9;4404:22;4383:53;:::i;:::-;4373:63;;4329:117;4124:329;;;;:::o;4459:474::-;4527:6;4535;4584:2;4572:9;4563:7;4559:23;4555:32;4552:119;;;4590:79;;:::i;:::-;4552:119;4710:1;4735:53;4780:7;4771:6;4760:9;4756:22;4735:53;:::i;:::-;4725:63;;4681:117;4837:2;4863:53;4908:7;4899:6;4888:9;4884:22;4863:53;:::i;:::-;4853:63;;4808:118;4459:474;;;;;:::o;4939:619::-;5016:6;5024;5032;5081:2;5069:9;5060:7;5056:23;5052:32;5049:119;;;5087:79;;:::i;:::-;5049:119;5207:1;5232:53;5277:7;5268:6;5257:9;5253:22;5232:53;:::i;:::-;5222:63;;5178:117;5334:2;5360:53;5405:7;5396:6;5385:9;5381:22;5360:53;:::i;:::-;5350:63;;5305:118;5462:2;5488:53;5533:7;5524:6;5513:9;5509:22;5488:53;:::i;:::-;5478:63;;5433:118;4939:619;;;;;:::o;5564:943::-;5659:6;5667;5675;5683;5732:3;5720:9;5711:7;5707:23;5703:33;5700:120;;;5739:79;;:::i;:::-;5700:120;5859:1;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5830:117;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;6114:2;6140:53;6185:7;6176:6;6165:9;6161:22;6140:53;:::i;:::-;6130:63;;6085:118;6270:2;6259:9;6255:18;6242:32;6301:18;6293:6;6290:30;6287:117;;;6323:79;;:::i;:::-;6287:117;6428:62;6482:7;6473:6;6462:9;6458:22;6428:62;:::i;:::-;6418:72;;6213:287;5564:943;;;;;;;:::o;6513:468::-;6578:6;6586;6635:2;6623:9;6614:7;6610:23;6606:32;6603:119;;;6641:79;;:::i;:::-;6603:119;6761:1;6786:53;6831:7;6822:6;6811:9;6807:22;6786:53;:::i;:::-;6776:63;;6732:117;6888:2;6914:50;6956:7;6947:6;6936:9;6932:22;6914:50;:::i;:::-;6904:60;;6859:115;6513:468;;;;;:::o;6987:474::-;7055:6;7063;7112:2;7100:9;7091:7;7087:23;7083:32;7080:119;;;7118:79;;:::i;:::-;7080:119;7238:1;7263:53;7308:7;7299:6;7288:9;7284:22;7263:53;:::i;:::-;7253:63;;7209:117;7365:2;7391:53;7436:7;7427:6;7416:9;7412:22;7391:53;:::i;:::-;7381:63;;7336:118;6987:474;;;;;:::o;7467:587::-;7575:6;7624:2;7612:9;7603:7;7599:23;7595:32;7592:119;;;7630:79;;:::i;:::-;7592:119;7778:1;7767:9;7763:17;7750:31;7808:18;7800:6;7797:30;7794:117;;;7830:79;;:::i;:::-;7794:117;7935:102;8029:7;8020:6;8009:9;8005:22;7935:102;:::i;:::-;7925:112;;7721:326;7467:587;;;;:::o;8060:327::-;8118:6;8167:2;8155:9;8146:7;8142:23;8138:32;8135:119;;;8173:79;;:::i;:::-;8135:119;8293:1;8318:52;8362:7;8353:6;8342:9;8338:22;8318:52;:::i;:::-;8308:62;;8264:116;8060:327;;;;:::o;8393:349::-;8462:6;8511:2;8499:9;8490:7;8486:23;8482:32;8479:119;;;8517:79;;:::i;:::-;8479:119;8637:1;8662:63;8717:7;8708:6;8697:9;8693:22;8662:63;:::i;:::-;8652:73;;8608:127;8393:349;;;;:::o;8748:529::-;8819:6;8827;8876:2;8864:9;8855:7;8851:23;8847:32;8844:119;;;8882:79;;:::i;:::-;8844:119;9030:1;9019:9;9015:17;9002:31;9060:18;9052:6;9049:30;9046:117;;;9082:79;;:::i;:::-;9046:117;9195:65;9252:7;9243:6;9232:9;9228:22;9195:65;:::i;:::-;9177:83;;;;8973:297;8748:529;;;;;:::o;9283:327::-;9341:6;9390:2;9378:9;9369:7;9365:23;9361:32;9358:119;;;9396:79;;:::i;:::-;9358:119;9516:1;9541:52;9585:7;9576:6;9565:9;9561:22;9541:52;:::i;:::-;9531:62;;9487:116;9283:327;;;;:::o;9616:329::-;9675:6;9724:2;9712:9;9703:7;9699:23;9695:32;9692:119;;;9730:79;;:::i;:::-;9692:119;9850:1;9875:53;9920:7;9911:6;9900:9;9896:22;9875:53;:::i;:::-;9865:63;;9821:117;9616:329;;;;:::o;9951:474::-;10019:6;10027;10076:2;10064:9;10055:7;10051:23;10047:32;10044:119;;;10082:79;;:::i;:::-;10044:119;10202:1;10227:53;10272:7;10263:6;10252:9;10248:22;10227:53;:::i;:::-;10217:63;;10173:117;10329:2;10355:53;10400:7;10391:6;10380:9;10376:22;10355:53;:::i;:::-;10345:63;;10300:118;9951:474;;;;;:::o;10431:118::-;10518:24;10536:5;10518:24;:::i;:::-;10513:3;10506:37;10431:118;;:::o;10555:109::-;10636:21;10651:5;10636:21;:::i;:::-;10631:3;10624:34;10555:109;;:::o;10670:360::-;10756:3;10784:38;10816:5;10784:38;:::i;:::-;10838:70;10901:6;10896:3;10838:70;:::i;:::-;10831:77;;10917:52;10962:6;10957:3;10950:4;10943:5;10939:16;10917:52;:::i;:::-;10994:29;11016:6;10994:29;:::i;:::-;10989:3;10985:39;10978:46;;10760:270;10670:360;;;;:::o;11036:364::-;11124:3;11152:39;11185:5;11152:39;:::i;:::-;11207:71;11271:6;11266:3;11207:71;:::i;:::-;11200:78;;11287:52;11332:6;11327:3;11320:4;11313:5;11309:16;11287:52;:::i;:::-;11364:29;11386:6;11364:29;:::i;:::-;11359:3;11355:39;11348:46;;11128:272;11036:364;;;;:::o;11406:377::-;11512:3;11540:39;11573:5;11540:39;:::i;:::-;11595:89;11677:6;11672:3;11595:89;:::i;:::-;11588:96;;11693:52;11738:6;11733:3;11726:4;11719:5;11715:16;11693:52;:::i;:::-;11770:6;11765:3;11761:16;11754:23;;11516:267;11406:377;;;;:::o;11813:845::-;11916:3;11953:5;11947:12;11982:36;12008:9;11982:36;:::i;:::-;12034:89;12116:6;12111:3;12034:89;:::i;:::-;12027:96;;12154:1;12143:9;12139:17;12170:1;12165:137;;;;12316:1;12311:341;;;;12132:520;;12165:137;12249:4;12245:9;12234;12230:25;12225:3;12218:38;12285:6;12280:3;12276:16;12269:23;;12165:137;;12311:341;12378:38;12410:5;12378:38;:::i;:::-;12438:1;12452:154;12466:6;12463:1;12460:13;12452:154;;;12540:7;12534:14;12530:1;12525:3;12521:11;12514:35;12590:1;12581:7;12577:15;12566:26;;12488:4;12485:1;12481:12;12476:17;;12452:154;;;12635:6;12630:3;12626:16;12619:23;;12318:334;;12132:520;;11920:738;;11813:845;;;;:::o;12664:366::-;12806:3;12827:67;12891:2;12886:3;12827:67;:::i;:::-;12820:74;;12903:93;12992:3;12903:93;:::i;:::-;13021:2;13016:3;13012:12;13005:19;;12664:366;;;:::o;13036:365::-;13178:3;13199:66;13263:1;13258:3;13199:66;:::i;:::-;13192:73;;13274:93;13363:3;13274:93;:::i;:::-;13392:2;13387:3;13383:12;13376:19;;13036:365;;;:::o;13407:366::-;13549:3;13570:67;13634:2;13629:3;13570:67;:::i;:::-;13563:74;;13646:93;13735:3;13646:93;:::i;:::-;13764:2;13759:3;13755:12;13748:19;;13407:366;;;:::o;13779:::-;13921:3;13942:67;14006:2;14001:3;13942:67;:::i;:::-;13935:74;;14018:93;14107:3;14018:93;:::i;:::-;14136:2;14131:3;14127:12;14120:19;;13779:366;;;:::o;14151:400::-;14311:3;14332:84;14414:1;14409:3;14332:84;:::i;:::-;14325:91;;14425:93;14514:3;14425:93;:::i;:::-;14543:1;14538:3;14534:11;14527:18;;14151:400;;;:::o;14557:366::-;14699:3;14720:67;14784:2;14779:3;14720:67;:::i;:::-;14713:74;;14796:93;14885:3;14796:93;:::i;:::-;14914:2;14909:3;14905:12;14898:19;;14557:366;;;:::o;14929:118::-;15016:24;15034:5;15016:24;:::i;:::-;15011:3;15004:37;14929:118;;:::o;15053:695::-;15331:3;15353:92;15441:3;15432:6;15353:92;:::i;:::-;15346:99;;15462:95;15553:3;15544:6;15462:95;:::i;:::-;15455:102;;15574:148;15718:3;15574:148;:::i;:::-;15567:155;;15739:3;15732:10;;15053:695;;;;;:::o;15754:222::-;15847:4;15885:2;15874:9;15870:18;15862:26;;15898:71;15966:1;15955:9;15951:17;15942:6;15898:71;:::i;:::-;15754:222;;;;:::o;15982:640::-;16177:4;16215:3;16204:9;16200:19;16192:27;;16229:71;16297:1;16286:9;16282:17;16273:6;16229:71;:::i;:::-;16310:72;16378:2;16367:9;16363:18;16354:6;16310:72;:::i;:::-;16392;16460:2;16449:9;16445:18;16436:6;16392:72;:::i;:::-;16511:9;16505:4;16501:20;16496:2;16485:9;16481:18;16474:48;16539:76;16610:4;16601:6;16539:76;:::i;:::-;16531:84;;15982:640;;;;;;;:::o;16628:332::-;16749:4;16787:2;16776:9;16772:18;16764:26;;16800:71;16868:1;16857:9;16853:17;16844:6;16800:71;:::i;:::-;16881:72;16949:2;16938:9;16934:18;16925:6;16881:72;:::i;:::-;16628:332;;;;;:::o;16966:210::-;17053:4;17091:2;17080:9;17076:18;17068:26;;17104:65;17166:1;17155:9;17151:17;17142:6;17104:65;:::i;:::-;16966:210;;;;:::o;17182:313::-;17295:4;17333:2;17322:9;17318:18;17310:26;;17382:9;17376:4;17372:20;17368:1;17357:9;17353:17;17346:47;17410:78;17483:4;17474:6;17410:78;:::i;:::-;17402:86;;17182:313;;;;:::o;17501:419::-;17667:4;17705:2;17694:9;17690:18;17682:26;;17754:9;17748:4;17744:20;17740:1;17729:9;17725:17;17718:47;17782:131;17908:4;17782:131;:::i;:::-;17774:139;;17501:419;;;:::o;17926:::-;18092:4;18130:2;18119:9;18115:18;18107:26;;18179:9;18173:4;18169:20;18165:1;18154:9;18150:17;18143:47;18207:131;18333:4;18207:131;:::i;:::-;18199:139;;17926:419;;;:::o;18351:::-;18517:4;18555:2;18544:9;18540:18;18532:26;;18604:9;18598:4;18594:20;18590:1;18579:9;18575:17;18568:47;18632:131;18758:4;18632:131;:::i;:::-;18624:139;;18351:419;;;:::o;18776:::-;18942:4;18980:2;18969:9;18965:18;18957:26;;19029:9;19023:4;19019:20;19015:1;19004:9;19000:17;18993:47;19057:131;19183:4;19057:131;:::i;:::-;19049:139;;18776:419;;;:::o;19201:::-;19367:4;19405:2;19394:9;19390:18;19382:26;;19454:9;19448:4;19444:20;19440:1;19429:9;19425:17;19418:47;19482:131;19608:4;19482:131;:::i;:::-;19474:139;;19201:419;;;:::o;19626:222::-;19719:4;19757:2;19746:9;19742:18;19734:26;;19770:71;19838:1;19827:9;19823:17;19814:6;19770:71;:::i;:::-;19626:222;;;;:::o;19854:129::-;19888:6;19915:20;;:::i;:::-;19905:30;;19944:33;19972:4;19964:6;19944:33;:::i;:::-;19854:129;;;:::o;19989:75::-;20022:6;20055:2;20049:9;20039:19;;19989:75;:::o;20070:335::-;20171:4;20261:18;20253:6;20250:30;20247:56;;;20283:18;;:::i;:::-;20247:56;20333:4;20325:6;20321:17;20313:25;;20393:4;20387;20383:15;20375:23;;20070:335;;;:::o;20411:307::-;20472:4;20562:18;20554:6;20551:30;20548:56;;;20584:18;;:::i;:::-;20548:56;20622:29;20644:6;20622:29;:::i;:::-;20614:37;;20706:4;20700;20696:15;20688:23;;20411:307;;;:::o;20724:141::-;20773:4;20796:3;20788:11;;20819:3;20816:1;20809:14;20853:4;20850:1;20840:18;20832:26;;20724:141;;;:::o;20871:98::-;20922:6;20956:5;20950:12;20940:22;;20871:98;;;:::o;20975:99::-;21027:6;21061:5;21055:12;21045:22;;20975:99;;;:::o;21080:168::-;21163:11;21197:6;21192:3;21185:19;21237:4;21232:3;21228:14;21213:29;;21080:168;;;;:::o;21254:169::-;21338:11;21372:6;21367:3;21360:19;21412:4;21407:3;21403:14;21388:29;;21254:169;;;;:::o;21429:148::-;21531:11;21568:3;21553:18;;21429:148;;;;:::o;21583:305::-;21623:3;21642:20;21660:1;21642:20;:::i;:::-;21637:25;;21676:20;21694:1;21676:20;:::i;:::-;21671:25;;21830:1;21762:66;21758:74;21755:1;21752:81;21749:107;;;21836:18;;:::i;:::-;21749:107;21880:1;21877;21873:9;21866:16;;21583:305;;;;:::o;21894:185::-;21934:1;21951:20;21969:1;21951:20;:::i;:::-;21946:25;;21985:20;22003:1;21985:20;:::i;:::-;21980:25;;22024:1;22014:35;;22029:18;;:::i;:::-;22014:35;22071:1;22068;22064:9;22059:14;;21894:185;;;;:::o;22085:348::-;22125:7;22148:20;22166:1;22148:20;:::i;:::-;22143:25;;22182:20;22200:1;22182:20;:::i;:::-;22177:25;;22370:1;22302:66;22298:74;22295:1;22292:81;22287:1;22280:9;22273:17;22269:105;22266:131;;;22377:18;;:::i;:::-;22266:131;22425:1;22422;22418:9;22407:20;;22085:348;;;;:::o;22439:191::-;22479:4;22499:20;22517:1;22499:20;:::i;:::-;22494:25;;22533:20;22551:1;22533:20;:::i;:::-;22528:25;;22572:1;22569;22566:8;22563:34;;;22577:18;;:::i;:::-;22563:34;22622:1;22619;22615:9;22607:17;;22439:191;;;;:::o;22636:96::-;22673:7;22702:24;22720:5;22702:24;:::i;:::-;22691:35;;22636:96;;;:::o;22738:90::-;22772:7;22815:5;22808:13;22801:21;22790:32;;22738:90;;;:::o;22834:149::-;22870:7;22910:66;22903:5;22899:78;22888:89;;22834:149;;;:::o;22989:89::-;23025:7;23065:6;23058:5;23054:18;23043:29;;22989:89;;;:::o;23084:126::-;23121:7;23161:42;23154:5;23150:54;23139:65;;23084:126;;;:::o;23216:77::-;23253:7;23282:5;23271:16;;23216:77;;;:::o;23299:154::-;23383:6;23378:3;23373;23360:30;23445:1;23436:6;23431:3;23427:16;23420:27;23299:154;;;:::o;23459:307::-;23527:1;23537:113;23551:6;23548:1;23545:13;23537:113;;;23636:1;23631:3;23627:11;23621:18;23617:1;23612:3;23608:11;23601:39;23573:2;23570:1;23566:10;23561:15;;23537:113;;;23668:6;23665:1;23662:13;23659:101;;;23748:1;23739:6;23734:3;23730:16;23723:27;23659:101;23508:258;23459:307;;;:::o;23772:320::-;23816:6;23853:1;23847:4;23843:12;23833:22;;23900:1;23894:4;23890:12;23921:18;23911:81;;23977:4;23969:6;23965:17;23955:27;;23911:81;24039:2;24031:6;24028:14;24008:18;24005:38;24002:84;;;24058:18;;:::i;:::-;24002:84;23823:269;23772:320;;;:::o;24098:281::-;24181:27;24203:4;24181:27;:::i;:::-;24173:6;24169:40;24311:6;24299:10;24296:22;24275:18;24263:10;24260:34;24257:62;24254:88;;;24322:18;;:::i;:::-;24254:88;24362:10;24358:2;24351:22;24141:238;24098:281;;:::o;24385:233::-;24424:3;24447:24;24465:5;24447:24;:::i;:::-;24438:33;;24493:66;24486:5;24483:77;24480:103;;;24563:18;;:::i;:::-;24480:103;24610:1;24603:5;24599:13;24592:20;;24385:233;;;:::o;24624:176::-;24656:1;24673:20;24691:1;24673:20;:::i;:::-;24668:25;;24707:20;24725:1;24707:20;:::i;:::-;24702:25;;24746:1;24736:35;;24751:18;;:::i;:::-;24736:35;24792:1;24789;24785:9;24780:14;;24624:176;;;;:::o;24806:180::-;24854:77;24851:1;24844:88;24951:4;24948:1;24941:15;24975:4;24972:1;24965:15;24992:180;25040:77;25037:1;25030:88;25137:4;25134:1;25127:15;25161:4;25158:1;25151:15;25178:180;25226:77;25223:1;25216:88;25323:4;25320:1;25313:15;25347:4;25344:1;25337:15;25364:180;25412:77;25409:1;25402:88;25509:4;25506:1;25499:15;25533:4;25530:1;25523:15;25550:180;25598:77;25595:1;25588:88;25695:4;25692:1;25685:15;25719:4;25716:1;25709:15;25736:117;25845:1;25842;25835:12;25859:117;25968:1;25965;25958:12;25982:117;26091:1;26088;26081:12;26228:117;26337:1;26334;26327:12;26351:117;26460:1;26457;26450:12;26474:117;26583:1;26580;26573:12;26597:117;26706:1;26703;26696:12;26720:102;26761:6;26812:2;26808:7;26803:2;26796:5;26792:14;26788:28;26778:38;;26720:102;;;:::o;26828:169::-;26968:21;26964:1;26956:6;26952:14;26945:45;26828:169;:::o;27003:159::-;27143:11;27139:1;27131:6;27127:14;27120:35;27003:159;:::o;27168:225::-;27308:34;27304:1;27296:6;27292:14;27285:58;27377:8;27372:2;27364:6;27360:15;27353:33;27168:225;:::o;27399:172::-;27539:24;27535:1;27527:6;27523:14;27516:48;27399:172;:::o;27577:155::-;27717:7;27713:1;27705:6;27701:14;27694:31;27577:155;:::o;27738:182::-;27878:34;27874:1;27866:6;27862:14;27855:58;27738:182;:::o;27926:122::-;27999:24;28017:5;27999:24;:::i;:::-;27992:5;27989:35;27979:63;;28038:1;28035;28028:12;27979:63;27926:122;:::o;28054:116::-;28124:21;28139:5;28124:21;:::i;:::-;28117:5;28114:32;28104:60;;28160:1;28157;28150:12;28104:60;28054:116;:::o;28176:120::-;28248:23;28265:5;28248:23;:::i;:::-;28241:5;28238:34;28228:62;;28286:1;28283;28276:12;28228:62;28176:120;:::o;28302:::-;28374:23;28391:5;28374:23;:::i;:::-;28367:5;28364:34;28354:62;;28412:1;28409;28402:12;28354:62;28302:120;:::o;28428:122::-;28501:24;28519:5;28501:24;:::i;:::-;28494:5;28491:35;28481:63;;28540:1;28537;28530:12;28481:63;28428:122;:::o

Swarm Source

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