ERC-721
Overview
Max Total Supply
6,666 WAGAI
Holders
415
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 WAGAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WAGAI
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-04 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * 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(); 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; } /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @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 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` 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 (_addressToUint256(owner) == 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 auxillary 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 auxillary 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; assembly { // Cast aux without masking. 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; } /** * 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 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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); 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-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @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 { _transfer(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 { _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. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @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 _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // 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)); address approvedAddress = _tokenApprovals[tokenId]; if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // 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] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // 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 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) } } } // File: contracts/WAGAI.sol pragma solidity ^0.8.4; contract WAGAI is ERC721A, Ownable { string public baseURI; uint256 public maxAI = 6666; uint256 public maxQty = 1; constructor(string memory _initBaseURI) ERC721A("We Are All Going to AI", "WAGAI") { setBaseURI(_initBaseURI); } function _baseURI() internal view override returns (string memory) { return baseURI; } function mint(uint256 qty) public { uint256 totalAI = totalSupply(); require(totalAI + qty <= maxAI, "Error: Max supply reached"); require(balanceOf(msg.sender) + qty <= maxQty, "Error: Max qty per wallet reached"); _safeMint(msg.sender, qty); } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setMaxQty(uint256 _newmaxQty) public onlyOwner { maxQty = _newmaxQty; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxAI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxQty","type":"uint256"}],"name":"setMaxQty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611a0a600a556001600b553480156200001c57600080fd5b5060405162002d5538038062002d55833981810160405281019062000042919062000406565b6040518060400160405280601681526020017f57652041726520416c6c20476f696e6720746f204149000000000000000000008152506040518060400160405280600581526020017f57414741490000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c6929190620002d8565b508060039080519060200190620000df929190620002d8565b50620000f06200013060201b60201c565b6000819055505050620001186200010c6200013560201b60201c565b6200013d60201b60201c565b62000129816200020360201b60201c565b506200065e565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002136200013560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000239620002ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000289906200047e565b60405180910390fd5b8060099080519060200190620002aa929190620002d8565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002e69062000546565b90600052602060002090601f0160209004810192826200030a576000855562000356565b82601f106200032557805160ff191683800117855562000356565b8280016001018555821562000356579182015b828111156200035557825182559160200191906001019062000338565b5b50905062000365919062000369565b5090565b5b80821115620003845760008160009055506001016200036a565b5090565b60006200039f6200039984620004c9565b620004a0565b905082815260208101848484011115620003be57620003bd62000615565b5b620003cb84828562000510565b509392505050565b600082601f830112620003eb57620003ea62000610565b5b8151620003fd84826020860162000388565b91505092915050565b6000602082840312156200041f576200041e6200061f565b5b600082015167ffffffffffffffff81111562000440576200043f6200061a565b5b6200044e84828501620003d3565b91505092915050565b600062000466602083620004ff565b9150620004738262000635565b602082019050919050565b60006020820190508181036000830152620004998162000457565b9050919050565b6000620004ac620004bf565b9050620004ba82826200057c565b919050565b6000604051905090565b600067ffffffffffffffff821115620004e757620004e6620005e1565b5b620004f28262000624565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200053057808201518184015260208101905062000513565b8381111562000540576000848401525b50505050565b600060028204905060018216806200055f57607f821691505b60208210811415620005765762000575620005b2565b5b50919050565b620005878262000624565b810181811067ffffffffffffffff82111715620005a957620005a8620005e1565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6126e7806200066e6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636c0360eb116100c3578063a22cb4651161007c578063a22cb46514610378578063b88d4fde14610394578063c7a95480146103b0578063c87b56dd146103ce578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b80636c0360eb146102c857806370a08231146102e6578063715018a6146103165780638da5cb5b1461032057806395d89b411461033e578063a0712d681461035c5761014d565b806323b872dd1161011557806323b872dd1461020a578063246df43f14610226578063272ff2481461024457806342842e0e1461026057806355f804b31461027c5780636352211e146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611eeb565b61044a565b60405161017991906121a2565b60405180910390f35b61018a6104dc565b60405161019791906121bd565b60405180910390f35b6101ba60048036038101906101b59190611f8e565b61056e565b6040516101c7919061213b565b60405180910390f35b6101ea60048036038101906101e59190611eab565b6105ea565b005b6101f4610791565b604051610201919061225f565b60405180910390f35b610224600480360381019061021f9190611d95565b6107a8565b005b61022e6107b8565b60405161023b919061225f565b60405180910390f35b61025e60048036038101906102599190611f8e565b6107be565b005b61027a60048036038101906102759190611d95565b610844565b005b61029660048036038101906102919190611f45565b610864565b005b6102b260048036038101906102ad9190611f8e565b6108fa565b6040516102bf919061213b565b60405180910390f35b6102d061090c565b6040516102dd91906121bd565b60405180910390f35b61030060048036038101906102fb9190611d28565b61099a565b60405161030d919061225f565b60405180910390f35b61031e610a2f565b005b610328610ab7565b604051610335919061213b565b60405180910390f35b610346610ae1565b60405161035391906121bd565b60405180910390f35b61037660048036038101906103719190611f8e565b610b73565b005b610392600480360381019061038d9190611e6b565b610c35565b005b6103ae60048036038101906103a99190611de8565b610dad565b005b6103b8610e20565b6040516103c5919061225f565b60405180910390f35b6103e860048036038101906103e39190611f8e565b610e26565b6040516103f591906121bd565b60405180910390f35b61041860048036038101906104139190611d55565b610ec5565b60405161042591906121a2565b60405180910390f35b61044860048036038101906104439190611d28565b610f59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104eb90612450565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612450565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982611051565b6105af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f5826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c61117e565b73ffffffffffffffffffffffffffffffffffffffff16146106df576106a8816106a361117e565b610ec5565b6106de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079b611186565b6001546000540303905090565b6107b383838361118b565b505050565b600a5481565b6107c6611553565b73ffffffffffffffffffffffffffffffffffffffff166107e4610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461083a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108319061223f565b60405180910390fd5b80600b8190555050565b61085f83838360405180602001604052806000815250610dad565b505050565b61086c611553565b73ffffffffffffffffffffffffffffffffffffffff1661088a610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d79061223f565b60405180910390fd5b80600990805190602001906108f6929190611b3c565b5050565b6000610905826110b0565b9050919050565b6009805461091990612450565b80601f016020809104026020016040519081016040528092919081815260200182805461094590612450565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b505050505081565b6000806109a68361155b565b14156109de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a37611553565b73ffffffffffffffffffffffffffffffffffffffff16610a55610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061223f565b60405180910390fd5b610ab56000611565565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610af090612450565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90612450565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7d610791565b9050600a548282610b8e9190612344565b1115610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906121ff565b60405180910390fd5b600b5482610bdc3361099a565b610be69190612344565b1115610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061221f565b60405180910390fd5b610c31338361162b565b5050565b610c3d61117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610caf61117e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d5c61117e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610da191906121a2565b60405180910390a35050565b610db884848461118b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610e1a57610de384848484611649565b610e19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060610e3182611051565b610e67576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e716117a9565b9050600081511415610e925760405180602001604052806000815250610ebd565b80610e9c8461183b565b604051602001610ead929190612117565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f61611553565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061223f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906121df565b60405180910390fd5b61104e81611565565b50565b60008161105c611186565b1115801561106b575060005482105b80156110a9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806110bf611186565b11611147576000548110156111465760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611144575b600081141561113a57600460008360019003935083815260200190815260200160002054905061110f565b8092505050611179565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611196826110b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661125661117e565b73ffffffffffffffffffffffffffffffffffffffff16148061128557506112848661127f61117e565b610ec5565b5b806112c2575061129361117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113068661155b565b141561133e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b8686866001611895565b60006113568361155b565b14611392576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114598761155b565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114e35760006001850190506000600460008381526020019081526020016000205414156114e15760005481146114e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154b868686600161189b565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116458282604051806020016040528060008152506118a1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166f61117e565b8786866040518563ffffffff1660e01b81526004016116919493929190612156565b602060405180830381600087803b1580156116ab57600080fd5b505af19250505080156116dc57506040513d601f19601f820116820180604052508101906116d99190611f18565b60015b611756573d806000811461170c576040519150601f19603f3d011682016040523d82523d6000602084013e611711565b606091505b5060008151141561174e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546117b890612450565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490612450565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561188157600183039250600a81066030018353600a81049050611861565b508181036020830392508083525050919050565b50505050565b50505050565b60008054905060006118b28561155b565b14156118ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611925576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119326000858386611895565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161199760018514611b32565b901b60a042901b6119a78661155b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611aab575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a5b6000878480600101955087611649565b611a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106119ec578260005414611aa657600080fd5b611b16565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611aac575b816000819055505050611b2c600085838661189b565b50505050565b6000819050919050565b828054611b4890612450565b90600052602060002090601f016020900481019282611b6a5760008555611bb1565b82601f10611b8357805160ff1916838001178555611bb1565b82800160010185558215611bb1579182015b82811115611bb0578251825591602001919060010190611b95565b5b509050611bbe9190611bc2565b5090565b5b80821115611bdb576000816000905550600101611bc3565b5090565b6000611bf2611bed8461229f565b61227a565b905082815260208101848484011115611c0e57611c0d612545565b5b611c1984828561240e565b509392505050565b6000611c34611c2f846122d0565b61227a565b905082815260208101848484011115611c5057611c4f612545565b5b611c5b84828561240e565b509392505050565b600081359050611c7281612655565b92915050565b600081359050611c878161266c565b92915050565b600081359050611c9c81612683565b92915050565b600081519050611cb181612683565b92915050565b600082601f830112611ccc57611ccb612540565b5b8135611cdc848260208601611bdf565b91505092915050565b600082601f830112611cfa57611cf9612540565b5b8135611d0a848260208601611c21565b91505092915050565b600081359050611d228161269a565b92915050565b600060208284031215611d3e57611d3d61254f565b5b6000611d4c84828501611c63565b91505092915050565b60008060408385031215611d6c57611d6b61254f565b5b6000611d7a85828601611c63565b9250506020611d8b85828601611c63565b9150509250929050565b600080600060608486031215611dae57611dad61254f565b5b6000611dbc86828701611c63565b9350506020611dcd86828701611c63565b9250506040611dde86828701611d13565b9150509250925092565b60008060008060808587031215611e0257611e0161254f565b5b6000611e1087828801611c63565b9450506020611e2187828801611c63565b9350506040611e3287828801611d13565b925050606085013567ffffffffffffffff811115611e5357611e5261254a565b5b611e5f87828801611cb7565b91505092959194509250565b60008060408385031215611e8257611e8161254f565b5b6000611e9085828601611c63565b9250506020611ea185828601611c78565b9150509250929050565b60008060408385031215611ec257611ec161254f565b5b6000611ed085828601611c63565b9250506020611ee185828601611d13565b9150509250929050565b600060208284031215611f0157611f0061254f565b5b6000611f0f84828501611c8d565b91505092915050565b600060208284031215611f2e57611f2d61254f565b5b6000611f3c84828501611ca2565b91505092915050565b600060208284031215611f5b57611f5a61254f565b5b600082013567ffffffffffffffff811115611f7957611f7861254a565b5b611f8584828501611ce5565b91505092915050565b600060208284031215611fa457611fa361254f565b5b6000611fb284828501611d13565b91505092915050565b611fc48161239a565b82525050565b611fd3816123ac565b82525050565b6000611fe482612301565b611fee8185612317565b9350611ffe81856020860161241d565b61200781612554565b840191505092915050565b600061201d8261230c565b6120278185612328565b935061203781856020860161241d565b61204081612554565b840191505092915050565b60006120568261230c565b6120608185612339565b935061207081856020860161241d565b80840191505092915050565b6000612089602683612328565b915061209482612565565b604082019050919050565b60006120ac601983612328565b91506120b7826125b4565b602082019050919050565b60006120cf602183612328565b91506120da826125dd565b604082019050919050565b60006120f2602083612328565b91506120fd8261262c565b602082019050919050565b61211181612404565b82525050565b6000612123828561204b565b915061212f828461204b565b91508190509392505050565b60006020820190506121506000830184611fbb565b92915050565b600060808201905061216b6000830187611fbb565b6121786020830186611fbb565b6121856040830185612108565b81810360608301526121978184611fd9565b905095945050505050565b60006020820190506121b76000830184611fca565b92915050565b600060208201905081810360008301526121d78184612012565b905092915050565b600060208201905081810360008301526121f88161207c565b9050919050565b600060208201905081810360008301526122188161209f565b9050919050565b60006020820190508181036000830152612238816120c2565b9050919050565b60006020820190508181036000830152612258816120e5565b9050919050565b60006020820190506122746000830184612108565b92915050565b6000612284612295565b90506122908282612482565b919050565b6000604051905090565b600067ffffffffffffffff8211156122ba576122b9612511565b5b6122c382612554565b9050602081019050919050565b600067ffffffffffffffff8211156122eb576122ea612511565b5b6122f482612554565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061234f82612404565b915061235a83612404565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561238f5761238e6124b3565b5b828201905092915050565b60006123a5826123e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561243b578082015181840152602081019050612420565b8381111561244a576000848401525b50505050565b6000600282049050600182168061246857607f821691505b6020821081141561247c5761247b6124e2565b5b50919050565b61248b82612554565b810181811067ffffffffffffffff821117156124aa576124a9612511565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a204d617820737570706c79207265616368656400000000000000600082015250565b7f4572726f723a204d617820717479207065722077616c6c65742072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61265e8161239a565b811461266957600080fd5b50565b612675816123ac565b811461268057600080fd5b50565b61268c816123b8565b811461269757600080fd5b50565b6126a381612404565b81146126ae57600080fd5b5056fea26469706673582212200fffc38ed80932f7a8ea851d96490a4315e616fb401d4b605a40c74a188211ad64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626e74706872367a6c33796b777237747935707670783762347470376f6c3273627161776d61717a3274797874733467647a66692f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636c0360eb116100c3578063a22cb4651161007c578063a22cb46514610378578063b88d4fde14610394578063c7a95480146103b0578063c87b56dd146103ce578063e985e9c5146103fe578063f2fde38b1461042e5761014d565b80636c0360eb146102c857806370a08231146102e6578063715018a6146103165780638da5cb5b1461032057806395d89b411461033e578063a0712d681461035c5761014d565b806323b872dd1161011557806323b872dd1461020a578063246df43f14610226578063272ff2481461024457806342842e0e1461026057806355f804b31461027c5780636352211e146102985761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806318160ddd146101ec575b600080fd5b61016c60048036038101906101679190611eeb565b61044a565b60405161017991906121a2565b60405180910390f35b61018a6104dc565b60405161019791906121bd565b60405180910390f35b6101ba60048036038101906101b59190611f8e565b61056e565b6040516101c7919061213b565b60405180910390f35b6101ea60048036038101906101e59190611eab565b6105ea565b005b6101f4610791565b604051610201919061225f565b60405180910390f35b610224600480360381019061021f9190611d95565b6107a8565b005b61022e6107b8565b60405161023b919061225f565b60405180910390f35b61025e60048036038101906102599190611f8e565b6107be565b005b61027a60048036038101906102759190611d95565b610844565b005b61029660048036038101906102919190611f45565b610864565b005b6102b260048036038101906102ad9190611f8e565b6108fa565b6040516102bf919061213b565b60405180910390f35b6102d061090c565b6040516102dd91906121bd565b60405180910390f35b61030060048036038101906102fb9190611d28565b61099a565b60405161030d919061225f565b60405180910390f35b61031e610a2f565b005b610328610ab7565b604051610335919061213b565b60405180910390f35b610346610ae1565b60405161035391906121bd565b60405180910390f35b61037660048036038101906103719190611f8e565b610b73565b005b610392600480360381019061038d9190611e6b565b610c35565b005b6103ae60048036038101906103a99190611de8565b610dad565b005b6103b8610e20565b6040516103c5919061225f565b60405180910390f35b6103e860048036038101906103e39190611f8e565b610e26565b6040516103f591906121bd565b60405180910390f35b61041860048036038101906104139190611d55565b610ec5565b60405161042591906121a2565b60405180910390f35b61044860048036038101906104439190611d28565b610f59565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104a557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d55750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546104eb90612450565b80601f016020809104026020016040519081016040528092919081815260200182805461051790612450565b80156105645780601f1061053957610100808354040283529160200191610564565b820191906000526020600020905b81548152906001019060200180831161054757829003601f168201915b5050505050905090565b600061057982611051565b6105af576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006105f5826110b0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561065d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661067c61117e565b73ffffffffffffffffffffffffffffffffffffffff16146106df576106a8816106a361117e565b610ec5565b6106de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061079b611186565b6001546000540303905090565b6107b383838361118b565b505050565b600a5481565b6107c6611553565b73ffffffffffffffffffffffffffffffffffffffff166107e4610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461083a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108319061223f565b60405180910390fd5b80600b8190555050565b61085f83838360405180602001604052806000815250610dad565b505050565b61086c611553565b73ffffffffffffffffffffffffffffffffffffffff1661088a610ab7565b73ffffffffffffffffffffffffffffffffffffffff16146108e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d79061223f565b60405180910390fd5b80600990805190602001906108f6929190611b3c565b5050565b6000610905826110b0565b9050919050565b6009805461091990612450565b80601f016020809104026020016040519081016040528092919081815260200182805461094590612450565b80156109925780601f1061096757610100808354040283529160200191610992565b820191906000526020600020905b81548152906001019060200180831161097557829003601f168201915b505050505081565b6000806109a68361155b565b14156109de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610a37611553565b73ffffffffffffffffffffffffffffffffffffffff16610a55610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061223f565b60405180910390fd5b610ab56000611565565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610af090612450565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1c90612450565b8015610b695780601f10610b3e57610100808354040283529160200191610b69565b820191906000526020600020905b815481529060010190602001808311610b4c57829003601f168201915b5050505050905090565b6000610b7d610791565b9050600a548282610b8e9190612344565b1115610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906121ff565b60405180910390fd5b600b5482610bdc3361099a565b610be69190612344565b1115610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e9061221f565b60405180910390fd5b610c31338361162b565b5050565b610c3d61117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610caf61117e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d5c61117e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610da191906121a2565b60405180910390a35050565b610db884848461118b565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610e1a57610de384848484611649565b610e19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600b5481565b6060610e3182611051565b610e67576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e716117a9565b9050600081511415610e925760405180602001604052806000815250610ebd565b80610e9c8461183b565b604051602001610ead929190612117565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f61611553565b73ffffffffffffffffffffffffffffffffffffffff16610f7f610ab7565b73ffffffffffffffffffffffffffffffffffffffff1614610fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcc9061223f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c906121df565b60405180910390fd5b61104e81611565565b50565b60008161105c611186565b1115801561106b575060005482105b80156110a9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806110bf611186565b11611147576000548110156111465760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611144575b600081141561113a57600460008360019003935083815260200190815260200160002054905061110f565b8092505050611179565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611196826110b0565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111fd576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff1661125661117e565b73ffffffffffffffffffffffffffffffffffffffff16148061128557506112848661127f61117e565b610ec5565b5b806112c2575061129361117e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806112fb576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113068661155b565b141561133e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134b8686866001611895565b60006113568361155b565b14611392576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114598761155b565b1717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114e35760006001850190506000600460008381526020019081526020016000205414156114e15760005481146114e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461154b868686600161189b565b505050505050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6116458282604051806020016040528060008152506118a1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261166f61117e565b8786866040518563ffffffff1660e01b81526004016116919493929190612156565b602060405180830381600087803b1580156116ab57600080fd5b505af19250505080156116dc57506040513d601f19601f820116820180604052508101906116d99190611f18565b60015b611756573d806000811461170c576040519150601f19603f3d011682016040523d82523d6000602084013e611711565b606091505b5060008151141561174e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546117b890612450565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490612450565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561188157600183039250600a81066030018353600a81049050611861565b508181036020830392508083525050919050565b50505050565b50505050565b60008054905060006118b28561155b565b14156118ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611925576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6119326000858386611895565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161199760018514611b32565b901b60a042901b6119a78661155b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611aab575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a5b6000878480600101955087611649565b611a91576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106119ec578260005414611aa657600080fd5b611b16565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611aac575b816000819055505050611b2c600085838661189b565b50505050565b6000819050919050565b828054611b4890612450565b90600052602060002090601f016020900481019282611b6a5760008555611bb1565b82601f10611b8357805160ff1916838001178555611bb1565b82800160010185558215611bb1579182015b82811115611bb0578251825591602001919060010190611b95565b5b509050611bbe9190611bc2565b5090565b5b80821115611bdb576000816000905550600101611bc3565b5090565b6000611bf2611bed8461229f565b61227a565b905082815260208101848484011115611c0e57611c0d612545565b5b611c1984828561240e565b509392505050565b6000611c34611c2f846122d0565b61227a565b905082815260208101848484011115611c5057611c4f612545565b5b611c5b84828561240e565b509392505050565b600081359050611c7281612655565b92915050565b600081359050611c878161266c565b92915050565b600081359050611c9c81612683565b92915050565b600081519050611cb181612683565b92915050565b600082601f830112611ccc57611ccb612540565b5b8135611cdc848260208601611bdf565b91505092915050565b600082601f830112611cfa57611cf9612540565b5b8135611d0a848260208601611c21565b91505092915050565b600081359050611d228161269a565b92915050565b600060208284031215611d3e57611d3d61254f565b5b6000611d4c84828501611c63565b91505092915050565b60008060408385031215611d6c57611d6b61254f565b5b6000611d7a85828601611c63565b9250506020611d8b85828601611c63565b9150509250929050565b600080600060608486031215611dae57611dad61254f565b5b6000611dbc86828701611c63565b9350506020611dcd86828701611c63565b9250506040611dde86828701611d13565b9150509250925092565b60008060008060808587031215611e0257611e0161254f565b5b6000611e1087828801611c63565b9450506020611e2187828801611c63565b9350506040611e3287828801611d13565b925050606085013567ffffffffffffffff811115611e5357611e5261254a565b5b611e5f87828801611cb7565b91505092959194509250565b60008060408385031215611e8257611e8161254f565b5b6000611e9085828601611c63565b9250506020611ea185828601611c78565b9150509250929050565b60008060408385031215611ec257611ec161254f565b5b6000611ed085828601611c63565b9250506020611ee185828601611d13565b9150509250929050565b600060208284031215611f0157611f0061254f565b5b6000611f0f84828501611c8d565b91505092915050565b600060208284031215611f2e57611f2d61254f565b5b6000611f3c84828501611ca2565b91505092915050565b600060208284031215611f5b57611f5a61254f565b5b600082013567ffffffffffffffff811115611f7957611f7861254a565b5b611f8584828501611ce5565b91505092915050565b600060208284031215611fa457611fa361254f565b5b6000611fb284828501611d13565b91505092915050565b611fc48161239a565b82525050565b611fd3816123ac565b82525050565b6000611fe482612301565b611fee8185612317565b9350611ffe81856020860161241d565b61200781612554565b840191505092915050565b600061201d8261230c565b6120278185612328565b935061203781856020860161241d565b61204081612554565b840191505092915050565b60006120568261230c565b6120608185612339565b935061207081856020860161241d565b80840191505092915050565b6000612089602683612328565b915061209482612565565b604082019050919050565b60006120ac601983612328565b91506120b7826125b4565b602082019050919050565b60006120cf602183612328565b91506120da826125dd565b604082019050919050565b60006120f2602083612328565b91506120fd8261262c565b602082019050919050565b61211181612404565b82525050565b6000612123828561204b565b915061212f828461204b565b91508190509392505050565b60006020820190506121506000830184611fbb565b92915050565b600060808201905061216b6000830187611fbb565b6121786020830186611fbb565b6121856040830185612108565b81810360608301526121978184611fd9565b905095945050505050565b60006020820190506121b76000830184611fca565b92915050565b600060208201905081810360008301526121d78184612012565b905092915050565b600060208201905081810360008301526121f88161207c565b9050919050565b600060208201905081810360008301526122188161209f565b9050919050565b60006020820190508181036000830152612238816120c2565b9050919050565b60006020820190508181036000830152612258816120e5565b9050919050565b60006020820190506122746000830184612108565b92915050565b6000612284612295565b90506122908282612482565b919050565b6000604051905090565b600067ffffffffffffffff8211156122ba576122b9612511565b5b6122c382612554565b9050602081019050919050565b600067ffffffffffffffff8211156122eb576122ea612511565b5b6122f482612554565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061234f82612404565b915061235a83612404565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561238f5761238e6124b3565b5b828201905092915050565b60006123a5826123e4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561243b578082015181840152602081019050612420565b8381111561244a576000848401525b50505050565b6000600282049050600182168061246857607f821691505b6020821081141561247c5761247b6124e2565b5b50919050565b61248b82612554565b810181811067ffffffffffffffff821117156124aa576124a9612511565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4572726f723a204d617820737570706c79207265616368656400000000000000600082015250565b7f4572726f723a204d617820717479207065722077616c6c65742072656163686560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61265e8161239a565b811461266957600080fd5b50565b612675816123ac565b811461268057600080fd5b50565b61268c816123b8565b811461269757600080fd5b50565b6126a381612404565b81146126ae57600080fd5b5056fea26469706673582212200fffc38ed80932f7a8ea851d96490a4315e616fb401d4b605a40c74a188211ad64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569626e74706872367a6c33796b777237747935707670783762347470376f6c3273627161776d61717a3274797874733467647a66692f0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://bafybeibntphr6zl3ykwr7ty5pvpx7b4tp7ol2sbqawmaqz2tyxts4gdzfi/
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f62616679626569626e74706872367a6c33796b777237747935
Arg [3] : 707670783762347470376f6c3273627161776d61717a3274797874733467647a
Arg [4] : 66692f0000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
42104:883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16488:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21511:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23579:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23039:474;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15542:315;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24465:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42174:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42890:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24706:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42778:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21300:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42146:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17167:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;:::i;:::-;;1955:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21680:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42484:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23855:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24962:396;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42208:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21855:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24234:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16488:615;16573:4;16888:10;16873:25;;:11;:25;;;;:102;;;;16965:10;16950:25;;:11;:25;;;;16873:102;:179;;;;17042:10;17027:25;;:11;:25;;;;16873:179;16853:199;;16488:615;;;:::o;21511:100::-;21565:13;21598:5;21591:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21511:100;:::o;23579:204::-;23647:7;23672:16;23680:7;23672;:16::i;:::-;23667:64;;23697:34;;;;;;;;;;;;;;23667:64;23751:15;:24;23767:7;23751:24;;;;;;;;;;;;;;;;;;;;;23744:31;;23579:204;;;:::o;23039:474::-;23112:13;23144:27;23163:7;23144:18;:27::i;:::-;23112:61;;23194:5;23188:11;;:2;:11;;;23184:48;;;23208:24;;;;;;;;;;;;;;23184:48;23272:5;23249:28;;:19;:17;:19::i;:::-;:28;;;23245:175;;23297:44;23314:5;23321:19;:17;:19::i;:::-;23297:16;:44::i;:::-;23292:128;;23369:35;;;;;;;;;;;;;;23292:128;23245:175;23459:2;23432:15;:24;23448:7;23432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23497:7;23493:2;23477:28;;23486:5;23477:28;;;;;;;;;;;;23101:412;23039:474;;:::o;15542:315::-;15595:7;15823:15;:13;:15::i;:::-;15808:12;;15792:13;;:28;:46;15785:53;;15542:315;:::o;24465:170::-;24599:28;24609:4;24615:2;24619:7;24599:9;:28::i;:::-;24465:170;;;:::o;42174:27::-;;;;:::o;42890:94::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42966:10:::1;42957:6;:19;;;;42890:94:::0;:::o;24706:185::-;24844:39;24861:4;24867:2;24871:7;24844:39;;;;;;;;;;;;:16;:39::i;:::-;24706:185;;;:::o;42778:104::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42863:11:::1;42853:7;:21;;;;;;;;;;;;:::i;:::-;;42778:104:::0;:::o;21300:144::-;21364:7;21407:27;21426:7;21407:18;:27::i;:::-;21384:52;;21300:144;;;:::o;42146:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17167:234::-;17231:7;17283:1;17255:24;17273:5;17255:17;:24::i;:::-;:29;17251:70;;;17293:28;;;;;;;;;;;;;;17251:70;12512:13;17339:18;:25;17358:5;17339:25;;;;;;;;;;;;;;;;:54;17332:61;;17167:234;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;21680:104::-;21736:13;21769:7;21762:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21680:104;:::o;42484:286::-;42529:15;42547:13;:11;:13::i;:::-;42529:31;;42596:5;;42589:3;42579:7;:13;;;;:::i;:::-;:22;;42571:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;42681:6;;42674:3;42650:21;42660:10;42650:9;:21::i;:::-;:27;;;;:::i;:::-;:37;;42642:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;42736:26;42746:10;42758:3;42736:9;:26::i;:::-;42518:252;42484:286;:::o;23855:308::-;23966:19;:17;:19::i;:::-;23954:31;;:8;:31;;;23950:61;;;23994:17;;;;;;;;;;;;;;23950:61;24076:8;24024:18;:39;24043:19;:17;:19::i;:::-;24024:39;;;;;;;;;;;;;;;:49;24064:8;24024:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24136:8;24100:55;;24115:19;:17;:19::i;:::-;24100:55;;;24146:8;24100:55;;;;;;:::i;:::-;;;;;;;;23855:308;;:::o;24962:396::-;25129:28;25139:4;25145:2;25149:7;25129:9;:28::i;:::-;25190:1;25172:2;:14;;;:19;25168:183;;25211:56;25242:4;25248:2;25252:7;25261:5;25211:30;:56::i;:::-;25206:145;;25295:40;;;;;;;;;;;;;;25206:145;25168:183;24962:396;;;;:::o;42208:25::-;;;;:::o;21855:318::-;21928:13;21959:16;21967:7;21959;:16::i;:::-;21954:59;;21984:29;;;;;;;;;;;;;;21954:59;22026:21;22050:10;:8;:10::i;:::-;22026:34;;22103:1;22084:7;22078:21;:26;;:87;;;;;;;;;;;;;;;;;22131:7;22140:18;22150:7;22140:9;:18::i;:::-;22114:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22078:87;22071:94;;;21855:318;;;:::o;24234:164::-;24331:4;24355:18;:25;24374:5;24355:25;;;;;;;;;;;;;;;:35;24381:8;24355:35;;;;;;;;;;;;;;;;;;;;;;;;;24348:42;;24234:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;25613:273::-;25670:4;25726:7;25707:15;:13;:15::i;:::-;:26;;:66;;;;;25760:13;;25750:7;:23;25707:66;:152;;;;;25858:1;13282:8;25811:17;:26;25829:7;25811:26;;;;;;;;;;;;:43;:48;25707:152;25687:172;;25613:273;;;:::o;18815:1129::-;18882:7;18902:12;18917:7;18902:22;;18985:4;18966:15;:13;:15::i;:::-;:23;18962:915;;19019:13;;19012:4;:20;19008:869;;;19057:14;19074:17;:23;19092:4;19074:23;;;;;;;;;;;;19057:40;;19190:1;13282:8;19163:6;:23;:28;19159:699;;;19682:113;19699:1;19689:6;:11;19682:113;;;19742:17;:25;19760:6;;;;;;;19742:25;;;;;;;;;;;;19733:34;;19682:113;;;19828:6;19821:13;;;;;;19159:699;19034:843;19008:869;18962:915;19905:31;;;;;;;;;;;;;;18815:1129;;;;:::o;39880:105::-;39940:7;39967:10;39960:17;;39880:105;:::o;15066:92::-;15122:7;15066:92;:::o;30872:2654::-;30987:27;31017;31036:7;31017:18;:27::i;:::-;30987:57;;31102:4;31061:45;;31077:19;31061:45;;;31057:86;;31115:28;;;;;;;;;;;;;;31057:86;31156:23;31182:15;:24;31198:7;31182:24;;;;;;;;;;;;;;;;;;;;;31156:50;;31219:22;31268:4;31245:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31289:43;31306:4;31312:19;:17;:19::i;:::-;31289:16;:43::i;:::-;31245:87;:142;;;;31368:19;:17;:19::i;:::-;31349:38;;:15;:38;;;31245:142;31219:169;;31406:17;31401:66;;31432:35;;;;;;;;;;;;;;31401:66;31507:1;31482:21;31500:2;31482:17;:21::i;:::-;:26;31478:62;;;31517:23;;;;;;;;;;;;;;31478:62;31553:43;31575:4;31581:2;31585:7;31594:1;31553:21;:43::i;:::-;31704:1;31666:34;31684:15;31666:17;:34::i;:::-;:39;31662:103;;31729:15;:24;31745:7;31729:24;;;;;;;;;;;;31722:31;;;;;;;;;;;31662:103;32132:18;:24;32151:4;32132:24;;;;;;;;;;;;;;;;32130:26;;;;;;;;;;;;32201:18;:22;32220:2;32201:22;;;;;;;;;;;;;;;;32199:24;;;;;;;;;;;13560:8;13166:3;32582:15;:41;;32540:21;32558:2;32540:17;:21::i;:::-;:84;:128;32494:17;:26;32512:7;32494:26;;;;;;;;;;;:174;;;;32838:1;13560:8;32788:19;:46;:51;32784:626;;;32860:19;32892:1;32882:7;:11;32860:33;;33049:1;33015:17;:30;33033:11;33015:30;;;;;;;;;;;;:35;33011:384;;;33153:13;;33138:11;:28;33134:242;;33333:19;33300:17;:30;33318:11;33300:30;;;;;;;;;;;:52;;;;33134:242;33011:384;32841:569;32784:626;33457:7;33453:2;33438:27;;33447:4;33438:27;;;;;;;;;;;;33476:42;33497:4;33503:2;33507:7;33516:1;33476:20;:42::i;:::-;30976:2550;;;30872:2654;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;22600:148::-;22664:14;22725:5;22715:15;;22600:148;;;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;25970:104::-;26039:27;26049:2;26053:8;26039:27;;;;;;;;;;;;:9;:27::i;:::-;25970:104;;:::o;37349:716::-;37512:4;37558:2;37533:45;;;37579:19;:17;:19::i;:::-;37600:4;37606:7;37615:5;37533:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37529:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37833:1;37816:6;:13;:18;37812:235;;;37862:40;;;;;;;;;;;;;;37812:235;38005:6;37999:13;37990:6;37986:2;37982:15;37975:38;37529:529;37702:54;;;37692:64;;;:6;:64;;;;37685:71;;;37349:716;;;;;;:::o;42376:100::-;42428:13;42461:7;42454:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42376:100;:::o;40091:1943::-;40148:17;40567:3;40560:4;40554:11;40550:21;40543:28;;40658:3;40652:4;40645:17;40764:3;41220:5;41350:1;41345:3;41341:11;41334:18;;41487:2;41481:4;41477:13;41473:2;41469:22;41464:3;41456:36;41528:2;41522:4;41518:13;41510:21;;41112:680;41547:4;41112:680;;;41721:1;41716:3;41712:11;41705:18;;41772:2;41766:4;41762:13;41758:2;41754:22;41749:3;41741:36;41642:2;41636:4;41632:13;41624:21;;41112:680;;;41116:430;41831:3;41826;41822:13;41946:2;41941:3;41937:12;41930:19;;42009:6;42004:3;41997:19;40187:1840;;40091:1943;;;:::o;38713:159::-;;;;;:::o;39531:158::-;;;;;:::o;26447:2246::-;26570:20;26593:13;;26570:36;;26646:1;26621:21;26639:2;26621:17;:21::i;:::-;:26;26617:58;;;26656:19;;;;;;;;;;;;;;26617:58;26702:1;26690:8;:13;26686:44;;;26712:18;;;;;;;;;;;;;;26686:44;26743:61;26773:1;26777:2;26781:12;26795:8;26743:21;:61::i;:::-;27347:1;12649:2;27318:1;:25;;27317:31;27305:8;:44;27279:18;:22;27298:2;27279:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13425:3;27748:29;27775:1;27763:8;:13;27748:14;:29::i;:::-;:56;;13166:3;27685:15;:41;;27643:21;27661:2;27643:17;:21::i;:::-;:84;:162;27592:17;:31;27610:12;27592:31;;;;;;;;;;;:213;;;;27822:20;27845:12;27822:35;;27872:11;27901:8;27886:12;:23;27872:37;;27948:1;27930:2;:14;;;:19;27926:635;;27970:313;28026:12;28022:2;28001:38;;28018:1;28001:38;;;;;;;;;;;;28067:69;28106:1;28110:2;28114:14;;;;;;28130:5;28067:30;:69::i;:::-;28062:174;;28172:40;;;;;;;;;;;;;;28062:174;28278:3;28263:12;:18;27970:313;;28364:12;28347:13;;:29;28343:43;;28378:8;;;28343:43;27926:635;;;28427:119;28483:14;;;;;;28479:2;28458:40;;28475:1;28458:40;;;;;;;;;;;;28541:3;28526:12;:18;28427:119;;27926:635;28591:12;28575:13;:28;;;;27056:1559;;28625:60;28654:1;28658:2;28662:12;28676:8;28625:20;:60::i;:::-;26559:2134;26447:2246;;;:::o;22835:142::-;22893:14;22954:5;22944:15;;22835:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:::-;9774:3;9795:67;9859:2;9854:3;9795:67;:::i;:::-;9788:74;;9871:93;9960:3;9871:93;:::i;:::-;9989:2;9984:3;9980:12;9973:19;;9632:366;;;:::o;10004:118::-;10091:24;10109:5;10091:24;:::i;:::-;10086:3;10079:37;10004:118;;:::o;10128:435::-;10308:3;10330:95;10421:3;10412:6;10330:95;:::i;:::-;10323:102;;10442:95;10533:3;10524:6;10442:95;:::i;:::-;10435:102;;10554:3;10547:10;;10128:435;;;;;:::o;10569:222::-;10662:4;10700:2;10689:9;10685:18;10677:26;;10713:71;10781:1;10770:9;10766:17;10757:6;10713:71;:::i;:::-;10569:222;;;;:::o;10797:640::-;10992:4;11030:3;11019:9;11015:19;11007:27;;11044:71;11112:1;11101:9;11097:17;11088:6;11044:71;:::i;:::-;11125:72;11193:2;11182:9;11178:18;11169:6;11125:72;:::i;:::-;11207;11275:2;11264:9;11260:18;11251:6;11207:72;:::i;:::-;11326:9;11320:4;11316:20;11311:2;11300:9;11296:18;11289:48;11354:76;11425:4;11416:6;11354:76;:::i;:::-;11346:84;;10797:640;;;;;;;:::o;11443:210::-;11530:4;11568:2;11557:9;11553:18;11545:26;;11581:65;11643:1;11632:9;11628:17;11619:6;11581:65;:::i;:::-;11443:210;;;;:::o;11659:313::-;11772:4;11810:2;11799:9;11795:18;11787:26;;11859:9;11853:4;11849:20;11845:1;11834:9;11830:17;11823:47;11887:78;11960:4;11951:6;11887:78;:::i;:::-;11879:86;;11659:313;;;;:::o;11978:419::-;12144:4;12182:2;12171:9;12167:18;12159:26;;12231:9;12225:4;12221:20;12217:1;12206:9;12202:17;12195:47;12259:131;12385:4;12259:131;:::i;:::-;12251:139;;11978:419;;;:::o;12403:::-;12569:4;12607:2;12596:9;12592:18;12584:26;;12656:9;12650:4;12646:20;12642:1;12631:9;12627:17;12620:47;12684:131;12810:4;12684:131;:::i;:::-;12676:139;;12403:419;;;:::o;12828:::-;12994:4;13032:2;13021:9;13017:18;13009:26;;13081:9;13075:4;13071:20;13067:1;13056:9;13052:17;13045:47;13109:131;13235:4;13109:131;:::i;:::-;13101:139;;12828:419;;;:::o;13253:::-;13419:4;13457:2;13446:9;13442:18;13434:26;;13506:9;13500:4;13496:20;13492:1;13481:9;13477:17;13470:47;13534:131;13660:4;13534:131;:::i;:::-;13526:139;;13253:419;;;:::o;13678:222::-;13771:4;13809:2;13798:9;13794:18;13786:26;;13822:71;13890:1;13879:9;13875:17;13866:6;13822:71;:::i;:::-;13678:222;;;;:::o;13906:129::-;13940:6;13967:20;;:::i;:::-;13957:30;;13996:33;14024:4;14016:6;13996:33;:::i;:::-;13906:129;;;:::o;14041:75::-;14074:6;14107:2;14101:9;14091:19;;14041:75;:::o;14122:307::-;14183:4;14273:18;14265:6;14262:30;14259:56;;;14295:18;;:::i;:::-;14259:56;14333:29;14355:6;14333:29;:::i;:::-;14325:37;;14417:4;14411;14407:15;14399:23;;14122:307;;;:::o;14435:308::-;14497:4;14587:18;14579:6;14576:30;14573:56;;;14609:18;;:::i;:::-;14573:56;14647:29;14669:6;14647:29;:::i;:::-;14639:37;;14731:4;14725;14721:15;14713:23;;14435:308;;;:::o;14749:98::-;14800:6;14834:5;14828:12;14818:22;;14749:98;;;:::o;14853:99::-;14905:6;14939:5;14933:12;14923:22;;14853:99;;;:::o;14958:168::-;15041:11;15075:6;15070:3;15063:19;15115:4;15110:3;15106:14;15091:29;;14958:168;;;;:::o;15132:169::-;15216:11;15250:6;15245:3;15238:19;15290:4;15285:3;15281:14;15266:29;;15132:169;;;;:::o;15307:148::-;15409:11;15446:3;15431:18;;15307:148;;;;:::o;15461:305::-;15501:3;15520:20;15538:1;15520:20;:::i;:::-;15515:25;;15554:20;15572:1;15554:20;:::i;:::-;15549:25;;15708:1;15640:66;15636:74;15633:1;15630:81;15627:107;;;15714:18;;:::i;:::-;15627:107;15758:1;15755;15751:9;15744:16;;15461:305;;;;:::o;15772:96::-;15809:7;15838:24;15856:5;15838:24;:::i;:::-;15827:35;;15772:96;;;:::o;15874:90::-;15908:7;15951:5;15944:13;15937:21;15926:32;;15874:90;;;:::o;15970:149::-;16006:7;16046:66;16039:5;16035:78;16024:89;;15970:149;;;:::o;16125:126::-;16162:7;16202:42;16195:5;16191:54;16180:65;;16125:126;;;:::o;16257:77::-;16294:7;16323:5;16312:16;;16257:77;;;:::o;16340:154::-;16424:6;16419:3;16414;16401:30;16486:1;16477:6;16472:3;16468:16;16461:27;16340:154;;;:::o;16500:307::-;16568:1;16578:113;16592:6;16589:1;16586:13;16578:113;;;16677:1;16672:3;16668:11;16662:18;16658:1;16653:3;16649:11;16642:39;16614:2;16611:1;16607:10;16602:15;;16578:113;;;16709:6;16706:1;16703:13;16700:101;;;16789:1;16780:6;16775:3;16771:16;16764:27;16700:101;16549:258;16500:307;;;:::o;16813:320::-;16857:6;16894:1;16888:4;16884:12;16874:22;;16941:1;16935:4;16931:12;16962:18;16952:81;;17018:4;17010:6;17006:17;16996:27;;16952:81;17080:2;17072:6;17069:14;17049:18;17046:38;17043:84;;;17099:18;;:::i;:::-;17043:84;16864:269;16813:320;;;:::o;17139:281::-;17222:27;17244:4;17222:27;:::i;:::-;17214:6;17210:40;17352:6;17340:10;17337:22;17316:18;17304:10;17301:34;17298:62;17295:88;;;17363:18;;:::i;:::-;17295:88;17403:10;17399:2;17392:22;17182:238;17139:281;;:::o;17426:180::-;17474:77;17471:1;17464:88;17571:4;17568:1;17561:15;17595:4;17592:1;17585:15;17612:180;17660:77;17657:1;17650:88;17757:4;17754:1;17747:15;17781:4;17778:1;17771:15;17798:180;17846:77;17843:1;17836:88;17943:4;17940:1;17933:15;17967:4;17964:1;17957:15;17984:117;18093:1;18090;18083:12;18107:117;18216:1;18213;18206:12;18230:117;18339:1;18336;18329:12;18353:117;18462:1;18459;18452:12;18476:102;18517:6;18568:2;18564:7;18559:2;18552:5;18548:14;18544:28;18534:38;;18476:102;;;:::o;18584:225::-;18724:34;18720:1;18712:6;18708:14;18701:58;18793:8;18788:2;18780:6;18776:15;18769:33;18584:225;:::o;18815:175::-;18955:27;18951:1;18943:6;18939:14;18932:51;18815:175;:::o;18996:220::-;19136:34;19132:1;19124:6;19120:14;19113:58;19205:3;19200:2;19192:6;19188:15;19181:28;18996:220;:::o;19222:182::-;19362:34;19358:1;19350:6;19346:14;19339:58;19222:182;:::o;19410:122::-;19483:24;19501:5;19483:24;:::i;:::-;19476:5;19473:35;19463:63;;19522:1;19519;19512:12;19463:63;19410:122;:::o;19538:116::-;19608:21;19623:5;19608:21;:::i;:::-;19601:5;19598:32;19588:60;;19644:1;19641;19634:12;19588:60;19538:116;:::o;19660:120::-;19732:23;19749:5;19732:23;:::i;:::-;19725:5;19722:34;19712:62;;19770:1;19767;19760:12;19712:62;19660:120;:::o;19786:122::-;19859:24;19877:5;19859:24;:::i;:::-;19852:5;19849:35;19839:63;;19898:1;19895;19888:12;19839:63;19786:122;:::o
Swarm Source
ipfs://0fffc38ed80932f7a8ea851d96490a4315e616fb401d4b605a40c74a188211ad
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.