ETH Price: $2,986.52 (-4.66%)
Gas: 2 Gwei

Token

The Oddlings Bunch (TOB)
 

Overview

Max Total Supply

3,500 TOB

Holders

287

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TOB
0x463021787cc8680dde1c9be360e671b4b3347974
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:
theOddlingsBunch

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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


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

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 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 virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // 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`.
                )

                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: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/TOB.sol


pragma solidity ^0.8.4;




contract theOddlingsBunch is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.0035 ether;
  uint256 public maxSupply = 3500;
  uint256 public maxMintAmount = 4;
  uint256 public nftPerAddressLimit = 12;
  bool public paused = true;
  mapping(address => uint256) public addressMintedBalance;



  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721A(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // owner mint
  function ownerMint(uint256 _mintAmount) public onlyOwner {
      uint256 supply = totalSupply();
      require(_mintAmount > 0, "need to mint at least 1 NFT");
      require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
      _safeMint(_msgSender(), _mintAmount);
    }

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(msg.value >= cost * _mintAmount, "insufficient funds");
    require(addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "Wallet address is over the maximum allowed mints");
    addressMintedBalance[msg.sender] = addressMintedBalance[msg.sender] + _mintAmount;

    _safeMint(_msgSender(), _mintAmount);

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

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";
  }

  //only owner

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
    function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  } 

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
   function withdraw() public onlyOwner {
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
  
  }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a908051906020019062000051929190620002fb565b50660c6f3b40b6c000600c55610dac600d556004600e55600c600f556001601060006101000a81548160ff0219169083151502179055503480156200009557600080fd5b5060405162003a3338038062003a338339818101604052810190620000bb91906200041d565b82828160029080519060200190620000d5929190620002fb565b508060039080519060200190620000ee929190620002fb565b50620000ff6200014160201b60201c565b6000819055505050620001276200011b6200014660201b60201c565b6200014e60201b60201c565b62000138816200021460201b60201c565b505050620006b1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002246200024060201b60201c565b80600990805190602001906200023c929190620002fb565b5050565b620002506200014660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000276620002d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c690620004e5565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200030990620005ad565b90600052602060002090601f0160209004810192826200032d576000855562000379565b82601f106200034857805160ff191683800117855562000379565b8280016001018555821562000379579182015b82811115620003785782518255916020019190600101906200035b565b5b5090506200038891906200038c565b5090565b5b80821115620003a75760008160009055506001016200038d565b5090565b6000620003c2620003bc8462000530565b62000507565b905082815260208101848484011115620003db57600080fd5b620003e884828562000577565b509392505050565b600082601f8301126200040257600080fd5b815162000414848260208601620003ab565b91505092915050565b6000806000606084860312156200043357600080fd5b600084015167ffffffffffffffff8111156200044e57600080fd5b6200045c86828701620003f0565b935050602084015167ffffffffffffffff8111156200047a57600080fd5b6200048886828701620003f0565b925050604084015167ffffffffffffffff811115620004a657600080fd5b620004b486828701620003f0565b9150509250925092565b6000620004cd60208362000566565b9150620004da8262000688565b602082019050919050565b600060208201905081810360008301526200050081620004be565b9050919050565b60006200051362000526565b9050620005218282620005e3565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054e576200054d62000648565b5b620005598262000677565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005975780820151818401526020810190506200057a565b83811115620005a7576000848401525b50505050565b60006002820490506001821680620005c657607f821691505b60208210811415620005dd57620005dc62000619565b5b50919050565b620005ee8262000677565b810181811067ffffffffffffffff8211171562000610576200060f62000648565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61337280620006c16000396000f3fe6080604052600436106102045760003560e01c80636c0360eb11610118578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb0114610734578063da3ef23f1461075f578063e985e9c514610788578063f19e75d4146107c5578063f2fde38b146107ee57610204565b8063ba7d2c7614610678578063c6682862146106a3578063c87b56dd146106ce578063d0eb26b01461070b57610204565b80638da5cb5b116100e75780638da5cb5b146105b457806395d89b41146105df578063a0712d681461060a578063a22cb46514610626578063b88d4fde1461064f57610204565b80636c0360eb1461050c57806370a0823114610537578063715018a6146105745780637f00c7a61461058b57610204565b806318cae2691161019b57806342842e0e1161016a57806342842e0e1461042957806344a0d68a1461045257806355f804b31461047b5780635c975abb146104a45780636352211e146104cf57610204565b806318cae26914610381578063239c70ae146103be57806323b872dd146103e95780633ccfd60b1461041257610204565b8063081c8c44116101d7578063081c8c44146102d7578063095ea7b31461030257806313faede61461032b57806318160ddd1461035657610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906126e7565b610817565b60405161023d9190612afd565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906126be565b6108a9565b005b34801561027b57600080fd5b506102846108ce565b6040516102919190612b18565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061277a565b610960565b6040516102ce9190612a96565b60405180910390f35b3480156102e357600080fd5b506102ec6109df565b6040516102f99190612b18565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612682565b610a6d565b005b34801561033757600080fd5b50610340610bb1565b60405161034d9190612c5a565b60405180910390f35b34801561036257600080fd5b5061036b610bb7565b6040516103789190612c5a565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612517565b610bce565b6040516103b59190612c5a565b60405180910390f35b3480156103ca57600080fd5b506103d3610be6565b6040516103e09190612c5a565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b919061257c565b610bec565b005b34801561041e57600080fd5b50610427610f11565b005b34801561043557600080fd5b50610450600480360381019061044b919061257c565b610f99565b005b34801561045e57600080fd5b506104796004803603810190610474919061277a565b610fb9565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612739565b610fcb565b005b3480156104b057600080fd5b506104b9610fed565b6040516104c69190612afd565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061277a565b611000565b6040516105039190612a96565b60405180910390f35b34801561051857600080fd5b50610521611012565b60405161052e9190612b18565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190612517565b6110a0565b60405161056b9190612c5a565b60405180910390f35b34801561058057600080fd5b50610589611159565b005b34801561059757600080fd5b506105b260048036038101906105ad919061277a565b61116d565b005b3480156105c057600080fd5b506105c961117f565b6040516105d69190612a96565b60405180910390f35b3480156105eb57600080fd5b506105f46111a9565b6040516106019190612b18565b60405180910390f35b610624600480360381019061061f919061277a565b61123b565b005b34801561063257600080fd5b5061064d60048036038101906106489190612646565b6114f1565b005b34801561065b57600080fd5b50610676600480360381019061067191906125cb565b6115fc565b005b34801561068457600080fd5b5061068d61166f565b60405161069a9190612c5a565b60405180910390f35b3480156106af57600080fd5b506106b8611675565b6040516106c59190612b18565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f0919061277a565b611703565b6040516107029190612b18565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d919061277a565b6117ad565b005b34801561074057600080fd5b506107496117bf565b6040516107569190612c5a565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190612739565b6117c5565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612540565b6117e7565b6040516107bc9190612afd565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061277a565b61187b565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612517565b611937565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108b16119bb565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546108dd90612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461090990612f2a565b80156109565780601f1061092b57610100808354040283529160200191610956565b820191906000526020600020905b81548152906001019060200180831161093957829003601f168201915b5050505050905090565b600061096b82611a39565b6109a1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b80546109ec90612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890612f2a565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b505050505081565b6000610a7882611000565b90508073ffffffffffffffffffffffffffffffffffffffff16610a99611a98565b73ffffffffffffffffffffffffffffffffffffffff1614610afc57610ac581610ac0611a98565b6117e7565b610afb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610bc1611aa0565b6001546000540303905090565b60116020528060005260406000206000915090505481565b600e5481565b6000610bf782611aa5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6a84611b73565b91509150610c808187610c7b611a98565b611b9a565b610ccc57610c9586610c90611a98565b6117e7565b610ccb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d408686866001611bde565b8015610d4b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1985610df5888887611be4565b7c020000000000000000000000000000000000000000000000000000000017611c0c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ea1576000600185019050600060046000838152602001908152602001600020541415610e9f576000548114610e9e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f098686866001611c37565b505050505050565b610f196119bb565b6000610f2361117f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4690612a81565b60006040518083038185875af1925050503d8060008114610f83576040519150601f19603f3d011682016040523d82523d6000602084013e610f88565b606091505b5050905080610f9657600080fd5b50565b610fb4838383604051806020016040528060008152506115fc565b505050565b610fc16119bb565b80600c8190555050565b610fd36119bb565b8060099080519060200190610fe992919061233b565b5050565b601060009054906101000a900460ff1681565b600061100b82611aa5565b9050919050565b6009805461101f90612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461104b90612f2a565b80156110985780601f1061106d57610100808354040283529160200191611098565b820191906000526020600020905b81548152906001019060200180831161107b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611108576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111616119bb565b61116b6000611c3d565b565b6111756119bb565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111b890612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546111e490612f2a565b80156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612bda565b60405180910390fd5b6000611295610bb7565b9050600082116112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190612c3a565b60405180910390fd5b600e5482111561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612b9a565b60405180910390fd5b600d54828261132e9190612d5f565b111561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690612b7a565b60405180910390fd5b81600c5461137d9190612de6565b3410156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612c1a565b60405180910390fd5b600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140d9190612d5f565b111561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590612b5a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114999190612d5f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114ed6114e7611d03565b83611d0b565b5050565b80600760006114fe611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ab611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f09190612afd565b60405180910390a35050565b611607848484610bec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d29565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600a805461168290612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90612f2a565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b505050505081565b606061170e82611a39565b61174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490612bfa565b60405180910390fd5b6000611757611e89565b9050600081511161177757604051806020016040528060008152506117a5565b8061178184611f1b565b600a60405160200161179593929190612a50565b6040516020818303038152906040525b915050919050565b6117b56119bb565b80600f8190555050565b600d5481565b6117cd6119bb565b80600a90805190602001906117e392919061233b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118836119bb565b600061188d610bb7565b9050600082116118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612c3a565b60405180910390fd5b600d5482826118e19190612d5f565b1115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990612b7a565b60405180910390fd5b61193361192d611d03565b83611d0b565b5050565b61193f6119bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690612b3a565b60405180910390fd5b6119b881611c3d565b50565b6119c3611d03565b73ffffffffffffffffffffffffffffffffffffffff166119e161117f565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90612bba565b60405180910390fd5b565b600081611a44611aa0565b11158015611a53575060005482105b8015611a91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611ab4611aa0565b11611b3c57600054811015611b3b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b39575b6000811415611b2f576004600083600190039350838152602001908152602001600020549050611b04565b8092505050611b6e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bfb8686846120c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611d258282604051806020016040528060008152506120d1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d4f611a98565b8786866040518563ffffffff1660e01b8152600401611d719493929190612ab1565b602060405180830381600087803b158015611d8b57600080fd5b505af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db99190612710565b60015b611e36573d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b50600081511415611e2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e9890612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec490612f2a565b8015611f115780601f10611ee657610100808354040283529160200191611f11565b820191906000526020600020905b815481529060010190602001808311611ef457829003601f168201915b5050505050905090565b60606000821415611f63576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c3565b600082905060005b60008214611f95578080611f7e90612f8d565b915050600a82611f8e9190612db5565b9150611f6b565b60008167ffffffffffffffff811115611fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120095781602001600182028036833780820191505090505b5090505b600085146120bc576001826120229190612e40565b9150600a856120319190612fd6565b603061203d9190612d5f565b60f81b818381518110612079577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b59190612db5565b945061200d565b8093505050505b919050565b60009392505050565b6120db838361216e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216957600080549050600083820390505b61211b6000868380600101945086611d29565b612151576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061210857816000541461216657600080fd5b50505b505050565b60008054905060008214156121af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bc6000848385611bde565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612233836122246000866000611be4565b61222d8561232b565b17611c0c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122d457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612299565b506000821415612310576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123266000848385611c37565b505050565b60006001821460e11b9050919050565b82805461234790612f2a565b90600052602060002090601f01602090048101928261236957600085556123b0565b82601f1061238257805160ff19168380011785556123b0565b828001600101855582156123b0579182015b828111156123af578251825591602001919060010190612394565b5b5090506123bd91906123c1565b5090565b5b808211156123da5760008160009055506001016123c2565b5090565b60006123f16123ec84612c9a565b612c75565b90508281526020810184848401111561240957600080fd5b612414848285612ee8565b509392505050565b600061242f61242a84612ccb565b612c75565b90508281526020810184848401111561244757600080fd5b612452848285612ee8565b509392505050565b600081359050612469816132e0565b92915050565b60008135905061247e816132f7565b92915050565b6000813590506124938161330e565b92915050565b6000815190506124a88161330e565b92915050565b600082601f8301126124bf57600080fd5b81356124cf8482602086016123de565b91505092915050565b600082601f8301126124e957600080fd5b81356124f984826020860161241c565b91505092915050565b60008135905061251181613325565b92915050565b60006020828403121561252957600080fd5b60006125378482850161245a565b91505092915050565b6000806040838503121561255357600080fd5b60006125618582860161245a565b92505060206125728582860161245a565b9150509250929050565b60008060006060848603121561259157600080fd5b600061259f8682870161245a565b93505060206125b08682870161245a565b92505060406125c186828701612502565b9150509250925092565b600080600080608085870312156125e157600080fd5b60006125ef8782880161245a565b94505060206126008782880161245a565b935050604061261187828801612502565b925050606085013567ffffffffffffffff81111561262e57600080fd5b61263a878288016124ae565b91505092959194509250565b6000806040838503121561265957600080fd5b60006126678582860161245a565b92505060206126788582860161246f565b9150509250929050565b6000806040838503121561269557600080fd5b60006126a38582860161245a565b92505060206126b485828601612502565b9150509250929050565b6000602082840312156126d057600080fd5b60006126de8482850161246f565b91505092915050565b6000602082840312156126f957600080fd5b600061270784828501612484565b91505092915050565b60006020828403121561272257600080fd5b600061273084828501612499565b91505092915050565b60006020828403121561274b57600080fd5b600082013567ffffffffffffffff81111561276557600080fd5b612771848285016124d8565b91505092915050565b60006020828403121561278c57600080fd5b600061279a84828501612502565b91505092915050565b6127ac81612e74565b82525050565b6127bb81612e86565b82525050565b60006127cc82612d11565b6127d68185612d27565b93506127e6818560208601612ef7565b6127ef816130c3565b840191505092915050565b600061280582612d1c565b61280f8185612d43565b935061281f818560208601612ef7565b612828816130c3565b840191505092915050565b600061283e82612d1c565b6128488185612d54565b9350612858818560208601612ef7565b80840191505092915050565b6000815461287181612f2a565b61287b8186612d54565b9450600182166000811461289657600181146128a7576128da565b60ff198316865281860193506128da565b6128b085612cfc565b60005b838110156128d2578154818901526001820191506020810190506128b3565b838801955050505b50505092915050565b60006128f0602683612d43565b91506128fb826130d4565b604082019050919050565b6000612913603083612d43565b915061291e82613123565b604082019050919050565b6000612936601683612d43565b915061294182613172565b602082019050919050565b6000612959602483612d43565b91506129648261319b565b604082019050919050565b600061297c602083612d43565b9150612987826131ea565b602082019050919050565b600061299f601683612d43565b91506129aa82613213565b602082019050919050565b60006129c2602f83612d43565b91506129cd8261323c565b604082019050919050565b60006129e5600083612d38565b91506129f08261328b565b600082019050919050565b6000612a08601283612d43565b9150612a138261328e565b602082019050919050565b6000612a2b601b83612d43565b9150612a36826132b7565b602082019050919050565b612a4a81612ede565b82525050565b6000612a5c8286612833565b9150612a688285612833565b9150612a748284612864565b9150819050949350505050565b6000612a8c826129d8565b9150819050919050565b6000602082019050612aab60008301846127a3565b92915050565b6000608082019050612ac660008301876127a3565b612ad360208301866127a3565b612ae06040830185612a41565b8181036060830152612af281846127c1565b905095945050505050565b6000602082019050612b1260008301846127b2565b92915050565b60006020820190508181036000830152612b3281846127fa565b905092915050565b60006020820190508181036000830152612b53816128e3565b9050919050565b60006020820190508181036000830152612b7381612906565b9050919050565b60006020820190508181036000830152612b9381612929565b9050919050565b60006020820190508181036000830152612bb38161294c565b9050919050565b60006020820190508181036000830152612bd38161296f565b9050919050565b60006020820190508181036000830152612bf381612992565b9050919050565b60006020820190508181036000830152612c13816129b5565b9050919050565b60006020820190508181036000830152612c33816129fb565b9050919050565b60006020820190508181036000830152612c5381612a1e565b9050919050565b6000602082019050612c6f6000830184612a41565b92915050565b6000612c7f612c90565b9050612c8b8282612f5c565b919050565b6000604051905090565b600067ffffffffffffffff821115612cb557612cb4613094565b5b612cbe826130c3565b9050602081019050919050565b600067ffffffffffffffff821115612ce657612ce5613094565b5b612cef826130c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6a82612ede565b9150612d7583612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612daa57612da9613007565b5b828201905092915050565b6000612dc082612ede565b9150612dcb83612ede565b925082612ddb57612dda613036565b5b828204905092915050565b6000612df182612ede565b9150612dfc83612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3557612e34613007565b5b828202905092915050565b6000612e4b82612ede565b9150612e5683612ede565b925082821015612e6957612e68613007565b5b828203905092915050565b6000612e7f82612ebe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f15578082015181840152602081019050612efa565b83811115612f24576000848401525b50505050565b60006002820490506001821680612f4257607f821691505b60208210811415612f5657612f55613065565b5b50919050565b612f65826130c3565b810181811067ffffffffffffffff82111715612f8457612f83613094565b5b80604052505050565b6000612f9882612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fcb57612fca613007565b5b600182019050919050565b6000612fe182612ede565b9150612fec83612ede565b925082612ffc57612ffb613036565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c65742061646472657373206973206f76657220746865206d6178696d60008201527f756d20616c6c6f776564206d696e747300000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6132e981612e74565b81146132f457600080fd5b50565b61330081612e86565b811461330b57600080fd5b50565b61331781612e92565b811461332257600080fd5b50565b61332e81612ede565b811461333957600080fd5b5056fea26469706673582212203a5f82312c3a0491b9226007f172bf2d64ae4b6ae2cdd347936ef2ff9842e1d064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012546865204f64646c696e67732042756e636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d587177774a664b7a4d3536744d7946727257504c376f367158505479544c684c37774470643377756e4d75322f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636c0360eb11610118578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb0114610734578063da3ef23f1461075f578063e985e9c514610788578063f19e75d4146107c5578063f2fde38b146107ee57610204565b8063ba7d2c7614610678578063c6682862146106a3578063c87b56dd146106ce578063d0eb26b01461070b57610204565b80638da5cb5b116100e75780638da5cb5b146105b457806395d89b41146105df578063a0712d681461060a578063a22cb46514610626578063b88d4fde1461064f57610204565b80636c0360eb1461050c57806370a0823114610537578063715018a6146105745780637f00c7a61461058b57610204565b806318cae2691161019b57806342842e0e1161016a57806342842e0e1461042957806344a0d68a1461045257806355f804b31461047b5780635c975abb146104a45780636352211e146104cf57610204565b806318cae26914610381578063239c70ae146103be57806323b872dd146103e95780633ccfd60b1461041257610204565b8063081c8c44116101d7578063081c8c44146102d7578063095ea7b31461030257806313faede61461032b57806318160ddd1461035657610204565b806301ffc9a71461020957806302329a291461024657806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b91906126e7565b610817565b60405161023d9190612afd565b60405180910390f35b34801561025257600080fd5b5061026d600480360381019061026891906126be565b6108a9565b005b34801561027b57600080fd5b506102846108ce565b6040516102919190612b18565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc919061277a565b610960565b6040516102ce9190612a96565b60405180910390f35b3480156102e357600080fd5b506102ec6109df565b6040516102f99190612b18565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612682565b610a6d565b005b34801561033757600080fd5b50610340610bb1565b60405161034d9190612c5a565b60405180910390f35b34801561036257600080fd5b5061036b610bb7565b6040516103789190612c5a565b60405180910390f35b34801561038d57600080fd5b506103a860048036038101906103a39190612517565b610bce565b6040516103b59190612c5a565b60405180910390f35b3480156103ca57600080fd5b506103d3610be6565b6040516103e09190612c5a565b60405180910390f35b3480156103f557600080fd5b50610410600480360381019061040b919061257c565b610bec565b005b34801561041e57600080fd5b50610427610f11565b005b34801561043557600080fd5b50610450600480360381019061044b919061257c565b610f99565b005b34801561045e57600080fd5b506104796004803603810190610474919061277a565b610fb9565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612739565b610fcb565b005b3480156104b057600080fd5b506104b9610fed565b6040516104c69190612afd565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f1919061277a565b611000565b6040516105039190612a96565b60405180910390f35b34801561051857600080fd5b50610521611012565b60405161052e9190612b18565b60405180910390f35b34801561054357600080fd5b5061055e60048036038101906105599190612517565b6110a0565b60405161056b9190612c5a565b60405180910390f35b34801561058057600080fd5b50610589611159565b005b34801561059757600080fd5b506105b260048036038101906105ad919061277a565b61116d565b005b3480156105c057600080fd5b506105c961117f565b6040516105d69190612a96565b60405180910390f35b3480156105eb57600080fd5b506105f46111a9565b6040516106019190612b18565b60405180910390f35b610624600480360381019061061f919061277a565b61123b565b005b34801561063257600080fd5b5061064d60048036038101906106489190612646565b6114f1565b005b34801561065b57600080fd5b50610676600480360381019061067191906125cb565b6115fc565b005b34801561068457600080fd5b5061068d61166f565b60405161069a9190612c5a565b60405180910390f35b3480156106af57600080fd5b506106b8611675565b6040516106c59190612b18565b60405180910390f35b3480156106da57600080fd5b506106f560048036038101906106f0919061277a565b611703565b6040516107029190612b18565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d919061277a565b6117ad565b005b34801561074057600080fd5b506107496117bf565b6040516107569190612c5a565b60405180910390f35b34801561076b57600080fd5b5061078660048036038101906107819190612739565b6117c5565b005b34801561079457600080fd5b506107af60048036038101906107aa9190612540565b6117e7565b6040516107bc9190612afd565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e7919061277a565b61187b565b005b3480156107fa57600080fd5b5061081560048036038101906108109190612517565b611937565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6108b16119bb565b80601060006101000a81548160ff02191690831515021790555050565b6060600280546108dd90612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461090990612f2a565b80156109565780601f1061092b57610100808354040283529160200191610956565b820191906000526020600020905b81548152906001019060200180831161093957829003601f168201915b5050505050905090565b600061096b82611a39565b6109a1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b80546109ec90612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1890612f2a565b8015610a655780601f10610a3a57610100808354040283529160200191610a65565b820191906000526020600020905b815481529060010190602001808311610a4857829003601f168201915b505050505081565b6000610a7882611000565b90508073ffffffffffffffffffffffffffffffffffffffff16610a99611a98565b73ffffffffffffffffffffffffffffffffffffffff1614610afc57610ac581610ac0611a98565b6117e7565b610afb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610bc1611aa0565b6001546000540303905090565b60116020528060005260406000206000915090505481565b600e5481565b6000610bf782611aa5565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6a84611b73565b91509150610c808187610c7b611a98565b611b9a565b610ccc57610c9586610c90611a98565b6117e7565b610ccb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d33576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d408686866001611bde565b8015610d4b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1985610df5888887611be4565b7c020000000000000000000000000000000000000000000000000000000017611c0c565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ea1576000600185019050600060046000838152602001908152602001600020541415610e9f576000548114610e9e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f098686866001611c37565b505050505050565b610f196119bb565b6000610f2361117f565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f4690612a81565b60006040518083038185875af1925050503d8060008114610f83576040519150601f19603f3d011682016040523d82523d6000602084013e610f88565b606091505b5050905080610f9657600080fd5b50565b610fb4838383604051806020016040528060008152506115fc565b505050565b610fc16119bb565b80600c8190555050565b610fd36119bb565b8060099080519060200190610fe992919061233b565b5050565b601060009054906101000a900460ff1681565b600061100b82611aa5565b9050919050565b6009805461101f90612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461104b90612f2a565b80156110985780601f1061106d57610100808354040283529160200191611098565b820191906000526020600020905b81548152906001019060200180831161107b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611108576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6111616119bb565b61116b6000611c3d565b565b6111756119bb565b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546111b890612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546111e490612f2a565b80156112315780601f1061120657610100808354040283529160200191611231565b820191906000526020600020905b81548152906001019060200180831161121457829003601f168201915b5050505050905090565b601060009054906101000a900460ff161561128b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128290612bda565b60405180910390fd5b6000611295610bb7565b9050600082116112da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d190612c3a565b60405180910390fd5b600e5482111561131f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131690612b9a565b60405180910390fd5b600d54828261132e9190612d5f565b111561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690612b7a565b60405180910390fd5b81600c5461137d9190612de6565b3410156113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612c1a565b60405180910390fd5b600f5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140d9190612d5f565b111561144e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144590612b5a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546114999190612d5f565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114ed6114e7611d03565b83611d0b565b5050565b80600760006114fe611a98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115ab611a98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f09190612afd565b60405180910390a35050565b611607848484610bec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116695761163284848484611d29565b611668576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b600a805461168290612f2a565b80601f01602080910402602001604051908101604052809291908181526020018280546116ae90612f2a565b80156116fb5780601f106116d0576101008083540402835291602001916116fb565b820191906000526020600020905b8154815290600101906020018083116116de57829003601f168201915b505050505081565b606061170e82611a39565b61174d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174490612bfa565b60405180910390fd5b6000611757611e89565b9050600081511161177757604051806020016040528060008152506117a5565b8061178184611f1b565b600a60405160200161179593929190612a50565b6040516020818303038152906040525b915050919050565b6117b56119bb565b80600f8190555050565b600d5481565b6117cd6119bb565b80600a90805190602001906117e392919061233b565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118836119bb565b600061188d610bb7565b9050600082116118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c990612c3a565b60405180910390fd5b600d5482826118e19190612d5f565b1115611922576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191990612b7a565b60405180910390fd5b61193361192d611d03565b83611d0b565b5050565b61193f6119bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a690612b3a565b60405180910390fd5b6119b881611c3d565b50565b6119c3611d03565b73ffffffffffffffffffffffffffffffffffffffff166119e161117f565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e90612bba565b60405180910390fd5b565b600081611a44611aa0565b11158015611a53575060005482105b8015611a91575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611ab4611aa0565b11611b3c57600054811015611b3b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611b39575b6000811415611b2f576004600083600190039350838152602001908152602001600020549050611b04565b8092505050611b6e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611bfb8686846120c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b611d258282604051806020016040528060008152506120d1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d4f611a98565b8786866040518563ffffffff1660e01b8152600401611d719493929190612ab1565b602060405180830381600087803b158015611d8b57600080fd5b505af1925050508015611dbc57506040513d601f19601f82011682018060405250810190611db99190612710565b60015b611e36573d8060008114611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b50600081511415611e2e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611e9890612f2a565b80601f0160208091040260200160405190810160405280929190818152602001828054611ec490612f2a565b8015611f115780601f10611ee657610100808354040283529160200191611f11565b820191906000526020600020905b815481529060010190602001808311611ef457829003601f168201915b5050505050905090565b60606000821415611f63576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506120c3565b600082905060005b60008214611f95578080611f7e90612f8d565b915050600a82611f8e9190612db5565b9150611f6b565b60008167ffffffffffffffff811115611fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156120095781602001600182028036833780820191505090505b5090505b600085146120bc576001826120229190612e40565b9150600a856120319190612fd6565b603061203d9190612d5f565b60f81b818381518110612079577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120b59190612db5565b945061200d565b8093505050505b919050565b60009392505050565b6120db838361216e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461216957600080549050600083820390505b61211b6000868380600101945086611d29565b612151576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061210857816000541461216657600080fd5b50505b505050565b60008054905060008214156121af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121bc6000848385611bde565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612233836122246000866000611be4565b61222d8561232b565b17611c0c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122d457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612299565b506000821415612310576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123266000848385611c37565b505050565b60006001821460e11b9050919050565b82805461234790612f2a565b90600052602060002090601f01602090048101928261236957600085556123b0565b82601f1061238257805160ff19168380011785556123b0565b828001600101855582156123b0579182015b828111156123af578251825591602001919060010190612394565b5b5090506123bd91906123c1565b5090565b5b808211156123da5760008160009055506001016123c2565b5090565b60006123f16123ec84612c9a565b612c75565b90508281526020810184848401111561240957600080fd5b612414848285612ee8565b509392505050565b600061242f61242a84612ccb565b612c75565b90508281526020810184848401111561244757600080fd5b612452848285612ee8565b509392505050565b600081359050612469816132e0565b92915050565b60008135905061247e816132f7565b92915050565b6000813590506124938161330e565b92915050565b6000815190506124a88161330e565b92915050565b600082601f8301126124bf57600080fd5b81356124cf8482602086016123de565b91505092915050565b600082601f8301126124e957600080fd5b81356124f984826020860161241c565b91505092915050565b60008135905061251181613325565b92915050565b60006020828403121561252957600080fd5b60006125378482850161245a565b91505092915050565b6000806040838503121561255357600080fd5b60006125618582860161245a565b92505060206125728582860161245a565b9150509250929050565b60008060006060848603121561259157600080fd5b600061259f8682870161245a565b93505060206125b08682870161245a565b92505060406125c186828701612502565b9150509250925092565b600080600080608085870312156125e157600080fd5b60006125ef8782880161245a565b94505060206126008782880161245a565b935050604061261187828801612502565b925050606085013567ffffffffffffffff81111561262e57600080fd5b61263a878288016124ae565b91505092959194509250565b6000806040838503121561265957600080fd5b60006126678582860161245a565b92505060206126788582860161246f565b9150509250929050565b6000806040838503121561269557600080fd5b60006126a38582860161245a565b92505060206126b485828601612502565b9150509250929050565b6000602082840312156126d057600080fd5b60006126de8482850161246f565b91505092915050565b6000602082840312156126f957600080fd5b600061270784828501612484565b91505092915050565b60006020828403121561272257600080fd5b600061273084828501612499565b91505092915050565b60006020828403121561274b57600080fd5b600082013567ffffffffffffffff81111561276557600080fd5b612771848285016124d8565b91505092915050565b60006020828403121561278c57600080fd5b600061279a84828501612502565b91505092915050565b6127ac81612e74565b82525050565b6127bb81612e86565b82525050565b60006127cc82612d11565b6127d68185612d27565b93506127e6818560208601612ef7565b6127ef816130c3565b840191505092915050565b600061280582612d1c565b61280f8185612d43565b935061281f818560208601612ef7565b612828816130c3565b840191505092915050565b600061283e82612d1c565b6128488185612d54565b9350612858818560208601612ef7565b80840191505092915050565b6000815461287181612f2a565b61287b8186612d54565b9450600182166000811461289657600181146128a7576128da565b60ff198316865281860193506128da565b6128b085612cfc565b60005b838110156128d2578154818901526001820191506020810190506128b3565b838801955050505b50505092915050565b60006128f0602683612d43565b91506128fb826130d4565b604082019050919050565b6000612913603083612d43565b915061291e82613123565b604082019050919050565b6000612936601683612d43565b915061294182613172565b602082019050919050565b6000612959602483612d43565b91506129648261319b565b604082019050919050565b600061297c602083612d43565b9150612987826131ea565b602082019050919050565b600061299f601683612d43565b91506129aa82613213565b602082019050919050565b60006129c2602f83612d43565b91506129cd8261323c565b604082019050919050565b60006129e5600083612d38565b91506129f08261328b565b600082019050919050565b6000612a08601283612d43565b9150612a138261328e565b602082019050919050565b6000612a2b601b83612d43565b9150612a36826132b7565b602082019050919050565b612a4a81612ede565b82525050565b6000612a5c8286612833565b9150612a688285612833565b9150612a748284612864565b9150819050949350505050565b6000612a8c826129d8565b9150819050919050565b6000602082019050612aab60008301846127a3565b92915050565b6000608082019050612ac660008301876127a3565b612ad360208301866127a3565b612ae06040830185612a41565b8181036060830152612af281846127c1565b905095945050505050565b6000602082019050612b1260008301846127b2565b92915050565b60006020820190508181036000830152612b3281846127fa565b905092915050565b60006020820190508181036000830152612b53816128e3565b9050919050565b60006020820190508181036000830152612b7381612906565b9050919050565b60006020820190508181036000830152612b9381612929565b9050919050565b60006020820190508181036000830152612bb38161294c565b9050919050565b60006020820190508181036000830152612bd38161296f565b9050919050565b60006020820190508181036000830152612bf381612992565b9050919050565b60006020820190508181036000830152612c13816129b5565b9050919050565b60006020820190508181036000830152612c33816129fb565b9050919050565b60006020820190508181036000830152612c5381612a1e565b9050919050565b6000602082019050612c6f6000830184612a41565b92915050565b6000612c7f612c90565b9050612c8b8282612f5c565b919050565b6000604051905090565b600067ffffffffffffffff821115612cb557612cb4613094565b5b612cbe826130c3565b9050602081019050919050565b600067ffffffffffffffff821115612ce657612ce5613094565b5b612cef826130c3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612d6a82612ede565b9150612d7583612ede565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612daa57612da9613007565b5b828201905092915050565b6000612dc082612ede565b9150612dcb83612ede565b925082612ddb57612dda613036565b5b828204905092915050565b6000612df182612ede565b9150612dfc83612ede565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e3557612e34613007565b5b828202905092915050565b6000612e4b82612ede565b9150612e5683612ede565b925082821015612e6957612e68613007565b5b828203905092915050565b6000612e7f82612ebe565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612f15578082015181840152602081019050612efa565b83811115612f24576000848401525b50505050565b60006002820490506001821680612f4257607f821691505b60208210811415612f5657612f55613065565b5b50919050565b612f65826130c3565b810181811067ffffffffffffffff82111715612f8457612f83613094565b5b80604052505050565b6000612f9882612ede565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612fcb57612fca613007565b5b600182019050919050565b6000612fe182612ede565b9150612fec83612ede565b925082612ffc57612ffb613036565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f57616c6c65742061646472657373206973206f76657220746865206d6178696d60008201527f756d20616c6c6f776564206d696e747300000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b6132e981612e74565b81146132f457600080fd5b50565b61330081612e86565b811461330b57600080fd5b50565b61331781612e92565b811461332257600080fd5b50565b61332e81612ede565b811461333957600080fd5b5056fea26469706673582212203a5f82312c3a0491b9226007f172bf2d64ae4b6ae2cdd347936ef2ff9842e1d064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012546865204f64646c696e67732042756e636800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544f4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d587177774a664b7a4d3536744d7946727257504c376f367158505479544c684c37774470643377756e4d75322f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The Oddlings Bunch
