ETH Price: $2,699.17 (-3.16%)

AdventurerOfTheVoid (AoV)

Overview

TokenID

15

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Adventurers of the Void are the population of the Realmverse. Start off as one of the six Archetypes and Transcend into NEW Variants every month.

Contract Source Code Verified (Exact Match)

Contract Name:
AoV

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Arbiscan.io on 2022-08-31
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

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

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

  /**
   * The caller cannot approve to their own address.
   */
  error ApproveToCaller();

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

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

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

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

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

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

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

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

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

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

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

  struct TokenOwnership {
    // The address of the owner.
    address addr;
    // Keeps track of 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 through `_extraData`.
    uint24 extraData;
  }

  /**
   * @dev Returns the total amount of tokens stored by the contract.
   *
   * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
   */
  function totalSupply() external view returns (uint256);

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

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

  // ==============================
  //            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`.
   *
   * 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 calldata data
  ) external;

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

  /**
   * @dev Transfers `tokenId` token 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 standard. See `_mintERC2309` for more details.
   */
  event ConsecutiveTransfer(
    uint256 indexed fromTokenId,
    uint256 toTokenId,
    address indexed from,
    address indexed to
  );
}

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
  // 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 tokenId of the next token 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 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

  constructor(string memory name_, string memory symbol_) {
    _name = name_;
    _symbol = symbol_;
    _currentIndex = _startTokenId();
  }

  /**
   * @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 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 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 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 returns (uint256) {
    return _burnCounter;
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  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: 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.
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view 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 {
    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;
  }

  /**
   * 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 ownership that has an address and is not burned
            // before an ownership that does not have an address and is not burned.
            // Hence, curr will not underflow.
            //
            // We can directly compare the packed value.
            // If the address is zero, packed is zero.
            while (packed == 0) {
              packed = _packedOwnerships[--curr];
            }
            return packed;
          }
        }
    }
    revert OwnerQueryForNonexistentToken();
  }

  /**
   * 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);
  }

  /**
   * Returns the unpacked `TokenOwnership` struct at `index`.
   */
  function _ownershipAt(uint256 index)
    internal
    view
    returns (TokenOwnership memory)
  {
    return _unpackedOwnership(_packedOwnerships[index]);
  }

  /**
   * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
   */
  function _initializeOwnershipAt(uint256 index) internal {
    if (_packedOwnerships[index] == 0) {
      _packedOwnerships[index] = _packedOwnershipOf(index);
    }
  }

  /**
   * Gas spent here starts off proportional to the maximum mint batch size.
   * It gradually moves to O(1) as tokens get transferred around in the collection over time.
   */
  function _ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    return _unpackedOwnership(_packedOwnershipOf(tokenId));
  }

  /**
   * @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 See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return address(uint160(_packedOwnershipOf(tokenId)));
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  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 "";
  }

  /**
   * @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))
    }
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ownerOf(tokenId);

    if (_msgSenderERC721A() != owner)
      if (!isApprovedForAll(owner, _msgSenderERC721A())) {
        revert ApprovalCallerNotOwnerNorApproved();
      }

    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved)
    public
    virtual
    override
  {
    if (operator == _msgSenderERC721A()) revert ApproveToCaller();

    _operatorApprovals[_msgSenderERC721A()][operator] = approved;
    emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public virtual override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  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 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 (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return
      _startTokenId() <= tokenId &&
      tokenId < _currentIndex && // If within bounds,
      _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
  }

  /**
   * @dev Equivalent to `_safeMint(to, quantity, '')`.
   */
  function _safeMint(address to, uint256 quantity) internal returns (uint256) {
    return _safeMint(to, 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 returns (uint256) {
    uint256 startTokenId = _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();
      }
    }

    return startTokenId;
  }

  /**
   * @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 returns (uint256) {
    uint256 startTokenId = _currentIndex;
    if (to == address(0)) revert MintToZeroAddress();
    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 tokenId = startTokenId;
      uint256 end = startTokenId + quantity;
      do {
        emit Transfer(address(0), to, tokenId++);
      } while (tokenId < end);

      _currentIndex = end;
    }
    _afterTokenTransfers(address(0), to, startTokenId, quantity);

    return startTokenId;
  }

  /**
   * @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 {
    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 Returns the storage slot and value for the approved address of `tokenId`.
   */
  function _getApprovedAddress(uint256 tokenId)
    private
    view
    returns (uint256 approvedAddressSlot, address approvedAddress)
  {
    mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
    // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
    assembly {
      // Compute the slot.
      mstore(0x00, tokenId)
      mstore(0x20, tokenApprovalsPtr.slot)
      approvedAddressSlot := keccak256(0x00, 0x40)
      // Load the slot's value from storage.
      approvedAddress := sload(approvedAddressSlot)
    }
  }

  /**
   * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
   */
  function _isOwnerOrApproved(
    address approvedAddress,
    address from,
    address msgSender
  ) private pure returns (bool result) {
    assembly {
      // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
      from := and(from, BITMASK_ADDRESS)
      // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
      msgSender := and(msgSender, BITMASK_ADDRESS)
      // `msgSender == from || msgSender == approvedAddress`.
      result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
    }
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * 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
    ) = _getApprovedAddress(tokenId);

    // The nested ifs save around 20+ gas over a compound boolean condition.
    if (!_isOwnerOrApproved(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 `_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
    ) = _getApprovedAddress(tokenId);

    if (approvalCheck) {
      // The nested ifs save around 20+ gas over a compound boolean condition.
      if (!_isOwnerOrApproved(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++;
    }
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool 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))
        }
      }
    }
  }

  /**
   * @dev Directly sets the extra data for the ownership data `index`.
   */
  function _setExtraDataAt(uint256 index, uint24 extraData) internal {
    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 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;
  }

  /**
   * @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 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 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 returns (string memory ptr) {
    assembly {
      // The maximum value of a uint256 contains 78 digits (1 byte per digit),
      // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
      // We will need 1 32-byte word to store the length,
      // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
      ptr := add(mload(0x40), 128)
      // Update the free memory pointer to allocate.
      mstore(0x40, ptr)

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

      // We write the string from the rightmost digit to the leftmost digit.
      // The following is essentially a do-while loop that also handles the zero case.
      // Costs a bit more than early returning for the zero case,
      // but cheaper in terms of deployment and overall runtime costs.
      for {
        // Initialize and perform the first pass without check.
        let temp := value
        // Move the pointer 1 byte leftwards to point to an empty character slot.
        ptr := sub(ptr, 1)
        // Write the character to the pointer. 48 is the ASCII index of '0'.
        mstore8(ptr, add(48, mod(temp, 10)))
        temp := div(temp, 10)
      } temp {
        // Keep dividing `temp` until zero.
        temp := div(temp, 10)
      } {
        // Body of the for loop.
        ptr := sub(ptr, 1)
        mstore8(ptr, add(48, mod(temp, 10)))
      }

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

interface IAoV {
  function burn(uint256 _tokenId) external;

  function mintFor(address _for, uint256 _quantity) external returns (uint256);
}

interface IManager {
  function isAdmin(address _addr) external view returns (bool);

  function isManager(address _addr, uint256 _type) external view returns (bool);

  function addManager(address _addr, uint256 _type) external;

  function removeManager(address _addr, uint256 _type) external;

  function addAdmin(address _addr) external;

  function removeAdmin(address _addr) external;
}

abstract contract ManagerModifier {
  //=======================================
  // Immutables
  //=======================================
  IManager public immutable MANAGER;

  //=======================================
  // Constructor
  //=======================================
  constructor(address _manager) {
    MANAGER = IManager(_manager);
  }

  //=======================================
  // Modifiers
  //=======================================
  modifier onlyAdmin() {
    require(MANAGER.isAdmin(msg.sender), "Manager: Not an Admin");
    _;
  }

  modifier onlyManager() {
    require(MANAGER.isManager(msg.sender, 0), "Manager: Not manager");
    _;
  }

  modifier onlyMinter() {
    require(MANAGER.isManager(msg.sender, 1), "Manager: Not minter");
    _;
  }

  modifier onlyTokenMinter() {
    require(MANAGER.isManager(msg.sender, 2), "Manager: Not token minter");
    _;
  }

  modifier onlyBinder() {
    require(MANAGER.isManager(msg.sender, 3), "Manager: Not binder");
    _;
  }
}

interface IAovMetadata {
  function uri(address _addr, uint256 _tokenId)
    external
    view
    returns (string memory);
}

interface IERC721Bound {
  function unbind(address[] calldata _addresses, uint256[] calldata _tokenIds)
    external;

  function unbind(address _addr, uint256 _tokenId) external;

  function isUnbound(address _addr, uint256 _tokenId)
    external
    view
    returns (bool);
}

interface IAdventurerData {
  function initData(
    address[] calldata _addresses,
    uint256[] calldata _ids,
    bytes32[][] calldata _proofs,
    uint256[] calldata _professions,
    uint256[][] calldata _points
  ) external;

  function baseProperties(
    address _addr,
    uint256 _id,
    uint256 _start,
    uint256 _end
  ) external view returns (uint256[] memory);

  function aovProperties(
    address _addr,
    uint256 _id,
    uint256 _start,
    uint256 _end
  ) external view returns (uint256[] memory);

  function extensionProperties(
    address _addr,
    uint256 _id,
    uint256 _start,
    uint256 _end
  ) external view returns (uint256[] memory);

  function createFor(
    address _addr,
    uint256 _id,
    uint256[] calldata _points
  ) external;

  function createFor(
    address _addr,
    uint256 _id,
    uint256 _archetype
  ) external;

  function addToBase(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function updateBase(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function removeFromBase(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function addToAov(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function updateAov(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function removeFromAov(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function addToExtension(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function updateExtension(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function removeFromExtension(
    address _addr,
    uint256 _id,
    uint256 _prop,
    uint256 _val
  ) external;

  function base(
    address _addr,
    uint256 _id,
    uint256 _prop
  ) external view returns (uint256);

  function aov(
    address _addr,
    uint256 _id,
    uint256 _prop
  ) external view returns (uint256);

  function extension(
    address _addr,
    uint256 _id,
    uint256 _prop
  ) external view returns (uint256);
}

contract AoV is IAoV, ERC721A, ReentrancyGuard, ManagerModifier {
  //=======================================
  // Immutables
  //=======================================
  IERC721Bound public immutable BOUND;
  IAdventurerData public immutable ADVENTURER_DATA;

  //=======================================
  // Metadata
  //=======================================
  IAovMetadata public metadata;

  //=======================================
  // Constructor
  //=======================================
  constructor(
    address _manager,
    address _bound,
    address _data,
    address _metadata
  ) ERC721A("AdventurerOfTheVoid", "AoV") ManagerModifier(_manager) {
    BOUND = IERC721Bound(_bound);
    ADVENTURER_DATA = IAdventurerData(_data);

    metadata = IAovMetadata(_metadata);
  }

  //=======================================
  // External
  //=======================================
  function burn(uint256 _tokenId) external override nonReentrant {
    _burn(_tokenId, true);
  }

  function mintFor(address _for, uint256 _quantity)
    external
    override
    onlyMinter
    returns (uint256)
  {
    // Mint
    return _safeMint(_for, _quantity);
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory)
  {
    return metadata.uri(address(this), _tokenId);
  }

  //=======================================
  // Admin
  //=======================================
  function updateMetadata(address _addr) external onlyAdmin {
    metadata = IAovMetadata(_addr);
  }

  //=======================================
  // Internal
  //=======================================
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal override {
    super._beforeTokenTransfers(from, to, startTokenId, quantity);

    // Check if sender is manager
    if (!MANAGER.isManager(msg.sender, 0)) {
      // Check if minting or burning
      if (from != address(0) && to != address(0)) {
        // Check if unbound
        require(
          BOUND.isUnbound(address(this), startTokenId),
          "AoV: Token not unbound"
        );
      }
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"address","name":"_bound","type":"address"},{"internalType":"address","name":"_data","type":"address"},{"internalType":"address","name":"_metadata","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADVENTURER_DATA","outputs":[{"internalType":"contract IAdventurerData","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BOUND","outputs":[{"internalType":"contract IERC721Bound","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER","outputs":[{"internalType":"contract IManager","name":"","type":"address"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadata","outputs":[{"internalType":"contract IAovMetadata","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_for","type":"address"},{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"_addr","type":"address"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040523480156200001157600080fd5b50604051620017f3380380620017f38339810160408190526200003491620001c6565b604080518082018252601381527f416476656e74757265724f66546865566f69640000000000000000000000000060208083019182528351808501909452600384526220b7ab60e91b90840152815187939162000095916002919062000103565b508051620000ab90600390602084019062000103565b506000805550506001600855606090811b6001600160601b031990811660805293811b841660a0529190911b90911660c052600980546001600160a01b0319166001600160a01b03909216919091179055506200025f565b828054620001119062000222565b90600052602060002090601f01602090048101928262000135576000855562000180565b82601f106200015057805160ff191683800117855562000180565b8280016001018555821562000180579182015b828111156200018057825182559160200191906001019062000163565b506200018e92915062000192565b5090565b5b808211156200018e576000815560010162000193565b80516001600160a01b0381168114620001c157600080fd5b919050565b60008060008060808587031215620001dc578384fd5b620001e785620001a9565b9350620001f760208601620001a9565b92506200020760408601620001a9565b91506200021760608601620001a9565b905092959194509250565b600181811c908216806200023757607f821691505b602082108114156200025957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c05160601c61153f620002b4600039600061033701526000818161029b0152610c850152600081816101d4015281816108b701528181610a450152610bbe015261153f6000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063c52141911161007c578063c521419114610296578063c5e2a7db146102bd578063c87b56dd146102d0578063da1919b3146102e3578063e985e9c5146102f6578063fcac08921461033257600080fd5b80636352211e1461024257806370a082311461025557806395d89b4114610268578063a22cb46514610270578063b88d4fde1461028357600080fd5b80631b2df850116100ff5780631b2df850146101cf57806323b872dd146101f6578063392f37e91461020957806342842e0e1461021c57806342966c681461022f57600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a3660046112cd565b610359565b60405190151581526020015b60405180910390f35b61016c6103ab565b60405161015b91906113f9565b61018c610187366004611378565b61043d565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611288565b610481565b005b600154600054035b60405190815260200161015b565b61018c7f000000000000000000000000000000000000000000000000000000000000000081565b6101b7610204366004611174565b610521565b60095461018c906001600160a01b031681565b6101b761022a366004611174565b6106c9565b6101b761023d366004611378565b6106e9565b61018c610250366004611378565b610759565b6101c1610263366004611128565b610764565b61016c6107b3565b6101b761027e366004611252565b6107c2565b6101b76102913660046111af565b610858565b61018c7f000000000000000000000000000000000000000000000000000000000000000081565b6101b76102cb366004611128565b6108a2565b61016c6102de366004611378565b61099f565b6101c16102f1366004611288565b610a26565b61014f610304366004611142565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61018c7f000000000000000000000000000000000000000000000000000000000000000081565b60006301ffc9a760e01b6001600160e01b03198316148061038a57506380ac58cd60e01b6001600160e01b03198316145b806103a55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103ba90611491565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611491565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061044882610b1a565b610465576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048c82610759565b9050336001600160a01b038216146104c5576104a88133610304565b6104c5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061052c82610b41565b9050836001600160a01b0316816001600160a01b03161461055f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461058b8187335b6001600160a01b039081169116811491141790565b6105b6576105998633610304565b6105b657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166105dd57604051633a954ecd60e21b815260040160405180910390fd5b6105ea8686866001610ba2565b80156105f557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610680576001840160008181526004602052604090205461067e57600054811461067e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6106e483838360405180602001604052806000815250610858565b505050565b600260085414156107415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855610751816001610d4c565b506001600855565b60006103a582610b41565b60006001600160a01b03821661078d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546103ba90611491565b6001600160a01b0382163314156107ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610863848484610521565b6001600160a01b0383163b1561089c5761087f84848484610e9d565b61089c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604051630935e01b60e21b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906324d7806c9060240160206040518083038186803b15801561090157600080fd5b505afa158015610915573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093991906112b1565b61097d5760405162461bcd60e51b815260206004820152601560248201527426b0b730b3b2b91d102737ba1030b71020b236b4b760591b6044820152606401610738565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546040516328205a9360e01b8152306004820152602481018390526060916001600160a01b0316906328205a939060440160006040518083038186803b1580156109ea57600080fd5b505afa1580156109fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103a59190810190611305565b6040516365e6a4df60e11b8152336004820152600160248201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cbcd49be9060440160206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac791906112b1565b610b095760405162461bcd60e51b815260206004820152601360248201527226b0b730b3b2b91d102737ba1036b4b73a32b960691b6044820152606401610738565b610b138383610f94565b9392505050565b60008054821080156103a5575050600090815260046020526040902054600160e01b161590565b600081600054811015610b8957600081815260046020526040902054600160e01b8116610b87575b80610b13575060001901600081815260046020526040902054610b69565b505b604051636f96cda160e11b815260040160405180910390fd5b6040516365e6a4df60e11b8152336004820152600060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cbcd49be9060440160206040518083038186803b158015610c0857600080fd5b505afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4091906112b1565b61089c576001600160a01b03841615801590610c6457506001600160a01b03831615155b1561089c5760405163ecfae2e360e01b8152306004820152602481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063ecfae2e39060440160206040518083038186803b158015610ccf57600080fd5b505afa158015610ce3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0791906112b1565b61089c5760405162461bcd60e51b8152602060048201526016602482015275105bd58e88151bdad95b881b9bdd081d5b989bdd5b9960521b6044820152606401610738565b6000610d5783610b41565b905080600080610d7586600090815260066020526040902080549091565b915091508415610db557610d8a818433610576565b610db557610d988333610304565b610db557604051632ce44b5f60e11b815260040160405180910390fd5b610dc3836000886001610ba2565b8015610dce57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416610e555760018601600081815260046020526040902054610e53576000548114610e535760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ed29033908990889088906004016113bc565b602060405180830381600087803b158015610eec57600080fd5b505af1925050508015610f1c575060408051601f3d908101601f19168201909252610f19918101906112e9565b60015b610f77573d808015610f4a576040519150601f19603f3d011682016040523d82523d6000602084013e610f4f565b606091505b508051610f6f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000610b13838360405180602001604052806000815250600080610fb88585611021565b90506001600160a01b0385163b15611019576000548481035b610fe46000888380600101945088610e9d565b611001576040516368d2bf6b60e11b815260040160405180910390fd5b818110610fd157816000541461101657600080fd5b50505b949350505050565b600080546001600160a01b03841661104b57604051622e076360e81b815260040160405180910390fd5b826110695760405163b562e8dd60e01b815260040160405180910390fd5b6110766000858386610ba2565b6001600160a01b038416600081815260056020526040902080546801000000000000000186020190554260a01b6001851460e11b1717600082815260046020526040902055808381015b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110c05760005550610b13565b80356001600160a01b038116811461112357600080fd5b919050565b600060208284031215611139578081fd5b610b138261110c565b60008060408385031215611154578081fd5b61115d8361110c565b915061116b6020840161110c565b90509250929050565b600080600060608486031215611188578081fd5b6111918461110c565b925061119f6020850161110c565b9150604084013590509250925092565b600080600080608085870312156111c4578081fd5b6111cd8561110c565b93506111db6020860161110c565b925060408501359150606085013567ffffffffffffffff8111156111fd578182fd5b8501601f8101871361120d578182fd5b803561122061121b8261143d565b61140c565b818152886020838501011115611234578384fd5b81602084016020830137908101602001929092525092959194509250565b60008060408385031215611264578182fd5b61126d8361110c565b9150602083013561127d816114e2565b809150509250929050565b6000806040838503121561129a578182fd5b6112a38361110c565b946020939093013593505050565b6000602082840312156112c2578081fd5b8151610b13816114e2565b6000602082840312156112de578081fd5b8135610b13816114f3565b6000602082840312156112fa578081fd5b8151610b13816114f3565b600060208284031215611316578081fd5b815167ffffffffffffffff81111561132c578182fd5b8201601f8101841361133c578182fd5b805161134a61121b8261143d565b81815285602083850101111561135e578384fd5b61136f826020830160208601611465565b95945050505050565b600060208284031215611389578081fd5b5035919050565b600081518084526113a8816020860160208601611465565b601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113ef90830184611390565b9695505050505050565b602081526000610b136020830184611390565b604051601f8201601f1916810167ffffffffffffffff81118282101715611435576114356114cc565b604052919050565b600067ffffffffffffffff821115611457576114576114cc565b50601f01601f191660200190565b60005b83811015611480578181015183820152602001611468565b8381111561089c5750506000910152565b600181811c908216806114a557607f821691505b602082108114156114c657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b80151581146114f057600080fd5b50565b6001600160e01b0319811681146114f057600080fdfea2646970667358221220a4f97bcc2e6066991614458114352412c89ccb0b64d5a174e42506caefd6266564736f6c634300080400330000000000000000000000004e572433a3bfa336b6396d13afc9f69b582528610000000000000000000000006d3a3d2a9fbc4c7e5d4437250bb5fb8a896ec8c3000000000000000000000000c9797a6be31f052cdfbdcc7264005c1eea0f69b9000000000000000000000000bd5a8c71eae282576a7c5d93a4d0c942aceff49e

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b8578063c52141911161007c578063c521419114610296578063c5e2a7db146102bd578063c87b56dd146102d0578063da1919b3146102e3578063e985e9c5146102f6578063fcac08921461033257600080fd5b80636352211e1461024257806370a082311461025557806395d89b4114610268578063a22cb46514610270578063b88d4fde1461028357600080fd5b80631b2df850116100ff5780631b2df850146101cf57806323b872dd146101f6578063392f37e91461020957806342842e0e1461021c57806342966c681461022f57600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806318160ddd146101b9575b600080fd5b61014f61014a3660046112cd565b610359565b60405190151581526020015b60405180910390f35b61016c6103ab565b60405161015b91906113f9565b61018c610187366004611378565b61043d565b6040516001600160a01b03909116815260200161015b565b6101b76101b2366004611288565b610481565b005b600154600054035b60405190815260200161015b565b61018c7f0000000000000000000000004e572433a3bfa336b6396d13afc9f69b5825286181565b6101b7610204366004611174565b610521565b60095461018c906001600160a01b031681565b6101b761022a366004611174565b6106c9565b6101b761023d366004611378565b6106e9565b61018c610250366004611378565b610759565b6101c1610263366004611128565b610764565b61016c6107b3565b6101b761027e366004611252565b6107c2565b6101b76102913660046111af565b610858565b61018c7f0000000000000000000000006d3a3d2a9fbc4c7e5d4437250bb5fb8a896ec8c381565b6101b76102cb366004611128565b6108a2565b61016c6102de366004611378565b61099f565b6101c16102f1366004611288565b610a26565b61014f610304366004611142565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61018c7f000000000000000000000000c9797a6be31f052cdfbdcc7264005c1eea0f69b981565b60006301ffc9a760e01b6001600160e01b03198316148061038a57506380ac58cd60e01b6001600160e01b03198316145b806103a55750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546103ba90611491565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611491565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061044882610b1a565b610465576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061048c82610759565b9050336001600160a01b038216146104c5576104a88133610304565b6104c5576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061052c82610b41565b9050836001600160a01b0316816001600160a01b03161461055f5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260409020805461058b8187335b6001600160a01b039081169116811491141790565b6105b6576105998633610304565b6105b657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166105dd57604051633a954ecd60e21b815260040160405180910390fd5b6105ea8686866001610ba2565b80156105f557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610680576001840160008181526004602052604090205461067e57600054811461067e5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6106e483838360405180602001604052806000815250610858565b505050565b600260085414156107415760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600855610751816001610d4c565b506001600855565b60006103a582610b41565b60006001600160a01b03821661078d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6060600380546103ba90611491565b6001600160a01b0382163314156107ec5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610863848484610521565b6001600160a01b0383163b1561089c5761087f84848484610e9d565b61089c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b604051630935e01b60e21b81523360048201527f0000000000000000000000004e572433a3bfa336b6396d13afc9f69b582528616001600160a01b0316906324d7806c9060240160206040518083038186803b15801561090157600080fd5b505afa158015610915573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093991906112b1565b61097d5760405162461bcd60e51b815260206004820152601560248201527426b0b730b3b2b91d102737ba1030b71020b236b4b760591b6044820152606401610738565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6009546040516328205a9360e01b8152306004820152602481018390526060916001600160a01b0316906328205a939060440160006040518083038186803b1580156109ea57600080fd5b505afa1580156109fe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103a59190810190611305565b6040516365e6a4df60e11b8152336004820152600160248201526000907f0000000000000000000000004e572433a3bfa336b6396d13afc9f69b582528616001600160a01b03169063cbcd49be9060440160206040518083038186803b158015610a8f57600080fd5b505afa158015610aa3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ac791906112b1565b610b095760405162461bcd60e51b815260206004820152601360248201527226b0b730b3b2b91d102737ba1036b4b73a32b960691b6044820152606401610738565b610b138383610f94565b9392505050565b60008054821080156103a5575050600090815260046020526040902054600160e01b161590565b600081600054811015610b8957600081815260046020526040902054600160e01b8116610b87575b80610b13575060001901600081815260046020526040902054610b69565b505b604051636f96cda160e11b815260040160405180910390fd5b6040516365e6a4df60e11b8152336004820152600060248201527f0000000000000000000000004e572433a3bfa336b6396d13afc9f69b582528616001600160a01b03169063cbcd49be9060440160206040518083038186803b158015610c0857600080fd5b505afa158015610c1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4091906112b1565b61089c576001600160a01b03841615801590610c6457506001600160a01b03831615155b1561089c5760405163ecfae2e360e01b8152306004820152602481018390527f0000000000000000000000006d3a3d2a9fbc4c7e5d4437250bb5fb8a896ec8c36001600160a01b03169063ecfae2e39060440160206040518083038186803b158015610ccf57600080fd5b505afa158015610ce3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0791906112b1565b61089c5760405162461bcd60e51b8152602060048201526016602482015275105bd58e88151bdad95b881b9bdd081d5b989bdd5b9960521b6044820152606401610738565b6000610d5783610b41565b905080600080610d7586600090815260066020526040902080549091565b915091508415610db557610d8a818433610576565b610db557610d988333610304565b610db557604051632ce44b5f60e11b815260040160405180910390fd5b610dc3836000886001610ba2565b8015610dce57600082555b6001600160a01b038316600081815260056020526040902080546fffffffffffffffffffffffffffffffff0190554260a01b17600360e01b17600087815260046020526040902055600160e11b8416610e555760018601600081815260046020526040902054610e53576000548114610e535760008181526004602052604090208590555b505b60405186906000906001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050600180548101905550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610ed29033908990889088906004016113bc565b602060405180830381600087803b158015610eec57600080fd5b505af1925050508015610f1c575060408051601f3d908101601f19168201909252610f19918101906112e9565b60015b610f77573d808015610f4a576040519150601f19603f3d011682016040523d82523d6000602084013e610f4f565b606091505b508051610f6f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000610b13838360405180602001604052806000815250600080610fb88585611021565b90506001600160a01b0385163b15611019576000548481035b610fe46000888380600101945088610e9d565b611001576040516368d2bf6b60e11b815260040160405180910390fd5b818110610fd157816000541461101657600080fd5b50505b949350505050565b600080546001600160a01b03841661104b57604051622e076360e81b815260040160405180910390fd5b826110695760405163b562e8dd60e01b815260040160405180910390fd5b6110766000858386610ba2565b6001600160a01b038416600081815260056020526040902080546801000000000000000186020190554260a01b6001851460e11b1717600082815260046020526040902055808381015b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106110c05760005550610b13565b80356001600160a01b038116811461112357600080fd5b919050565b600060208284031215611139578081fd5b610b138261110c565b60008060408385031215611154578081fd5b61115d8361110c565b915061116b6020840161110c565b90509250929050565b600080600060608486031215611188578081fd5b6111918461110c565b925061119f6020850161110c565b9150604084013590509250925092565b600080600080608085870312156111c4578081fd5b6111cd8561110c565b93506111db6020860161110c565b925060408501359150606085013567ffffffffffffffff8111156111fd578182fd5b8501601f8101871361120d578182fd5b803561122061121b8261143d565b61140c565b818152886020838501011115611234578384fd5b81602084016020830137908101602001929092525092959194509250565b60008060408385031215611264578182fd5b61126d8361110c565b9150602083013561127d816114e2565b809150509250929050565b6000806040838503121561129a578182fd5b6112a38361110c565b946020939093013593505050565b6000602082840312156112c2578081fd5b8151610b13816114e2565b6000602082840312156112de578081fd5b8135610b13816114f3565b6000602082840312156112fa578081fd5b8151610b13816114f3565b600060208284031215611316578081fd5b815167ffffffffffffffff81111561132c578182fd5b8201601f8101841361133c578182fd5b805161134a61121b8261143d565b81815285602083850101111561135e578384fd5b61136f826020830160208601611465565b95945050505050565b600060208284031215611389578081fd5b5035919050565b600081518084526113a8816020860160208601611465565b601f01601f19169290920160200192915050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906113ef90830184611390565b9695505050505050565b602081526000610b136020830184611390565b604051601f8201601f1916810167ffffffffffffffff81118282101715611435576114356114cc565b604052919050565b600067ffffffffffffffff821115611457576114576114cc565b50601f01601f191660200190565b60005b83811015611480578181015183820152602001611468565b8381111561089c5750506000910152565b600181811c908216806114a557607f821691505b602082108114156114c657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b80151581146114f057600080fd5b50565b6001600160e01b0319811681146114f057600080fdfea2646970667358221220a4f97bcc2e6066991614458114352412c89ccb0b64d5a174e42506caefd6266564736f6c63430008040033

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

0000000000000000000000004e572433a3bfa336b6396d13afc9f69b582528610000000000000000000000006d3a3d2a9fbc4c7e5d4437250bb5fb8a896ec8c3000000000000000000000000c9797a6be31f052cdfbdcc7264005c1eea0f69b9000000000000000000000000bd5a8c71eae282576a7c5d93a4d0c942aceff49e

-----Decoded View---------------
Arg [0] : _manager (address): 0x4E572433A3Bfa336b6396D13AfC9F69b58252861
Arg [1] : _bound (address): 0x6d3a3d2A9fbC4c7e5D4437250bb5FB8a896ec8c3
Arg [2] : _data (address): 0xc9797A6Be31F052cdfbDCc7264005c1EEA0F69B9
Arg [3] : _metadata (address): 0xBd5a8C71EAE282576a7c5d93a4d0C942ACeff49E

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000004e572433a3bfa336b6396d13afc9f69b58252861
Arg [1] : 0000000000000000000000006d3a3d2a9fbc4c7e5d4437250bb5fb8a896ec8c3
Arg [2] : 000000000000000000000000c9797a6be31f052cdfbdcc7264005c1eea0f69b9
Arg [3] : 000000000000000000000000bd5a8c71eae282576a7c5d93a4d0c942aceff49e


Deployed Bytecode Sourcemap

48783:2258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16517:607;;;;;;:::i;:::-;;:::i;:::-;;;6188:14:1;;6181:22;6163:41;;6151:2;6136:18;16517:607:0;;;;;;;;21784:94;;;:::i;:::-;;;;;;;:::i;23653:194::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4633:32:1;;;4615:51;;4603:2;4588:18;23653:194:0;4570:102:1;23247:348:0;;;;;;:::i;:::-;;:::i;:::-;;15649:291;15897:12;;15702:7;15881:13;:28;15649:291;;;8909:25:1;;;8897:2;8882:18;15649:291:0;8864:76:1;45106:33:0;;;;;32274:2539;;;;;;:::i;:::-;;:::i;49159:28::-;;;;;-1:-1:-1;;;;;49159:28:0;;;24535:165;;;;;;:::i;:::-;;:::i;49713:97::-;;;;;;:::i;:::-;;:::i;21587:138::-;;;;;;:::i;:::-;;:::i;17180:214::-;;;;;;:::i;:::-;;:::i;21939:98::-;;;:::i;23911:312::-;;;;;;:::i;:::-;;:::i;24763:351::-;;;;;;:::i;:::-;;:::i;48959:35::-;;;;;50270:101;;;;;;:::i;:::-;;:::i;50001:161::-;;;;;;:::i;:::-;;:::i;49816:179::-;;;;;;:::i;:::-;;:::i;24286:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;24431:25:0;;;24408:4;24431:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24286:186;48999:48;;;;;16517:607;16627:4;-1:-1:-1;;;;;;;;;16908:25:0;;;;:96;;-1:-1:-1;;;;;;;;;;16979:25:0;;;16908:96;:167;;;-1:-1:-1;;;;;;;;;;17050:25:0;;;16908:167;16894:181;16517:607;-1:-1:-1;;16517:607:0:o;21784:94::-;21838:13;21867:5;21860:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21784:94;:::o;23653:194::-;23721:7;23742:16;23750:7;23742;:16::i;:::-;23737:64;;23767:34;;-1:-1:-1;;;23767:34:0;;;;;;;;;;;23737:64;-1:-1:-1;23817:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23817:24:0;;23653:194::o;23247:348::-;23316:13;23332:16;23340:7;23332;:16::i;:::-;23316:32;-1:-1:-1;42558:10:0;-1:-1:-1;;;;;23361:28:0;;;23357:155;;23403:44;23420:5;42558:10;24286:186;:::i;23403:44::-;23398:114;;23467:35;;-1:-1:-1;;;23467:35:0;;;;;;;;;;;23398:114;23520:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23520:29:0;-1:-1:-1;;;;;23520:29:0;;;;;;;;;23561:28;;23520:24;;23561:28;;;;;;;23247:348;;;:::o;32274:2539::-;32390:27;32420;32439:7;32420:18;:27::i;:::-;32390:57;;32501:4;-1:-1:-1;;;;;32460:45:0;32476:19;-1:-1:-1;;;;;32460:45:0;;32456:93;;32521:28;;-1:-1:-1;;;32521:28:0;;;;;;;;;;;32456:93;32567:27;31124:21;;;30971:15;31160:4;31153:36;31236:4;31220:21;;31314:26;;32756:62;31314:26;32792:4;42558:10;32798:19;-1:-1:-1;;;;;31863:31:0;;;31721:26;;31978:19;;31999:30;;31975:55;;31614:423;32756:62;32751:177;;32832:43;32849:4;42558:10;24286:186;:::i;32832:43::-;32827:101;;32893:35;;-1:-1:-1;;;32893:35:0;;;;;;;;;;;32827:101;-1:-1:-1;;;;;32941:16:0;;32937:52;;32966:23;;-1:-1:-1;;;32966:23:0;;;;;;;;;;;32937:52;32998:43;33020:4;33026:2;33030:7;33039:1;32998:21;:43::i;:::-;33120:15;33117:2;;;33244:1;33223:19;33216:30;33117:2;-1:-1:-1;;;;;33601:24:0;;;;;;;:18;:24;;;;;;33599:26;;-1:-1:-1;;33599:26:0;;;33664:22;;;;;;;;;33662:24;;-1:-1:-1;33662:24:0;;;21500:11;21476:22;21472:40;21459:62;-1:-1:-1;;;21459:62:0;33921:26;;;;:17;:26;;;;;:152;-1:-1:-1;;;34181:46:0;;34177:534;;34277:1;34267:11;;34245:19;34384:30;;;:17;:30;;;;;;34380:322;;34502:13;;34487:11;:28;34483:208;;34625:30;;;;:17;:30;;;;;:52;;;34483:208;34177:534;;34750:7;34746:2;-1:-1:-1;;;;;34731:27:0;34740:4;-1:-1:-1;;;;;34731:27:0;;;;;;;;;;;32274:2539;;;;;;:::o;24535:165::-;24655:39;24672:4;24678:2;24682:7;24655:39;;;;;;;;;;;;:16;:39::i;:::-;24535:165;;;:::o;49713:97::-;1780:1;2378:7;;:19;;2370:63;;;;-1:-1:-1;;;2370:63:0;;8255:2:1;2370:63:0;;;8237:21:1;8294:2;8274:18;;;8267:30;8333:33;8313:18;;;8306:61;8384:18;;2370:63:0;;;;;;;;;1780:1;2511:7;:18;49783:21:::1;49789:8:::0;49799:4:::1;49783:5;:21::i;:::-;-1:-1:-1::0;1736:1:0;2690:7;:22;49713:97::o;21587:138::-;21651:7;21690:27;21709:7;21690:18;:27::i;17180:214::-;17244:7;-1:-1:-1;;;;;17264:19:0;;17260:60;;17292:28;;-1:-1:-1;;;17292:28:0;;;;;;;;;;;17260:60;-1:-1:-1;;;;;;17334:25:0;;;;;:18;:25;;;;;;12003:13;17334:54;;17180:214::o;21939:98::-;21995:13;22024:7;22017:14;;;;;:::i;23911:312::-;-1:-1:-1;;;;;24024:31:0;;42558:10;24024:31;24020:61;;;24064:17;;-1:-1:-1;;;24064:17:0;;;;;;;;;;;24020:61;42558:10;24090:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24090:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24090:60:0;;;;;;;;;;24162:55;;6163:41:1;;;24090:49:0;;42558:10;24162:55;;6136:18:1;24162:55:0;;;;;;;23911:312;;:::o;24763:351::-;24908:31;24921:4;24927:2;24931:7;24908:12;:31::i;:::-;-1:-1:-1;;;;;24950:14:0;;;:19;24946:163;;24983:56;25014:4;25020:2;25024:7;25033:5;24983:30;:56::i;:::-;24978:131;;25059:40;;-1:-1:-1;;;25059:40:0;;;;;;;;;;;24978:131;24763:351;;;;:::o;50270:101::-;45473:27;;-1:-1:-1;;;45473:27:0;;45489:10;45473:27;;;4615:51:1;45473:7:0;-1:-1:-1;;;;;45473:15:0;;;;4588:18:1;;45473:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45465:61;;;;-1:-1:-1;;;45465:61:0;;8615:2:1;45465:61:0;;;8597:21:1;8654:2;8634:18;;;8627:30;-1:-1:-1;;;8673:18:1;;;8666:51;8734:18;;45465:61:0;8587:171:1;45465:61:0;50335:8:::1;:30:::0;;-1:-1:-1;;;;;;50335:30:0::1;-1:-1:-1::0;;;;;50335:30:0;;;::::1;::::0;;;::::1;::::0;;50270:101::o;50001:161::-;50119:8;;:37;;-1:-1:-1;;;50119:37:0;;50140:4;50119:37;;;5352:51:1;5419:18;;;5412:34;;;50087:13:0;;-1:-1:-1;;;;;50119:8:0;;:12;;5325:18:1;;50119:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50119:37:0;;;;;;;;;;;;:::i;49816:179::-;45698:32;;-1:-1:-1;;;45698:32:0;;45716:10;45698:32;;;5352:51:1;45728:1:0;5419:18:1;;;5412:34;49924:7:0;;45698;-1:-1:-1;;;;;45698:17:0;;;;5325:18:1;;45698:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45690:64;;;;-1:-1:-1;;;45690:64:0;;7556:2:1;45690:64:0;;;7538:21:1;7595:2;7575:18;;;7568:30;-1:-1:-1;;;7614:18:1;;;7607:49;7673:18;;45690:64:0;7528:169:1;45690:64:0;49963:26:::1;49973:4;49979:9;49963;:26::i;:::-;49956:33:::0;49816:179;-1:-1:-1;;;49816:179:0:o;25353:249::-;25410:4;25484:13;;25474:7;:23;25437:140;;;;-1:-1:-1;;25529:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25529:43:0;:48;;25353:249::o;18776:915::-;18843:7;18874;18958:13;;18951:4;:20;18947:687;;;18986:14;19003:23;;;:17;:23;;;;;;-1:-1:-1;;;19072:23:0;;19068:555;;19495:87;19502:11;19495:87;;-1:-1:-1;;;19559:6:0;19541:25;;;;:17;:25;;;;;;19495:87;;19068:555;18947:687;;19654:31;;-1:-1:-1;;;19654:31:0;;;;;;;;;;;50482:556;50739:32;;-1:-1:-1;;;50739:32:0;;50757:10;50739:32;;;5352:51:1;50769:1:0;5419:18:1;;;5412:34;50739:7:0;-1:-1:-1;;;;;50739:17:0;;;;5325:18:1;;50739:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50734:299;;-1:-1:-1;;;;;50824:18:0;;;;;;:38;;-1:-1:-1;;;;;;50846:16:0;;;;50824:38;50820:206;;;50924:44;;-1:-1:-1;;;50924:44:0;;50948:4;50924:44;;;5352:51:1;5419:18;;;5412:34;;;50924:5:0;-1:-1:-1;;;;;50924:15:0;;;;5325:18:1;;50924:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50904:112;;;;-1:-1:-1;;;50904:112:0;;7904:2:1;50904:112:0;;;7886:21:1;7943:2;7923:18;;;7916:30;-1:-1:-1;;;7962:18:1;;;7955:52;8024:18;;50904:112:0;7876:172:1;35173:2770:0;35249:27;35279;35298:7;35279:18;:27::i;:::-;35249:57;-1:-1:-1;35249:57:0;35315:12;;35454:28;35474:7;30851:27;31124:21;;;30971:15;31160:4;31153:36;31236:4;31220:21;;31314:26;;31220:21;;31087:260;35454:28;35376:106;;;;35495:13;35491:297;;;35604:62;35623:15;35640:4;42558:10;35646:19;42475:99;35604:62;35599:181;;35682:43;35699:4;42558:10;24286:186;:::i;35682:43::-;35677:103;;35745:35;;-1:-1:-1;;;35745:35:0;;;;;;;;;;;35677:103;35796:51;35818:4;35832:1;35836:7;35845:1;35796:21;:51::i;:::-;35926:15;35923:2;;;36050:1;36029:19;36022:30;35923:2;-1:-1:-1;;;;;36600:24:0;;;;;;:18;:24;;;;;:59;;36628:31;36600:59;;;21500:11;21476:22;21472:40;21459:62;-1:-1:-1;;;21459:62:0;36861:26;;;;:17;:26;;;;;:192;-1:-1:-1;;;37161:46:0;;37157:534;;37257:1;37247:11;;37225:19;37364:30;;;:17;:30;;;;;;37360:322;;37482:13;;37467:11;:28;37463:208;;37605:30;;;;:17;:30;;;;;:52;;;37463:208;37157:534;;37711:35;;37738:7;;37734:1;;-1:-1:-1;;;;;37711:35:0;;;;;37734:1;;37711:35;-1:-1:-1;;37916:12:0;:14;;;;;;-1:-1:-1;;;;35173:2770:0:o;38415:659::-;38584:133;;-1:-1:-1;;;38584:133:0;;38560:4;;-1:-1:-1;;;;;38584:45:0;;;;;:133;;42558:10;;38670:4;;38685:7;;38703:5;;38584:133;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38584:133:0;;;;;;;;-1:-1:-1;;38584:133:0;;;;;;;;;;;;:::i;:::-;;;38573:496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38877:13:0;;38873:189;;38915:40;;-1:-1:-1;;;38915:40:0;;;;;;;;;;;38873:189;39034:6;39028:13;39019:6;39015:2;39011:15;39004:38;38573:496;-1:-1:-1;;;;;;38763:64:0;-1:-1:-1;;;38763:64:0;;-1:-1:-1;38415:659:0;;;;;;:::o;25678:123::-;25745:7;25768:27;25778:2;25782:8;25768:27;;;;;;;;;;;;26296:7;26312:20;26335:19;26341:2;26345:8;26335:5;:19::i;:::-;26312:42;-1:-1:-1;;;;;;26386:14:0;;;:19;26382:397;;26418:11;26432:13;26472:14;;;26497:193;26518:62;26557:1;26561:2;26565:7;;;;;;26574:5;26518:30;:62::i;:::-;26513:145;;26604:40;;-1:-1:-1;;;26604:40:0;;;;;;;;;;;26513:145;26685:3;26677:5;:11;26497:193;;26756:3;26739:13;;:20;26735:34;;26761:8;;;26735:34;26382:397;;;26801:12;26189:630;-1:-1:-1;;;;26189:630:0:o;27070:1401::-;27133:7;27172:13;;-1:-1:-1;;;;;27196:16:0;;27192:48;;27221:19;;-1:-1:-1;;;27221:19:0;;;;;;;;;;;27192:48;27251:13;27247:44;;27273:18;;-1:-1:-1;;;27273:18:0;;;;;;;;;;;27247:44;27300:61;27330:1;27334:2;27338:12;27352:8;27300:21;:61::i;:::-;-1:-1:-1;;;;;27723:22:0;;;;;;:18;:22;;12136:2;27723:22;;:70;;27761:31;27749:44;;27723:70;;;21500:11;21476:22;21472:40;-1:-1:-1;23165:15:0;;23140:23;23136:45;21469:51;21459:62;28000:31;;;;:17;:31;;;;;:151;28018:12;28215:23;;;28247:87;28266:35;;28291:9;;;;;-1:-1:-1;;;;;28266:35:0;;;28283:1;;28266:35;;28283:1;;28266:35;28329:3;28319:7;:13;28247:87;;28344:13;:19;-1:-1:-1;28377:60:0;24763:351;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:933::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1448:18;1440:6;1437:30;1434:2;;;1485:6;1477;1470:22;1434:2;1513:22;;1566:4;1558:13;;1554:27;-1:-1:-1;1544:2:1;;1600:6;1592;1585:22;1544:2;1641;1628:16;1666:48;1682:31;1710:2;1682:31;:::i;:::-;1666:48;:::i;:::-;1737:2;1730:5;1723:17;1777:7;1772:2;1767;1763;1759:11;1755:20;1752:33;1749:2;;;1803:6;1795;1788:22;1749:2;1863;1858;1854;1850:11;1845:2;1838:5;1834:14;1821:45;1886:14;;;1902:2;1882:23;1875:39;;;;-1:-1:-1;1141:803:1;;;;-1:-1:-1;1141:803:1;-1:-1:-1;1141:803:1:o;1949:325::-;2014:6;2022;2075:2;2063:9;2054:7;2050:23;2046:32;2043:2;;;2096:6;2088;2081:22;2043:2;2124:29;2143:9;2124:29;:::i;:::-;2114:39;;2203:2;2192:9;2188:18;2175:32;2216:28;2238:5;2216:28;:::i;:::-;2263:5;2253:15;;;2033:241;;;;;:::o;2279:264::-;2347:6;2355;2408:2;2396:9;2387:7;2383:23;2379:32;2376:2;;;2429:6;2421;2414:22;2376:2;2457:29;2476:9;2457:29;:::i;:::-;2447:39;2533:2;2518:18;;;;2505:32;;-1:-1:-1;;;2366:177:1:o;2548:255::-;2615:6;2668:2;2656:9;2647:7;2643:23;2639:32;2636:2;;;2689:6;2681;2674:22;2636:2;2726:9;2720:16;2745:28;2767:5;2745:28;:::i;2808:255::-;2866:6;2919:2;2907:9;2898:7;2894:23;2890:32;2887:2;;;2940:6;2932;2925:22;2887:2;2984:9;2971:23;3003:30;3027:5;3003:30;:::i;3068:259::-;3137:6;3190:2;3178:9;3169:7;3165:23;3161:32;3158:2;;;3211:6;3203;3196:22;3158:2;3248:9;3242:16;3267:30;3291:5;3267:30;:::i;3332:675::-;3412:6;3465:2;3453:9;3444:7;3440:23;3436:32;3433:2;;;3486:6;3478;3471:22;3433:2;3524:9;3518:16;3557:18;3549:6;3546:30;3543:2;;;3594:6;3586;3579:22;3543:2;3622:22;;3675:4;3667:13;;3663:27;-1:-1:-1;3653:2:1;;3709:6;3701;3694:22;3653:2;3743;3737:9;3768:48;3784:31;3812:2;3784:31;:::i;3768:48::-;3839:2;3832:5;3825:17;3879:7;3874:2;3869;3865;3861:11;3857:20;3854:33;3851:2;;;3905:6;3897;3890:22;3851:2;3923:54;3974:2;3969;3962:5;3958:14;3953:2;3949;3945:11;3923:54;:::i;:::-;3996:5;3423:584;-1:-1:-1;;;;;3423:584:1:o;4012:190::-;4071:6;4124:2;4112:9;4103:7;4099:23;4095:32;4092:2;;;4145:6;4137;4130:22;4092:2;-1:-1:-1;4173:23:1;;4082:120;-1:-1:-1;4082:120:1:o;4207:257::-;4248:3;4286:5;4280:12;4313:6;4308:3;4301:19;4329:63;4385:6;4378:4;4373:3;4369:14;4362:4;4355:5;4351:16;4329:63;:::i;:::-;4446:2;4425:15;-1:-1:-1;;4421:29:1;4412:39;;;;4453:4;4408:50;;4256:208;-1:-1:-1;;4256:208:1:o;4677:488::-;-1:-1:-1;;;;;4946:15:1;;;4928:34;;4998:15;;4993:2;4978:18;;4971:43;5045:2;5030:18;;5023:34;;;5093:3;5088:2;5073:18;;5066:31;;;4871:4;;5114:45;;5139:19;;5131:6;5114:45;:::i;:::-;5106:53;4880:285;-1:-1:-1;;;;;;4880:285:1:o;7130:219::-;7279:2;7268:9;7261:21;7242:4;7299:44;7339:2;7328:9;7324:18;7316:6;7299:44;:::i;8945:275::-;9016:2;9010:9;9081:2;9062:13;;-1:-1:-1;;9058:27:1;9046:40;;9116:18;9101:34;;9137:22;;;9098:62;9095:2;;;9163:18;;:::i;:::-;9199:2;9192:22;8990:230;;-1:-1:-1;8990:230:1:o;9225:186::-;9273:4;9306:18;9298:6;9295:30;9292:2;;;9328:18;;:::i;:::-;-1:-1:-1;9394:2:1;9373:15;-1:-1:-1;;9369:29:1;9400:4;9365:40;;9282:129::o;9416:258::-;9488:1;9498:113;9512:6;9509:1;9506:13;9498:113;;;9588:11;;;9582:18;9569:11;;;9562:39;9534:2;9527:10;9498:113;;;9629:6;9626:1;9623:13;9620:2;;;-1:-1:-1;;9664:1:1;9646:16;;9639:27;9469:205::o;9679:380::-;9758:1;9754:12;;;;9801;;;9822:2;;9876:4;9868:6;9864:17;9854:27;;9822:2;9929;9921:6;9918:14;9898:18;9895:38;9892:2;;;9975:10;9970:3;9966:20;9963:1;9956:31;10010:4;10007:1;10000:15;10038:4;10035:1;10028:15;9892:2;;9734:325;;;:::o;10064:127::-;10125:10;10120:3;10116:20;10113:1;10106:31;10156:4;10153:1;10146:15;10180:4;10177:1;10170:15;10196:118;10282:5;10275:13;10268:21;10261:5;10258:32;10248:2;;10304:1;10301;10294:12;10248:2;10238:76;:::o;10319:131::-;-1:-1:-1;;;;;;10393:32:1;;10383:43;;10373:2;;10440:1;10437;10430:12

Swarm Source

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