Arg [1] : _symbol (string): TOB
Arg [2] : _initBaseURI (string): ipfs://QmXqwwJfKzM56tMyFrrWPL7o6qXPTyTLhL7wDpd3wunMu2/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 546865204f64646c696e67732042756e63680000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 544f420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d587177774a664b7a4d3536744d7946727257504c376f36
Arg [9] : 7158505479544c684c37774470643377756e4d75322f00000000000000000000


Deployed Bytecode Sourcemap

57293:3257:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20884:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60069:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21786:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28269:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57444:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27710:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57477:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17537:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57662:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57552:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31908:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60151:390;;;;;;;;;;;;;:::i;:::-;;34821:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59626:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59835:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57632:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23179:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57376:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18721:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56411:103;;;;;;;;;;;;;:::i;:::-;;59713:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55763:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21962:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58348:703;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28827:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35604:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57589:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57402:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59059:429;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59512:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57516:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59939:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29218:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58039:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56669:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20884:639;20969:4;21308:10;21293:25;;:11;:25;;;;:102;;;;21385:10;21370:25;;:11;:25;;;;21293:102;:179;;;;21462:10;21447:25;;:11;:25;;;;21293:179;21273:199;;20884:639;;;:::o;60069:73::-;55649:13;:11;:13::i;:::-;60130:6:::1;60121;;:15;;;;;;;;;;;;;;;;;;60069:73:::0;:::o;21786:100::-;21840:13;21873:5;21866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21786:100;:::o;28269:218::-;28345:7;28370:16;28378:7;28370;:16::i;:::-;28365:64;;28395:34;;;;;;;;;;;;;;28365:64;28449:15;:24;28465:7;28449:24;;;;;;;;;;;:30;;;;;;;;;;;;28442:37;;28269:218;;;:::o;57444:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27710:400::-;27791:13;27807:16;27815:7;27807;:16::i;:::-;27791:32;;27863:5;27840:28;;:19;:17;:19::i;:::-;:28;;;27836:175;;27888:44;27905:5;27912:19;:17;:19::i;:::-;27888:16;:44::i;:::-;27883:128;;27960:35;;;;;;;;;;;;;;27883:128;27836:175;28056:2;28023:15;:24;28039:7;28023:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28094:7;28090:2;28074:28;;28083:5;28074:28;;;;;;;;;;;;27710:400;;;:::o;57477:34::-;;;;:::o;17537:323::-;17598:7;17826:15;:13;:15::i;:::-;17811:12;;17795:13;;:28;:46;17788:53;;17537:323;:::o;57662:55::-;;;;;;;;;;;;;;;;;:::o;57552:32::-;;;;:::o;31908:2817::-;32042:27;32072;32091:7;32072:18;:27::i;:::-;32042:57;;32157:4;32116:45;;32132:19;32116:45;;;32112:86;;32170:28;;;;;;;;;;;;;;32112:86;32212:27;32241:23;32268:35;32295:7;32268:26;:35::i;:::-;32211:92;;;;32403:68;32428:15;32445:4;32451:19;:17;:19::i;:::-;32403:24;:68::i;:::-;32398:180;;32491:43;32508:4;32514:19;:17;:19::i;:::-;32491:16;:43::i;:::-;32486:92;;32543:35;;;;;;;;;;;;;;32486:92;32398:180;32609:1;32595:16;;:2;:16;;;32591:52;;;32620:23;;;;;;;;;;;;;;32591:52;32656:43;32678:4;32684:2;32688:7;32697:1;32656:21;:43::i;:::-;32792:15;32789:2;;;32932:1;32911:19;32904:30;32789:2;33329:18;:24;33348:4;33329:24;;;;;;;;;;;;;;;;33327:26;;;;;;;;;;;;33398:18;:22;33417:2;33398:22;;;;;;;;;;;;;;;;33396:24;;;;;;;;;;;33720:146;33757:2;33806:45;33821:4;33827:2;33831:19;33806:14;:45::i;:::-;13936:8;33778:73;33720:18;:146::i;:::-;33691:17;:26;33709:7;33691:26;;;;;;;;;;;:175;;;;34037:1;13936:8;33986:19;:47;:52;33982:627;;;34059:19;34091:1;34081:7;:11;34059:33;;34248:1;34214:17;:30;34232:11;34214:30;;;;;;;;;;;;:35;34210:384;;;34352:13;;34337:11;:28;34333:242;;34532:19;34499:17;:30;34517:11;34499:30;;;;;;;;;;;:52;;;;34333:242;34210:384;33982:627;;34656:7;34652:2;34637:27;;34646:4;34637:27;;;;;;;;;;;;34675:42;34696:4;34702:2;34706:7;34715:1;34675:20;:42::i;:::-;31908:2817;;;;;;:::o;60151:390::-;55649:13;:11;:13::i;:::-;60363:7:::1;60384;:5;:7::i;:::-;60376:21;;60405;60376:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60362:69;;;60446:2;60438:11;;;::::0;::::1;;55673:1;60151:390::o:0;34821:185::-;34959:39;34976:4;34982:2;34986:7;34959:39;;;;;;;;;;;;:16;:39::i;:::-;34821:185;;;:::o;59626:80::-;55649:13;:11;:13::i;:::-;59692:8:::1;59685:4;:15;;;;59626:80:::0;:::o;59835:98::-;55649:13;:11;:13::i;:::-;59916:11:::1;59906:7;:21;;;;;;;;;;;;:::i;:::-;;59835:98:::0;:::o;57632:25::-;;;;;;;;;;;;;:::o;23179:152::-;23251:7;23294:27;23313:7;23294:18;:27::i;:::-;23271:52;;23179:152;;;:::o;57376:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18721:233::-;18793:7;18834:1;18817:19;;:5;:19;;;18813:60;;;18845:28;;;;;;;;;;;;;;18813:60;12880:13;18891:18;:25;18910:5;18891:25;;;;;;;;;;;;;;;;:55;18884:62;;18721:233;;;:::o;56411:103::-;55649:13;:11;:13::i;:::-;56476:30:::1;56503:1;56476:18;:30::i;:::-;56411:103::o:0;59713:116::-;55649:13;:11;:13::i;:::-;59806:17:::1;59790:13;:33;;;;59713:116:::0;:::o;55763:87::-;55809:7;55836:6;;;;;;;;;;;55829:13;;55763:87;:::o;21962:104::-;22018:13;22051:7;22044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21962:104;:::o;58348:703::-;58414:6;;;;;;;;;;;58413:7;58405:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;58454:14;58471:13;:11;:13::i;:::-;58454:30;;58513:1;58499:11;:15;58491:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58576:13;;58561:11;:28;;58553:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;58669:9;;58654:11;58645:6;:20;;;;:::i;:::-;:33;;58637:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58740:11;58733:4;;:18;;;;:::i;:::-;58720:9;:31;;58712:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58839:18;;58824:11;58789:20;:32;58810:10;58789:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;58781:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;58987:11;58952:20;:32;58973:10;58952:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;58917:20;:32;58938:10;58917:32;;;;;;;;;;;;;;;:81;;;;59007:36;59017:12;:10;:12::i;:::-;59031:11;59007:9;:36::i;:::-;58348:703;;:::o;28827:234::-;28974:8;28922:18;:39;28941:19;:17;:19::i;:::-;28922:39;;;;;;;;;;;;;;;:49;28962:8;28922:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;29034:8;28998:55;;29013:19;:17;:19::i;:::-;28998:55;;;29044:8;28998:55;;;;;;:::i;:::-;;;;;;;;28827:234;;:::o;35604:399::-;35771:31;35784:4;35790:2;35794:7;35771:12;:31::i;:::-;35835:1;35817:2;:14;;;:19;35813:183;;35856:56;35887:4;35893:2;35897:7;35906:5;35856:30;:56::i;:::-;35851:145;;35940:40;;;;;;;;;;;;;;35851:145;35813:183;35604:399;;;;:::o;57589:38::-;;;;:::o;57402:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59059:429::-;59157:13;59198:16;59206:7;59198;:16::i;:::-;59182:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;59294:28;59325:10;:8;:10::i;:::-;59294:41;;59380:1;59355:14;59349:28;:32;:133;;;;;;;;;;;;;;;;;59417:14;59433:18;:7;:16;:18::i;:::-;59453:13;59400:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59349:133;59342:140;;;59059:429;;;:::o;59512:104::-;55649:13;:11;:13::i;:::-;59604:6:::1;59583:18;:27;;;;59512:104:::0;:::o;57516:31::-;;;;:::o;59939:122::-;55649:13;:11;:13::i;:::-;60038:17:::1;60022:13;:33;;;;;;;;;;;;:::i;:::-;;59939:122:::0;:::o;29218:164::-;29315:4;29339:18;:25;29358:5;29339:25;;;;;;;;;;;;;;;:35;29365:8;29339:35;;;;;;;;;;;;;;;;;;;;;;;;;29332:42;;29218:164;;;;:::o;58039:290::-;55649:13;:11;:13::i;:::-;58105:14:::1;58122:13;:11;:13::i;:::-;58105:30;;58166:1;58152:11;:15;58144:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58240:9;;58225:11;58216:6;:20;;;;:::i;:::-;:33;;58208:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58285:36;58295:12;:10;:12::i;:::-;58309:11;58285:9;:36::i;:::-;55673:1;58039:290:::0;:::o;56669:201::-;55649:13;:11;:13::i;:::-;56778:1:::1;56758:22;;:8;:22;;;;56750:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;56834:28;56853:8;56834:18;:28::i;:::-;56669:201:::0;:::o;55928:132::-;56003:12;:10;:12::i;:::-;55992:23;;:7;:5;:7::i;:::-;:23;;;55984:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55928:132::o;29640:282::-;29705:4;29761:7;29742:15;:13;:15::i;:::-;:26;;:66;;;;;29795:13;;29785:7;:23;29742:66;:153;;;;;29894:1;13656:8;29846:17;:26;29864:7;29846:26;;;;;;;;;;;;:44;:49;29742:153;29722:173;;29640:282;;;:::o;51678:105::-;51738:7;51765:10;51758:17;;51678:105;:::o;17053:92::-;17109:7;17053:92;:::o;24334:1275::-;24401:7;24421:12;24436:7;24421:22;;24504:4;24485:15;:13;:15::i;:::-;:23;24481:1061;;24538:13;;24531:4;:20;24527:1015;;;24576:14;24593:17;:23;24611:4;24593:23;;;;;;;;;;;;24576:40;;24710:1;13656:8;24682:6;:24;:29;24678:845;;;25347:113;25364:1;25354:6;:11;25347:113;;;25407:17;:25;25425:6;;;;;;;25407:25;;;;;;;;;;;;25398:34;;25347:113;;;25493:6;25486:13;;;;;;24678:845;24527:1015;;24481:1061;25570:31;;;;;;;;;;;;;;24334:1275;;;;:::o;30803:485::-;30905:27;30934:23;30975:38;31016:15;:24;31032:7;31016:24;;;;;;;;;;;30975:65;;31193:18;31170:41;;31250:19;31244:26;31225:45;;31155:126;;;;:::o;30031:659::-;30180:11;30345:16;30338:5;30334:28;30325:37;;30505:16;30494:9;30490:32;30477:45;;30655:15;30644:9;30641:30;30633:5;30622:9;30619:20;30616:56;30606:66;;30213:470;;;;;:::o;36665:159::-;;;;;:::o;50987:311::-;51122:7;51142:16;14060:3;51168:19;:41;;51142:68;;14060:3;51236:31;51247:4;51253:2;51257:9;51236:10;:31::i;:::-;51228:40;;:62;;51221:69;;;50987:311;;;;;:::o;26157:450::-;26237:14;26405:16;26398:5;26394:28;26385:37;;26582:5;26568:11;26543:23;26539:41;26536:52;26529:5;26526:63;26516:73;;26273:327;;;;:::o;37489:158::-;;;;;:::o;57030:191::-;57104:16;57123:6;;;;;;;;;;;57104:25;;57149:8;57140:6;;:17;;;;;;;;;;;;;;;;;;57204:8;57173:40;;57194:8;57173:40;;;;;;;;;;;;57030:191;;:::o;54314:98::-;54367:7;54394:10;54387:17;;54314:98;:::o;45510:112::-;45587:27;45597:2;45601:8;45587:27;;;;;;;;;;;;:9;:27::i;:::-;45510:112;;:::o;38087:716::-;38250:4;38296:2;38271:45;;;38317:19;:17;:19::i;:::-;38338:4;38344:7;38353:5;38271:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38267:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38571:1;38554:6;:13;:18;38550:235;;;38600:40;;;;;;;;;;;;;;38550:235;38743:6;38737:13;38728:6;38724:2;38720:15;38713:38;38267:529;38440:54;;;38430:64;;;:6;:64;;;;38423:71;;;38087:716;;;;;;:::o;57914:102::-;57974:13;58003:7;57996:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57914:102;:::o;463:723::-;519:13;749:1;740:5;:10;736:53;;;767:10;;;;;;;;;;;;;;;;;;;;;736:53;799:12;814:5;799:20;;830:14;855:78;870:1;862:4;:9;855:78;;888:8;;;;;:::i;:::-;;;;919:2;911:10;;;;;:::i;:::-;;;855:78;;;943:19;975:6;965:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;943:39;;993:154;1009:1;1000:5;:10;993:154;;1037:1;1027:11;;;;;:::i;:::-;;;1104:2;1096:5;:10;;;;:::i;:::-;1083:2;:24;;;;:::i;:::-;1070:39;;1053:6;1060;1053:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;1133:2;1124:11;;;;;:::i;:::-;;;993:154;;;1171:6;1157:21;;;;;463:723;;;;:::o;50688:147::-;50825:6;50688:147;;;;;:::o;44737:689::-;44868:19;44874:2;44878:8;44868:5;:19::i;:::-;44947:1;44929:2;:14;;;:19;44925:483;;44969:11;44983:13;;44969:27;;45015:13;45037:8;45031:3;:14;45015:30;;45064:233;45095:62;45134:1;45138:2;45142:7;;;;;;45151:5;45095:30;:62::i;:::-;45090:167;;45193:40;;;;;;;;;;;;;;45090:167;45292:3;45284:5;:11;45064:233;;45379:3;45362:13;;:20;45358:34;;45384:8;;;45358:34;44925:483;;;44737:689;;;:::o;39265:2720::-;39338:20;39361:13;;39338:36;;39401:1;39389:8;:13;39385:44;;;39411:18;;;;;;;;;;;;;;39385:44;39442:61;39472:1;39476:2;39480:12;39494:8;39442:21;:61::i;:::-;39986:1;13018:2;39956:1;:26;;39955:32;39943:8;:45;39917:18;:22;39936:2;39917:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;40265:139;40302:2;40356:33;40379:1;40383:2;40387:1;40356:14;:33::i;:::-;40323:30;40344:8;40323:20;:30::i;:::-;:66;40265:18;:139::i;:::-;40231:17;:31;40249:12;40231:31;;;;;;;;;;;:173;;;;40421:16;40452:11;40481:8;40466:12;:23;40452:37;;41002:16;40998:2;40994:25;40982:37;;41374:12;41334:8;41293:1;41231:25;41172:1;41111;41084:335;41499:1;41485:12;41481:20;41439:346;41540:3;41531:7;41528:16;41439:346;;41758:7;41748:8;41745:1;41718:25;41715:1;41712;41707:59;41593:1;41584:7;41580:15;41569:26;;41439:346;;;41443:77;41830:1;41818:8;:13;41814:45;;;41840:19;;;;;;;;;;;;;;41814:45;41892:3;41876:13;:19;;;;39265:2720;;41917:60;41946:1;41950:2;41954:12;41968:8;41917:20;:60::i;:::-;39265:2720;;;:::o;26709:324::-;26779:14;27012:1;27002:8;26999:15;26973:24;26969:46;26959:56;;26881:145;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7730:845::-;7833:3;7870:5;7864:12;7899:36;7925:9;7899:36;:::i;:::-;7951:89;8033:6;8028:3;7951:89;:::i;:::-;7944:96;;8071:1;8060:9;8056:17;8087:1;8082:137;;;;8233:1;8228:341;;;;8049:520;;8082:137;8166:4;8162:9;8151;8147:25;8142:3;8135:38;8202:6;8197:3;8193:16;8186:23;;8082:137;;8228:341;8295:38;8327:5;8295:38;:::i;:::-;8355:1;8369:154;8383:6;8380:1;8377:13;8369:154;;;8457:7;8451:14;8447:1;8442:3;8438:11;8431:35;8507:1;8498:7;8494:15;8483:26;;8405:4;8402:1;8398:12;8393:17;;8369:154;;;8552:6;8547:3;8543:16;8536:23;;8235:334;;8049:520;;7837:738;;;;;;:::o;8581:366::-;8723:3;8744:67;8808:2;8803:3;8744:67;:::i;:::-;8737:74;;8820:93;8909:3;8820:93;:::i;:::-;8938:2;8933:3;8929:12;8922:19;;8727:220;;;:::o;8953:366::-;9095:3;9116:67;9180:2;9175:3;9116:67;:::i;:::-;9109:74;;9192:93;9281:3;9192:93;:::i;:::-;9310:2;9305:3;9301:12;9294:19;;9099:220;;;:::o;9325:366::-;9467:3;9488:67;9552:2;9547:3;9488:67;:::i;:::-;9481:74;;9564:93;9653:3;9564:93;:::i;:::-;9682:2;9677:3;9673:12;9666:19;;9471:220;;;:::o;9697:366::-;9839:3;9860:67;9924:2;9919:3;9860:67;:::i;:::-;9853:74;;9936:93;10025:3;9936:93;:::i;:::-;10054:2;10049:3;10045:12;10038:19;;9843:220;;;:::o;10069:366::-;10211:3;10232:67;10296:2;10291:3;10232:67;:::i;:::-;10225:74;;10308:93;10397:3;10308:93;:::i;:::-;10426:2;10421:3;10417:12;10410:19;;10215:220;;;:::o;10441:366::-;10583:3;10604:67;10668:2;10663:3;10604:67;:::i;:::-;10597:74;;10680:93;10769:3;10680:93;:::i;:::-;10798:2;10793:3;10789:12;10782:19;;10587:220;;;:::o;10813:366::-;10955:3;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11052:93;11141:3;11052:93;:::i;:::-;11170:2;11165:3;11161:12;11154:19;;10959:220;;;:::o;11185:398::-;11344:3;11365:83;11446:1;11441:3;11365:83;:::i;:::-;11358:90;;11457:93;11546:3;11457:93;:::i;:::-;11575:1;11570:3;11566:11;11559:18;;11348:235;;;:::o;11589:366::-;11731:3;11752:67;11816:2;11811:3;11752:67;:::i;:::-;11745:74;;11828:93;11917:3;11828:93;:::i;:::-;11946:2;11941:3;11937:12;11930:19;;11735:220;;;:::o;11961:366::-;12103:3;12124:67;12188:2;12183:3;12124:67;:::i;:::-;12117:74;;12200:93;12289:3;12200:93;:::i;:::-;12318:2;12313:3;12309:12;12302:19;;12107:220;;;:::o;12333:118::-;12420:24;12438:5;12420:24;:::i;:::-;12415:3;12408:37;12398:53;;:::o;12457:589::-;12682:3;12704:95;12795:3;12786:6;12704:95;:::i;:::-;12697:102;;12816:95;12907:3;12898:6;12816:95;:::i;:::-;12809:102;;12928:92;13016:3;13007:6;12928:92;:::i;:::-;12921:99;;13037:3;13030:10;;12686:360;;;;;;:::o;13052:379::-;13236:3;13258:147;13401:3;13258:147;:::i;:::-;13251:154;;13422:3;13415:10;;13240:191;;;:::o;13437:222::-;13530:4;13568:2;13557:9;13553:18;13545:26;;13581:71;13649:1;13638:9;13634:17;13625:6;13581:71;:::i;:::-;13535:124;;;;:::o;13665:640::-;13860:4;13898:3;13887:9;13883:19;13875:27;;13912:71;13980:1;13969:9;13965:17;13956:6;13912:71;:::i;:::-;13993:72;14061:2;14050:9;14046:18;14037:6;13993:72;:::i;:::-;14075;14143:2;14132:9;14128:18;14119:6;14075:72;:::i;:::-;14194:9;14188:4;14184:20;14179:2;14168:9;14164:18;14157:48;14222:76;14293:4;14284:6;14222:76;:::i;:::-;14214:84;;13865:440;;;;;;;:::o;14311:210::-;14398:4;14436:2;14425:9;14421:18;14413:26;;14449:65;14511:1;14500:9;14496:17;14487:6;14449:65;:::i;:::-;14403:118;;;;:::o;14527:313::-;14640:4;14678:2;14667:9;14663:18;14655:26;;14727:9;14721:4;14717:20;14713:1;14702:9;14698:17;14691:47;14755:78;14828:4;14819:6;14755:78;:::i;:::-;14747:86;;14645:195;;;;:::o;14846:419::-;15012:4;15050:2;15039:9;15035:18;15027:26;;15099:9;15093:4;15089:20;15085:1;15074:9;15070:17;15063:47;15127:131;15253:4;15127:131;:::i;:::-;15119:139;;15017:248;;;:::o;15271:419::-;15437:4;15475:2;15464:9;15460:18;15452:26;;15524:9;15518:4;15514:20;15510:1;15499:9;15495:17;15488:47;15552:131;15678:4;15552:131;:::i;:::-;15544:139;;15442:248;;;:::o;15696:419::-;15862:4;15900:2;15889:9;15885:18;15877:26;;15949:9;15943:4;15939:20;15935:1;15924:9;15920:17;15913:47;15977:131;16103:4;15977:131;:::i;:::-;15969:139;;15867:248;;;:::o;16121:419::-;16287:4;16325:2;16314:9;16310:18;16302:26;;16374:9;16368:4;16364:20;16360:1;16349:9;16345:17;16338:47;16402:131;16528:4;16402:131;:::i;:::-;16394:139;;16292:248;;;:::o;16546:419::-;16712:4;16750:2;16739:9;16735:18;16727:26;;16799:9;16793:4;16789:20;16785:1;16774:9;16770:17;16763:47;16827:131;16953:4;16827:131;:::i;:::-;16819:139;;16717:248;;;:::o;16971:419::-;17137:4;17175:2;17164:9;17160:18;17152:26;;17224:9;17218:4;17214:20;17210:1;17199:9;17195:17;17188:47;17252:131;17378:4;17252:131;:::i;:::-;17244:139;;17142:248;;;:::o;17396:419::-;17562:4;17600:2;17589:9;17585:18;17577:26;;17649:9;17643:4;17639:20;17635:1;17624:9;17620:17;17613:47;17677:131;17803:4;17677:131;:::i;:::-;17669:139;;17567:248;;;:::o;17821:419::-;17987:4;18025:2;18014:9;18010:18;18002:26;;18074:9;18068:4;18064:20;18060:1;18049:9;18045:17;18038:47;18102:131;18228:4;18102:131;:::i;:::-;18094:139;;17992:248;;;:::o;18246:419::-;18412:4;18450:2;18439:9;18435:18;18427:26;;18499:9;18493:4;18489:20;18485:1;18474:9;18470:17;18463:47;18527:131;18653:4;18527:131;:::i;:::-;18519:139;;18417:248;;;:::o;18671:222::-;18764:4;18802:2;18791:9;18787:18;18779:26;;18815:71;18883:1;18872:9;18868:17;18859:6;18815:71;:::i;:::-;18769:124;;;;:::o;18899:129::-;18933:6;18960:20;;:::i;:::-;18950:30;;18989:33;19017:4;19009:6;18989:33;:::i;:::-;18940:88;;;:::o;19034:75::-;19067:6;19100:2;19094:9;19084:19;;19074:35;:::o;19115:307::-;19176:4;19266:18;19258:6;19255:30;19252:2;;;19288:18;;:::i;:::-;19252:2;19326:29;19348:6;19326:29;:::i;:::-;19318:37;;19410:4;19404;19400:15;19392:23;;19181:241;;;:::o;19428:308::-;19490:4;19580:18;19572:6;19569:30;19566:2;;;19602:18;;:::i;:::-;19566:2;19640:29;19662:6;19640:29;:::i;:::-;19632:37;;19724:4;19718;19714:15;19706:23;;19495:241;;;:::o;19742:141::-;19791:4;19814:3;19806:11;;19837:3;19834:1;19827:14;19871:4;19868:1;19858:18;19850:26;;19796:87;;;:::o;19889:98::-;19940:6;19974:5;19968:12;19958:22;;19947:40;;;:::o;19993:99::-;20045:6;20079:5;20073:12;20063:22;;20052:40;;;:::o;20098:168::-;20181:11;20215:6;20210:3;20203:19;20255:4;20250:3;20246:14;20231:29;;20193:73;;;;:::o;20272:147::-;20373:11;20410:3;20395:18;;20385:34;;;;:::o;20425:169::-;20509:11;20543:6;20538:3;20531:19;20583:4;20578:3;20574:14;20559:29;;20521:73;;;;:::o;20600:148::-;20702:11;20739:3;20724:18;;20714:34;;;;:::o;20754:305::-;20794:3;20813:20;20831:1;20813:20;:::i;:::-;20808:25;;20847:20;20865:1;20847:20;:::i;:::-;20842:25;;21001:1;20933:66;20929:74;20926:1;20923:81;20920:2;;;21007:18;;:::i;:::-;20920:2;21051:1;21048;21044:9;21037:16;;20798:261;;;;:::o;21065:185::-;21105:1;21122:20;21140:1;21122:20;:::i;:::-;21117:25;;21156:20;21174:1;21156:20;:::i;:::-;21151:25;;21195:1;21185:2;;21200:18;;:::i;:::-;21185:2;21242:1;21239;21235:9;21230:14;;21107:143;;;;:::o;21256:348::-;21296:7;21319:20;21337:1;21319:20;:::i;:::-;21314:25;;21353:20;21371:1;21353:20;:::i;:::-;21348:25;;21541:1;21473:66;21469:74;21466:1;21463:81;21458:1;21451:9;21444:17;21440:105;21437:2;;;21548:18;;:::i;:::-;21437:2;21596:1;21593;21589:9;21578:20;;21304:300;;;;:::o;21610:191::-;21650:4;21670:20;21688:1;21670:20;:::i;:::-;21665:25;;21704:20;21722:1;21704:20;:::i;:::-;21699:25;;21743:1;21740;21737:8;21734:2;;;21748:18;;:::i;:::-;21734:2;21793:1;21790;21786:9;21778:17;;21655:146;;;;:::o;21807:96::-;21844:7;21873:24;21891:5;21873:24;:::i;:::-;21862:35;;21852:51;;;:::o;21909:90::-;21943:7;21986:5;21979:13;21972:21;21961:32;;21951:48;;;:::o;22005:149::-;22041:7;22081:66;22074:5;22070:78;22059:89;;22049:105;;;:::o;22160:126::-;22197:7;22237:42;22230:5;22226:54;22215:65;;22205:81;;;:::o;22292:77::-;22329:7;22358:5;22347:16;;22337:32;;;:::o;22375:154::-;22459:6;22454:3;22449;22436:30;22521:1;22512:6;22507:3;22503:16;22496:27;22426:103;;;:::o;22535:307::-;22603:1;22613:113;22627:6;22624:1;22621:13;22613:113;;;22712:1;22707:3;22703:11;22697:18;22693:1;22688:3;22684:11;22677:39;22649:2;22646:1;22642:10;22637:15;;22613:113;;;22744:6;22741:1;22738:13;22735:2;;;22824:1;22815:6;22810:3;22806:16;22799:27;22735:2;22584:258;;;;:::o;22848:320::-;22892:6;22929:1;22923:4;22919:12;22909:22;;22976:1;22970:4;22966:12;22997:18;22987:2;;23053:4;23045:6;23041:17;23031:27;;22987:2;23115;23107:6;23104:14;23084:18;23081:38;23078:2;;;23134:18;;:::i;:::-;23078:2;22899:269;;;;:::o;23174:281::-;23257:27;23279:4;23257:27;:::i;:::-;23249:6;23245:40;23387:6;23375:10;23372:22;23351:18;23339:10;23336:34;23333:62;23330:2;;;23398:18;;:::i;:::-;23330:2;23438:10;23434:2;23427:22;23217:238;;;:::o;23461:233::-;23500:3;23523:24;23541:5;23523:24;:::i;:::-;23514:33;;23569:66;23562:5;23559:77;23556:2;;;23639:18;;:::i;:::-;23556:2;23686:1;23679:5;23675:13;23668:20;;23504:190;;;:::o;23700:176::-;23732:1;23749:20;23767:1;23749:20;:::i;:::-;23744:25;;23783:20;23801:1;23783:20;:::i;:::-;23778:25;;23822:1;23812:2;;23827:18;;:::i;:::-;23812:2;23868:1;23865;23861:9;23856:14;;23734:142;;;;:::o;23882:180::-;23930:77;23927:1;23920:88;24027:4;24024:1;24017:15;24051:4;24048:1;24041:15;24068:180;24116:77;24113:1;24106:88;24213:4;24210:1;24203:15;24237:4;24234:1;24227:15;24254:180;24302:77;24299:1;24292:88;24399:4;24396:1;24389:15;24423:4;24420:1;24413:15;24440:180;24488:77;24485:1;24478:88;24585:4;24582:1;24575:15;24609:4;24606:1;24599:15;24626:102;24667:6;24718:2;24714:7;24709:2;24702:5;24698:14;24694:28;24684:38;;24674:54;;;:::o;24734:225::-;24874:34;24870:1;24862:6;24858:14;24851:58;24943:8;24938:2;24930:6;24926:15;24919:33;24840:119;:::o;24965:235::-;25105:34;25101:1;25093:6;25089:14;25082:58;25174:18;25169:2;25161:6;25157:15;25150:43;25071:129;:::o;25206:172::-;25346:24;25342:1;25334:6;25330:14;25323:48;25312:66;:::o;25384:223::-;25524:34;25520:1;25512:6;25508:14;25501:58;25593:6;25588:2;25580:6;25576:15;25569:31;25490:117;:::o;25613:182::-;25753:34;25749:1;25741:6;25737:14;25730:58;25719:76;:::o;25801:172::-;25941:24;25937:1;25929:6;25925:14;25918:48;25907:66;:::o;25979:234::-;26119:34;26115:1;26107:6;26103:14;26096:58;26188:17;26183:2;26175:6;26171:15;26164:42;26085:128;:::o;26219:114::-;26325:8;:::o;26339:168::-;26479:20;26475:1;26467:6;26463:14;26456:44;26445:62;:::o;26513:177::-;26653:29;26649:1;26641:6;26637:14;26630:53;26619:71;:::o;26696:122::-;26769:24;26787:5;26769:24;:::i;:::-;26762:5;26759:35;26749:2;;26808:1;26805;26798:12;26749:2;26739:79;:::o;26824:116::-;26894:21;26909:5;26894:21;:::i;:::-;26887:5;26884:32;26874:2;;26930:1;26927;26920:12;26874:2;26864:76;:::o;26946:120::-;27018:23;27035:5;27018:23;:::i;:::-;27011:5;27008:34;26998:2;;27056:1;27053;27046:12;26998:2;26988:78;:::o;27072:122::-;27145:24;27163:5;27145:24;:::i;:::-;27138:5;27135:35;27125:2;;27184:1;27181;27174:12;27125:2;27115:79;:::o

Swarm Source

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