ERC-721
Overview
Max Total Supply
5,421 GOBDIV
Holders
827
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 GOBDIVLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
goblinz
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.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 (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the 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 (to == address(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 (to == address(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(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. 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)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. 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: nft.sol //SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.9; // File contracts/test.sol contract goblinz is ERC721A, Ownable { string private baseURI = ""; string private constant baseExtension = ".json"; string private notRevealedUri; uint256 public MAX_PER_TX = 20; uint256 public MAX_SUPPLY = 10000; uint256 public price = 0.0069 ether; uint256 public maxFreeMints = 1; bool public paused = true; bool public revealed = false; uint256 public freeMints = 1000; address public constant devAddress = 0x1b1287627406466e80F3E713a943FCE557d05a21; address public constant teamAddress = 0x478B5734b256C47E4132A34104D4BC21dDDF43DC; mapping (address => bool) internal hasMinted; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); setNotRevealedURI(_initNotRevealedUri); } function mint(uint256 _amount) external payable { address _caller = msg.sender; require(!paused, "Paused"); require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply"); require(_amount > 0, "No 0 mints"); uint256 tradePrice = currentPrice(_caller, _amount); if (_caller != owner()) { require(tradePrice == msg.value, "Invalid funds provided"); require(MAX_PER_TX >= _amount, "Exceeds max Per Transaction"); } hasMinted[_caller]= true; _safeMint(_caller, _amount); } function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. return super.isApprovedForAll(owner, operator); } function maxMintAmount() public view returns (uint256) { return MAX_PER_TX; } function currentPrice(address _caller,uint256 _amount) public view returns (uint256) { if (hasMinted[_caller] == true) { return price * _amount; } else { uint256 chargedAmt; if (totalSupply() <= freeMints) { chargedAmt = _amount - maxFreeMints; } else { chargedAmt = _amount; } uint256 currPrice = price * chargedAmt; return currPrice; } } function reveal() public onlyOwner { revealed = true; } function withdraw() external onlyOwner { uint256 totalBalance = address(this).balance; uint256 teamShare = (totalBalance * 40)/100; uint256 devShare = (totalBalance * 15)/100; payable(devAddress).transfer(devShare); payable(teamAddress).transfer(teamShare); payable(msg.sender).transfer(address(this).balance); } function setPrice(uint256 _newCost) public onlyOwner { price = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { MAX_PER_TX = _newmaxMintAmount; } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setupOS() external onlyOwner { _safeMint(_msgSender(), 1); } function pause(bool _state) external onlyOwner { paused = _state; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = baseURI; return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), baseExtension ) ) : ""; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","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":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupOS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b91600991620001f3565b506014600b55612710600c556618838370f34000600d556001600e819055600f805461ffff191690911790556103e86010553480156200005a57600080fd5b50604051620026ba380380620026ba8339810160408190526200007d9162000366565b83518490849062000096906002906020850190620001f3565b508051620000ac906003906020840190620001f3565b50506000805550620000be33620000de565b620000c98262000130565b620000d48162000198565b505050506200045c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200017f5760405162461bcd60e51b815260206004820181905260248201526000805160206200269a83398151915260448201526064015b60405180910390fd5b805162000194906009906020840190620001f3565b5050565b6008546001600160a01b03163314620001e35760405162461bcd60e51b815260206004820181905260248201526000805160206200269a833981519152604482015260640162000176565b80516200019490600a9060208401905b82805462000201906200041f565b90600052602060002090601f01602090048101928262000225576000855562000270565b82601f106200024057805160ff191683800117855562000270565b8280016001018555821562000270579182015b828111156200027057825182559160200191906001019062000253565b506200027e92915062000282565b5090565b5b808211156200027e576000815560010162000283565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002c157600080fd5b81516001600160401b0380821115620002de57620002de62000299565b604051601f8301601f19908116603f0116810190828211818310171562000309576200030962000299565b816040528381526020925086838588010111156200032657600080fd5b600091505b838210156200034a57858201830151818301840152908201906200032b565b838211156200035c5760008385830101525b9695505050505050565b600080600080608085870312156200037d57600080fd5b84516001600160401b03808211156200039557600080fd5b620003a388838901620002af565b95506020870151915080821115620003ba57600080fd5b620003c888838901620002af565b94506040870151915080821115620003df57600080fd5b620003ed88838901620002af565b935060608701519150808211156200040457600080fd5b506200041387828801620002af565b91505092959194509250565b600181811c908216806200043457607f821691505b602082108114156200045657634e487b7160e01b600052602260045260246000fd5b50919050565b61222e806200046c6000396000f3fe6080604052600436106102855760003560e01c806370a0823111610153578063a0712d68116100cb578063c87b56dd1161007f578063f2c4ce1e11610064578063f2c4ce1e1461068e578063f2fde38b146106ae578063f43a22dc146106ce57600080fd5b8063c87b56dd1461064e578063e985e9c51461066e57600080fd5b8063a2b40d19116100b0578063a2b40d191461059b578063a475b5dd14610619578063b88d4fde1461062e57600080fd5b8063a0712d68146105e6578063a22cb465146105f957600080fd5b806380b173351161012257806391b7f5ed1161010757806391b7f5ed1461059b57806395d89b41146105bb578063a035b1fe146105d057600080fd5b806380b17335146105675780638da5cb5b1461057d57600080fd5b806370a08231146104fc578063715018a61461051c578063732496c9146105315780637f00c7a61461054757600080fd5b80632fb3905a1161020157806351830227116101b55780635c975abb1161019a5780635c975abb146104ad5780636352211e146104c7578063698982ba146104e757600080fd5b8063518302271461046e57806355f804b31461048d57600080fd5b80633ad10ef6116101e65780633ad10ef6146104115780633ccfd60b1461043957806342842e0e1461044e57600080fd5b80632fb3905a146103db57806332cb6b0c146103fb57600080fd5b8063095ea7b3116102585780631c75f0851161023d5780631c75f0851461037e578063239c70ae146103a657806323b872dd146103bb57600080fd5b8063095ea7b31461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806302329a29146102bf57806306fdde03146102e1578063081812fc14610303575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611d37565b6106e4565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102df6102da366004611d69565b610781565b005b3480156102ed57600080fd5b506102f66107f3565b6040516102b69190611ddc565b34801561030f57600080fd5b5061032361031e366004611def565b610885565b6040516001600160a01b0390911681526020016102b6565b34801561034757600080fd5b506102df610356366004611e1f565b6108e2565b34801561036757600080fd5b50600154600054035b6040519081526020016102b6565b34801561038a57600080fd5b5061032373478b5734b256c47e4132a34104d4bc21dddf43dc81565b3480156103b257600080fd5b50600b54610370565b3480156103c757600080fd5b506102df6103d6366004611e49565b6109f4565b3480156103e757600080fd5b506103706103f6366004611e1f565b610a04565b34801561040757600080fd5b50610370600c5481565b34801561041d57600080fd5b50610323731b1287627406466e80f3e713a943fce557d05a2181565b34801561044557600080fd5b506102df610a87565b34801561045a57600080fd5b506102df610469366004611e49565b610bcf565b34801561047a57600080fd5b50600f546102aa90610100900460ff1681565b34801561049957600080fd5b506102df6104a8366004611f11565b610bea565b3480156104b957600080fd5b50600f546102aa9060ff1681565b3480156104d357600080fd5b506103236104e2366004611def565b610c5b565b3480156104f357600080fd5b506102df610c66565b34801561050857600080fd5b50610370610517366004611f5a565b610ccd565b34801561052857600080fd5b506102df610d35565b34801561053d57600080fd5b50610370600e5481565b34801561055357600080fd5b506102df610562366004611def565b610d99565b34801561057357600080fd5b5061037060105481565b34801561058957600080fd5b506008546001600160a01b0316610323565b3480156105a757600080fd5b506102df6105b6366004611def565b610df8565b3480156105c757600080fd5b506102f6610e57565b3480156105dc57600080fd5b50610370600d5481565b6102df6105f4366004611def565b610e66565b34801561060557600080fd5b506102df610614366004611f75565b61107a565b34801561062557600080fd5b506102df611129565b34801561063a57600080fd5b506102df610649366004611fa8565b611194565b34801561065a57600080fd5b506102f6610669366004611def565b6111d8565b34801561067a57600080fd5b506102aa610689366004612024565b61140c565b34801561069a57600080fd5b506102df6106a9366004611f11565b61143c565b3480156106ba57600080fd5b506102df6106c9366004611f5a565b6114a9565b3480156106da57600080fd5b50610370600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061074757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061077b57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633146107e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b6060600280546108029061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461082e9061204e565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b60006108908261158b565b6108c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ed826115b2565b9050806001600160a01b0316836001600160a01b0316141561093b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161461098b57610955813361140c565b61098b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ff83838361162c565b505050565b6001600160a01b03821660009081526011602052604081205460ff16151560011415610a3f5781600d54610a38919061209f565b905061077b565b6000601054610a516001546000540390565b11610a6a57600e54610a6390846120be565b9050610a6d565b50815b600081600d54610a7d919061209f565b925061077b915050565b6008546001600160a01b03163314610ae15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b4760006064610af183602861209f565b610afb91906120eb565b905060006064610b0c84600f61209f565b610b1691906120eb565b604051909150731b1287627406466e80f3e713a943fce557d05a219082156108fc029083906000818181858888f19350505050158015610b5a573d6000803e3d6000fd5b5060405173478b5734b256c47e4132a34104d4bc21dddf43dc9083156108fc029084906000818181858888f19350505050158015610b9c573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b50505050565b6109ff83838360405180602001604052806000815250611194565b6008546001600160a01b03163314610c445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610c57906009906020840190611c88565b5050565b600061077b826115b2565b6008546001600160a01b03163314610cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b610ccb336001611841565b565b60006001600160a01b038216610d0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d8f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b610ccb600061185b565b6008546001600160a01b03163314610df35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600b55565b6008546001600160a01b03163314610e525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600d55565b6060600380546108029061204e565b600f54339060ff1615610ebb5760405162461bcd60e51b815260206004820152600660248201527f506175736564000000000000000000000000000000000000000000000000000060448201526064016107d7565b81610ec96001546000540390565b610ed391906120ff565b600c541015610f245760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c79000000000000000000000000000060448201526064016107d7565b60008211610f745760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e74730000000000000000000000000000000000000000000060448201526064016107d7565b6000610f808284610a04565b9050610f946008546001600160a01b031690565b6001600160a01b0316826001600160a01b03161461104d57348114610ffb5760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f76696465640000000000000000000060448201526064016107d7565b82600b54101561104d5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e000000000060448201526064016107d7565b6001600160a01b0382166000908152601160205260409020805460ff191660011790556109ff8284611841565b6001600160a01b0382163314156110bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600f805461ff001916610100179055565b61119f84848461162c565b6001600160a01b0383163b15610bc9576111bb848484846118ba565b610bc9576040516368d2bf6b60e11b815260040160405180910390fd5b60606111e38261158b565b6112555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b600f54610100900460ff166112f657600a80546112719061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461129d9061204e565b80156112ea5780601f106112bf576101008083540402835291602001916112ea565b820191906000526020600020905b8154815290600101906020018083116112cd57829003601f168201915b50505050509050919050565b6000600980546113059061204e565b80601f01602080910402602001604051908101604052809291908181526020018280546113319061204e565b801561137e5780601f106113535761010080835404028352916020019161137e565b820191906000526020600020905b81548152906001019060200180831161136157829003601f168201915b5050505050905060008151116113a35760405180602001604052806000815250611405565b806113ad846119b2565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016113f593929190612117565b6040516020818303038152906040525b9392505050565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff16611405565b6008546001600160a01b031633146114965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610c5790600a906020840190611c88565b6008546001600160a01b031633146115035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b6001600160a01b03811661157f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b6115888161185b565b50565b600080548210801561077b575050600090815260046020526040902054600160e01b161590565b6000816000548110156115fa57600081815260046020526040902054600160e01b81166115f8575b806114055750600019016000818152600460205260409020546115da565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611637826115b2565b9050836001600160a01b0316816001600160a01b031614611684576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806116a257506116a2853361140c565b806116bd5750336116b284610885565b6001600160a01b0316145b9050806116f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611736576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b8617811790915582166117f957600183016000818152600460205260409020546117f75760005481146117f75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c57828260405180602001604052806000815250611ae4565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118ef90339089908890889060040161215a565b602060405180830381600087803b15801561190957600080fd5b505af1925050508015611939575060408051601f3d908101601f1916820190925261193691810190612196565b60015b611994573d808015611967576040519150601f19603f3d011682016040523d82523d6000602084013e61196c565b606091505b50805161198c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119f257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a1c5780611a06816121b3565b9150611a159050600a836120eb565b91506119f6565b60008167ffffffffffffffff811115611a3757611a37611e85565b6040519080825280601f01601f191660200182016040528015611a61576020820181803683370190505b5090505b84156119aa57611a766001836120be565b9150611a83600a866121ce565b611a8e9060306120ff565b60f81b818381518110611aa357611aa36121e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611add600a866120eb565b9450611a65565b6000546001600160a01b038416611b27576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611b5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611c33575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bfc60008784806001019550876118ba565b611c19576040516368d2bf6b60e11b815260040160405180910390fd5b808210611bb1578260005414611c2e57600080fd5b611c78565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c34575b506000908155610bc99085838684565b828054611c949061204e565b90600052602060002090601f016020900481019282611cb65760008555611cfc565b82601f10611ccf57805160ff1916838001178555611cfc565b82800160010185558215611cfc579182015b82811115611cfc578251825591602001919060010190611ce1565b50611d08929150611d0c565b5090565b5b80821115611d085760008155600101611d0d565b6001600160e01b03198116811461158857600080fd5b600060208284031215611d4957600080fd5b813561140581611d21565b80358015158114611d6457600080fd5b919050565b600060208284031215611d7b57600080fd5b61140582611d54565b60005b83811015611d9f578181015183820152602001611d87565b83811115610bc95750506000910152565b60008151808452611dc8816020860160208601611d84565b601f01601f19169290920160200192915050565b6020815260006114056020830184611db0565b600060208284031215611e0157600080fd5b5035919050565b80356001600160a01b0381168114611d6457600080fd5b60008060408385031215611e3257600080fd5b611e3b83611e08565b946020939093013593505050565b600080600060608486031215611e5e57600080fd5b611e6784611e08565b9250611e7560208501611e08565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611eb657611eb6611e85565b604051601f8501601f19908116603f01168101908282118183101715611ede57611ede611e85565b81604052809350858152868686011115611ef757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f2357600080fd5b813567ffffffffffffffff811115611f3a57600080fd5b8201601f81018413611f4b57600080fd5b6119aa84823560208401611e9b565b600060208284031215611f6c57600080fd5b61140582611e08565b60008060408385031215611f8857600080fd5b611f9183611e08565b9150611f9f60208401611d54565b90509250929050565b60008060008060808587031215611fbe57600080fd5b611fc785611e08565b9350611fd560208601611e08565b925060408501359150606085013567ffffffffffffffff811115611ff857600080fd5b8501601f8101871361200957600080fd5b61201887823560208401611e9b565b91505092959194509250565b6000806040838503121561203757600080fd5b61204083611e08565b9150611f9f60208401611e08565b600181811c9082168061206257607f821691505b6020821081141561208357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156120b9576120b9612089565b500290565b6000828210156120d0576120d0612089565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826120fa576120fa6120d5565b500490565b6000821982111561211257612112612089565b500190565b60008451612129818460208901611d84565b84519083019061213d818360208901611d84565b8451910190612150818360208801611d84565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261218c6080830184611db0565b9695505050505050565b6000602082840312156121a857600080fd5b815161140581611d21565b60006000198214156121c7576121c7612089565b5060010190565b6000826121dd576121dd6120d5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220244ff3c368944d79c63b4a1ab889d84e7a513dcc6aec6bda020d886d42b6e55064736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000f476f626c696e204469766973696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006474f42444956000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102855760003560e01c806370a0823111610153578063a0712d68116100cb578063c87b56dd1161007f578063f2c4ce1e11610064578063f2c4ce1e1461068e578063f2fde38b146106ae578063f43a22dc146106ce57600080fd5b8063c87b56dd1461064e578063e985e9c51461066e57600080fd5b8063a2b40d19116100b0578063a2b40d191461059b578063a475b5dd14610619578063b88d4fde1461062e57600080fd5b8063a0712d68146105e6578063a22cb465146105f957600080fd5b806380b173351161012257806391b7f5ed1161010757806391b7f5ed1461059b57806395d89b41146105bb578063a035b1fe146105d057600080fd5b806380b17335146105675780638da5cb5b1461057d57600080fd5b806370a08231146104fc578063715018a61461051c578063732496c9146105315780637f00c7a61461054757600080fd5b80632fb3905a1161020157806351830227116101b55780635c975abb1161019a5780635c975abb146104ad5780636352211e146104c7578063698982ba146104e757600080fd5b8063518302271461046e57806355f804b31461048d57600080fd5b80633ad10ef6116101e65780633ad10ef6146104115780633ccfd60b1461043957806342842e0e1461044e57600080fd5b80632fb3905a146103db57806332cb6b0c146103fb57600080fd5b8063095ea7b3116102585780631c75f0851161023d5780631c75f0851461037e578063239c70ae146103a657806323b872dd146103bb57600080fd5b8063095ea7b31461033b57806318160ddd1461035b57600080fd5b806301ffc9a71461028a57806302329a29146102bf57806306fdde03146102e1578063081812fc14610303575b600080fd5b34801561029657600080fd5b506102aa6102a5366004611d37565b6106e4565b60405190151581526020015b60405180910390f35b3480156102cb57600080fd5b506102df6102da366004611d69565b610781565b005b3480156102ed57600080fd5b506102f66107f3565b6040516102b69190611ddc565b34801561030f57600080fd5b5061032361031e366004611def565b610885565b6040516001600160a01b0390911681526020016102b6565b34801561034757600080fd5b506102df610356366004611e1f565b6108e2565b34801561036757600080fd5b50600154600054035b6040519081526020016102b6565b34801561038a57600080fd5b5061032373478b5734b256c47e4132a34104d4bc21dddf43dc81565b3480156103b257600080fd5b50600b54610370565b3480156103c757600080fd5b506102df6103d6366004611e49565b6109f4565b3480156103e757600080fd5b506103706103f6366004611e1f565b610a04565b34801561040757600080fd5b50610370600c5481565b34801561041d57600080fd5b50610323731b1287627406466e80f3e713a943fce557d05a2181565b34801561044557600080fd5b506102df610a87565b34801561045a57600080fd5b506102df610469366004611e49565b610bcf565b34801561047a57600080fd5b50600f546102aa90610100900460ff1681565b34801561049957600080fd5b506102df6104a8366004611f11565b610bea565b3480156104b957600080fd5b50600f546102aa9060ff1681565b3480156104d357600080fd5b506103236104e2366004611def565b610c5b565b3480156104f357600080fd5b506102df610c66565b34801561050857600080fd5b50610370610517366004611f5a565b610ccd565b34801561052857600080fd5b506102df610d35565b34801561053d57600080fd5b50610370600e5481565b34801561055357600080fd5b506102df610562366004611def565b610d99565b34801561057357600080fd5b5061037060105481565b34801561058957600080fd5b506008546001600160a01b0316610323565b3480156105a757600080fd5b506102df6105b6366004611def565b610df8565b3480156105c757600080fd5b506102f6610e57565b3480156105dc57600080fd5b50610370600d5481565b6102df6105f4366004611def565b610e66565b34801561060557600080fd5b506102df610614366004611f75565b61107a565b34801561062557600080fd5b506102df611129565b34801561063a57600080fd5b506102df610649366004611fa8565b611194565b34801561065a57600080fd5b506102f6610669366004611def565b6111d8565b34801561067a57600080fd5b506102aa610689366004612024565b61140c565b34801561069a57600080fd5b506102df6106a9366004611f11565b61143c565b3480156106ba57600080fd5b506102df6106c9366004611f5a565b6114a9565b3480156106da57600080fd5b50610370600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316148061074757507f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b8061077b57507f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6008546001600160a01b031633146107e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600f805460ff1916911515919091179055565b6060600280546108029061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461082e9061204e565b801561087b5780601f106108505761010080835404028352916020019161087b565b820191906000526020600020905b81548152906001019060200180831161085e57829003601f168201915b5050505050905090565b60006108908261158b565b6108c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ed826115b2565b9050806001600160a01b0316836001600160a01b0316141561093b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161461098b57610955813361140c565b61098b576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ff83838361162c565b505050565b6001600160a01b03821660009081526011602052604081205460ff16151560011415610a3f5781600d54610a38919061209f565b905061077b565b6000601054610a516001546000540390565b11610a6a57600e54610a6390846120be565b9050610a6d565b50815b600081600d54610a7d919061209f565b925061077b915050565b6008546001600160a01b03163314610ae15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b4760006064610af183602861209f565b610afb91906120eb565b905060006064610b0c84600f61209f565b610b1691906120eb565b604051909150731b1287627406466e80f3e713a943fce557d05a219082156108fc029083906000818181858888f19350505050158015610b5a573d6000803e3d6000fd5b5060405173478b5734b256c47e4132a34104d4bc21dddf43dc9083156108fc029084906000818181858888f19350505050158015610b9c573d6000803e3d6000fd5b5060405133904780156108fc02916000818181858888f19350505050158015610bc9573d6000803e3d6000fd5b50505050565b6109ff83838360405180602001604052806000815250611194565b6008546001600160a01b03163314610c445760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610c57906009906020840190611c88565b5050565b600061077b826115b2565b6008546001600160a01b03163314610cc05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b610ccb336001611841565b565b60006001600160a01b038216610d0f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610d8f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b610ccb600061185b565b6008546001600160a01b03163314610df35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600b55565b6008546001600160a01b03163314610e525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600d55565b6060600380546108029061204e565b600f54339060ff1615610ebb5760405162461bcd60e51b815260206004820152600660248201527f506175736564000000000000000000000000000000000000000000000000000060448201526064016107d7565b81610ec96001546000540390565b610ed391906120ff565b600c541015610f245760405162461bcd60e51b815260206004820152601260248201527f45786365656473206d617820737570706c79000000000000000000000000000060448201526064016107d7565b60008211610f745760405162461bcd60e51b815260206004820152600a60248201527f4e6f2030206d696e74730000000000000000000000000000000000000000000060448201526064016107d7565b6000610f808284610a04565b9050610f946008546001600160a01b031690565b6001600160a01b0316826001600160a01b03161461104d57348114610ffb5760405162461bcd60e51b815260206004820152601660248201527f496e76616c69642066756e64732070726f76696465640000000000000000000060448201526064016107d7565b82600b54101561104d5760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820506572205472616e73616374696f6e000000000060448201526064016107d7565b6001600160a01b0382166000908152601160205260409020805460ff191660011790556109ff8284611841565b6001600160a01b0382163314156110bd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146111835760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b600f805461ff001916610100179055565b61119f84848461162c565b6001600160a01b0383163b15610bc9576111bb848484846118ba565b610bc9576040516368d2bf6b60e11b815260040160405180910390fd5b60606111e38261158b565b6112555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107d7565b600f54610100900460ff166112f657600a80546112719061204e565b80601f016020809104026020016040519081016040528092919081815260200182805461129d9061204e565b80156112ea5780601f106112bf576101008083540402835291602001916112ea565b820191906000526020600020905b8154815290600101906020018083116112cd57829003601f168201915b50505050509050919050565b6000600980546113059061204e565b80601f01602080910402602001604051908101604052809291908181526020018280546113319061204e565b801561137e5780601f106113535761010080835404028352916020019161137e565b820191906000526020600020905b81548152906001019060200180831161136157829003601f168201915b5050505050905060008151116113a35760405180602001604052806000815250611405565b806113ad846119b2565b6040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152506040516020016113f593929190612117565b6040516020818303038152906040525b9392505050565b6001600160a01b03808316600090815260076020908152604080832093851683529290529081205460ff16611405565b6008546001600160a01b031633146114965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b8051610c5790600a906020840190611c88565b6008546001600160a01b031633146115035760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d7565b6001600160a01b03811661157f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107d7565b6115888161185b565b50565b600080548210801561077b575050600090815260046020526040902054600160e01b161590565b6000816000548110156115fa57600081815260046020526040902054600160e01b81166115f8575b806114055750600019016000818152600460205260409020546115da565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611637826115b2565b9050836001600160a01b0316816001600160a01b031614611684576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806116a257506116a2853361140c565b806116bd5750336116b284610885565b6001600160a01b0316145b9050806116f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038416611736576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000838152600660209081526040808320805473ffffffffffffffffffffffffffffffffffffffff191690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915290207c02000000000000000000000000000000000000000000000000000000004260a01b8617811790915582166117f957600183016000818152600460205260409020546117f75760005481146117f75760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610c57828260405180602001604052806000815250611ae4565b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118ef90339089908890889060040161215a565b602060405180830381600087803b15801561190957600080fd5b505af1925050508015611939575060408051601f3d908101601f1916820190925261193691810190612196565b60015b611994573d808015611967576040519150601f19603f3d011682016040523d82523d6000602084013e61196c565b606091505b50805161198c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119f257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611a1c5780611a06816121b3565b9150611a159050600a836120eb565b91506119f6565b60008167ffffffffffffffff811115611a3757611a37611e85565b6040519080825280601f01601f191660200182016040528015611a61576020820181803683370190505b5090505b84156119aa57611a766001836120be565b9150611a83600a866121ce565b611a8e9060306120ff565b60f81b818381518110611aa357611aa36121e2565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611add600a866120eb565b9450611a65565b6000546001600160a01b038416611b27576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82611b5e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611c33575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bfc60008784806001019550876118ba565b611c19576040516368d2bf6b60e11b815260040160405180910390fd5b808210611bb1578260005414611c2e57600080fd5b611c78565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611c34575b506000908155610bc99085838684565b828054611c949061204e565b90600052602060002090601f016020900481019282611cb65760008555611cfc565b82601f10611ccf57805160ff1916838001178555611cfc565b82800160010185558215611cfc579182015b82811115611cfc578251825591602001919060010190611ce1565b50611d08929150611d0c565b5090565b5b80821115611d085760008155600101611d0d565b6001600160e01b03198116811461158857600080fd5b600060208284031215611d4957600080fd5b813561140581611d21565b80358015158114611d6457600080fd5b919050565b600060208284031215611d7b57600080fd5b61140582611d54565b60005b83811015611d9f578181015183820152602001611d87565b83811115610bc95750506000910152565b60008151808452611dc8816020860160208601611d84565b601f01601f19169290920160200192915050565b6020815260006114056020830184611db0565b600060208284031215611e0157600080fd5b5035919050565b80356001600160a01b0381168114611d6457600080fd5b60008060408385031215611e3257600080fd5b611e3b83611e08565b946020939093013593505050565b600080600060608486031215611e5e57600080fd5b611e6784611e08565b9250611e7560208501611e08565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611eb657611eb6611e85565b604051601f8501601f19908116603f01168101908282118183101715611ede57611ede611e85565b81604052809350858152868686011115611ef757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611f2357600080fd5b813567ffffffffffffffff811115611f3a57600080fd5b8201601f81018413611f4b57600080fd5b6119aa84823560208401611e9b565b600060208284031215611f6c57600080fd5b61140582611e08565b60008060408385031215611f8857600080fd5b611f9183611e08565b9150611f9f60208401611d54565b90509250929050565b60008060008060808587031215611fbe57600080fd5b611fc785611e08565b9350611fd560208601611e08565b925060408501359150606085013567ffffffffffffffff811115611ff857600080fd5b8501601f8101871361200957600080fd5b61201887823560208401611e9b565b91505092959194509250565b6000806040838503121561203757600080fd5b61204083611e08565b9150611f9f60208401611e08565b600181811c9082168061206257607f821691505b6020821081141561208357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156120b9576120b9612089565b500290565b6000828210156120d0576120d0612089565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826120fa576120fa6120d5565b500490565b6000821982111561211257612112612089565b500190565b60008451612129818460208901611d84565b84519083019061213d818360208901611d84565b8451910190612150818360208801611d84565b0195945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261218c6080830184611db0565b9695505050505050565b6000602082840312156121a857600080fd5b815161140581611d21565b60006000198214156121c7576121c7612089565b5060010190565b6000826121dd576121dd6120d5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220244ff3c368944d79c63b4a1ab889d84e7a513dcc6aec6bda020d886d42b6e55064736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000f476f626c696e204469766973696f6e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006474f42444956000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Goblin Division
Arg [1] : _symbol (string): GOBDIV
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string):
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 476f626c696e204469766973696f6e0000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 474f424449560000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44016:4547:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;-1:-1:-1;18620:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;18620:615:0;;;;;;;;47496:81;;;;;;;;;;-1:-1:-1;47496:81:0;;;;;:::i;:::-;;:::i;:::-;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25701:204::-;;;;;;;;;;-1:-1:-1;25701:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2088:55:1;;;2070:74;;2058:2;2043:18;25701:204:0;1924:226:1;25161:474:0;;;;;;;;;;-1:-1:-1;25161:474:0;;;;;:::i;:::-;;:::i;17674:315::-;;;;;;;;;;-1:-1:-1;17940:12:0;;17727:7;17924:13;:28;17674:315;;;2761:25:1;;;2749:2;2734:18;17674:315:0;2615:177:1;44544:80:0;;;;;;;;;;;;44582:42;44544:80;;45922:111;;;;;;;;;;-1:-1:-1;46005:10:0;;45922:111;;26587:170;;;;;;;;;;-1:-1:-1;26587:170:0;;;;;:::i;:::-;;:::i;46041:544::-;;;;;;;;;;-1:-1:-1;46041:544:0;;;;;:::i;:::-;;:::i;44229:33::-;;;;;;;;;;;;;;;;44458:79;;;;;;;;;;;;44495:42;44458:79;;46678:373;;;;;;;;;;;;;:::i;26828:185::-;;;;;;;;;;-1:-1:-1;26828:185:0;;;;;:::i;:::-;;:::i;44385:28::-;;;;;;;;;;-1:-1:-1;44385:28:0;;;;;;;;;;;47585:104;;;;;;;;;;-1:-1:-1;47585:104:0;;;;;:::i;:::-;;:::i;44353:25::-;;;;;;;;;;-1:-1:-1;44353:25:0;;;;;;;;23422:144;;;;;;;;;;-1:-1:-1;23422:144:0;;;;;:::i;:::-;;:::i;47405:83::-;;;;;;;;;;;;;:::i;19299:224::-;;;;;;;;;;-1:-1:-1;19299:224:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44315:31::-;;;;;;;;;;;;;;;;47155:119;;;;;;;;;;-1:-1:-1;47155:119:0;;;;;:::i;:::-;;:::i;44420:31::-;;;;;;;;;;;;;;;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;47059:88;;;;;;;;;;-1:-1:-1;47059:88:0;;;;;:::i;:::-;;:::i;23802:104::-;;;;;;;;;;;;;:::i;44273:35::-;;;;;;;;;;;;;;;;44992:650;;;;;;:::i;:::-;;:::i;25977:308::-;;;;;;;;;;-1:-1:-1;25977:308:0;;;;;:::i;:::-;;:::i;46599:69::-;;;;;;;;;;;;;:::i;27084:396::-;;;;;;;;;;-1:-1:-1;27084:396:0;;;;;:::i;:::-;;:::i;47831:729::-;;;;;;;;;;-1:-1:-1;47831:729:0;;;;;:::i;:::-;;:::i;45650:264::-;;;;;;;;;;-1:-1:-1;45650:264:0;;;;;:::i;:::-;;:::i;47697:126::-;;;;;;;;;;-1:-1:-1;47697:126:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;44188:30::-;;;;;;;;;;;;;;;;18620:615;18705:4;19005:25;-1:-1:-1;;;;;;19005:25:0;;;;:102;;-1:-1:-1;19082:25:0;-1:-1:-1;;;;;;19082:25:0;;;19005:102;:179;;;-1:-1:-1;19159:25:0;-1:-1:-1;;;;;;19159:25:0;;;19005:179;18985:199;18620:615;-1:-1:-1;;18620:615:0:o;47496:81::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;;;;;;;;;47554:6:::1;:15:::0;;-1:-1:-1;;47554:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47496:81::o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;;;;;;;;;;;;;25789:64;-1:-1:-1;25873:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25873:24:0;;25701:204::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;-1:-1:-1;;;;;25310:11:0;:2;-1:-1:-1;;;;;25310:11:0;;25306:48;;;25330:24;;;;;;;;;;;;;;25306:48;2883:10;-1:-1:-1;;;;;25371:28:0;;;25367:175;;25419:44;25436:5;2883:10;45650:264;:::i;25419:44::-;25414:128;;25491:35;;;;;;;;;;;;;;25414:128;25554:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;25554:29:0;-1:-1:-1;;;;;25554:29:0;;;;;;;;;25599:28;;25554:24;;25599:28;;;;;;;25223:412;25161:474;;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;46041:544::-;-1:-1:-1;;;;;46145:18:0;;46117:7;46145:18;;;:9;:18;;;;;;;;:26;;:18;:26;46141:437;;;46207:7;46199:5;;:15;;;;:::i;:::-;46192:22;;;;46141:437;46255:18;46313:9;;46296:13;17940:12;;17727:7;17924:13;:28;;17674:315;46296:13;:26;46292:179;;46370:12;;46360:22;;:7;:22;:::i;:::-;46347:35;;46292:179;;;-1:-1:-1;46444:7:0;46292:179;46489:17;46517:10;46509:5;;:18;;;;:::i;:::-;46489:38;-1:-1:-1;46546:16:0;;-1:-1:-1;;46546:16:0;46678:373;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;46751:21:::1;46728:20;46823:3;46804:17;46751:21:::0;46819:2:::1;46804:17;:::i;:::-;46803:23;;;;:::i;:::-;46783:43:::0;-1:-1:-1;46837:16:0::1;46876:3;46857:17;:12:::0;46872:2:::1;46857:17;:::i;:::-;46856:23;;;;:::i;:::-;46890:38;::::0;46837:42;;-1:-1:-1;44495:42:0::1;::::0;46890:38;::::1;;;::::0;46837:42;;46890:38:::1;::::0;;;46837:42;44495;46890:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46939:40:0::1;::::0;44582:42:::1;::::0;46939:40;::::1;;;::::0;46969:9;;46939:40:::1;::::0;;;46969:9;44582:42;46939:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46990:51:0::1;::::0;46998:10:::1;::::0;47019:21:::1;46990:51:::0;::::1;;;::::0;::::1;::::0;;;47019:21;46998:10;46990:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;46717:334;;;46678:373::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;47585:104::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47660:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47585:104:::0;:::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;47405:83::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47454:26:::1;2883:10:::0;47478:1:::1;47454:9;:26::i;:::-;47405:83::o:0;19299:224::-;19363:7;-1:-1:-1;;;;;19387:19:0;;19383:60;;19415:28;;;;;;;;;;;;;;19383:60;-1:-1:-1;;;;;;19461:25:0;;;;;:18;:25;;;;;;14638:13;19461:54;;19299:224::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;4795:30:::1;4822:1;4795:18;:30::i;47155:119::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47236:10:::1;:30:::0;47155:119::o;47059:88::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47123:5:::1;:16:::0;47059:88::o;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;44992:650::-;45099:6;;45069:10;;45099:6;;45098:7;45090:26;;;;-1:-1:-1;;;45090:26:0;;7610:2:1;45090:26:0;;;7592:21:1;7649:1;7629:18;;;7622:29;7687:8;7667:18;;;7660:36;7713:18;;45090:26:0;7408:329:1;45090:26:0;45165:7;45149:13;17940:12;;17727:7;17924:13;:28;;17674:315;45149:13;:23;;;;:::i;:::-;45135:10;;:37;;45127:68;;;;-1:-1:-1;;;45127:68:0;;8077:2:1;45127:68:0;;;8059:21:1;8116:2;8096:18;;;8089:30;8155:20;8135:18;;;8128:48;8193:18;;45127:68:0;7875:342:1;45127:68:0;45224:1;45214:7;:11;45206:34;;;;-1:-1:-1;;;45206:34:0;;8424:2:1;45206:34:0;;;8406:21:1;8463:2;8443:18;;;8436:30;8502:12;8482:18;;;8475:40;8532:18;;45206:34:0;8222:334:1;45206:34:0;45251:18;45272:30;45285:7;45294;45272:12;:30::i;:::-;45251:51;;45338:7;4152:6;;-1:-1:-1;;;;;4152:6:0;;4079:87;45338:7;-1:-1:-1;;;;;45327:18:0;:7;-1:-1:-1;;;;;45327:18:0;;45323:239;;45420:9;45406:10;:23;45398:58;;;;-1:-1:-1;;;45398:58:0;;8763:2:1;45398:58:0;;;8745:21:1;8802:2;8782:18;;;8775:30;8841:24;8821:18;;;8814:52;8883:18;;45398:58:0;8561:346:1;45398:58:0;45497:7;45483:10;;:21;;45475:61;;;;-1:-1:-1;;;45475:61:0;;9114:2:1;45475:61:0;;;9096:21:1;9153:2;9133:18;;;9126:30;9192:29;9172:18;;;9165:57;9239:18;;45475:61:0;8912:351:1;45475:61:0;-1:-1:-1;;;;;45572:18:0;;;;;;:9;:18;;;;;:24;;-1:-1:-1;;45572:24:0;45592:4;45572:24;;;45607:27;45582:7;45626;45607:9;:27::i;25977:308::-;-1:-1:-1;;;;;26076:31:0;;2883:10;26076:31;26072:61;;;26116:17;;;;;;;;;;;;;;26072:61;2883:10;26146:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26146:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26146:60:0;;;;;;;;;;26222:55;;586:41:1;;;26146:49:0;;2883:10;26222:55;;559:18:1;26222:55:0;;;;;;;25977:308;;:::o;46599:69::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;46645:8:::1;:15:::0;;-1:-1:-1;;46645:15:0::1;;;::::0;;46599:69::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;-1:-1:-1;;;;;27294:14:0;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;-1:-1:-1;;;27417:40:0;;;;;;;;;;;47831:729;47949:13;48002:16;48010:7;48002;:16::i;:::-;47980:113;;;;-1:-1:-1;;;47980:113:0;;9470:2:1;47980:113:0;;;9452:21:1;9509:2;9489:18;;;9482:30;9548:34;9528:18;;;9521:62;9619:17;9599:18;;;9592:45;9654:19;;47980:113:0;9268:411:1;47980:113:0;48110:8;;;;;;;48106:71;;48151:14;48144:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47831:729;;;:::o;48106:71::-;48189:28;48220:7;48189:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48289:1;48264:14;48258:28;:32;:294;;;;;;;;;;;;;;;;;48382:14;48423:25;48440:7;48423:16;:25::i;:::-;48475:13;;;;;;;;;;;;;;;;;48339:172;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48258:294;48238:314;47831:729;-1:-1:-1;;;47831:729:0:o;45650:264::-;-1:-1:-1;;;;;26477:25:0;;;45775:4;26477:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;45867:39;26356:164;47697:126;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;47783:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;6001:2:1;4291:68:0;;;5983:21:1;;;6020:18;;;6013:30;6079:34;6059:18;;;6052:62;6131:18;;4291:68:0;5799:356:1;4291:68:0;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;10555:2:1;5069:73:0::1;::::0;::::1;10537:21:1::0;10594:2;10574:18;;;10567:30;10633:34;10613:18;;;10606:62;10704:8;10684:18;;;10677:36;10730:19;;5069:73:0::1;10353:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;27735:273::-;27792:4;27882:13;;27872:7;:23;27829:152;;;;-1:-1:-1;;27933:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27933:43:0;:48;;27735:273::o;20937:1129::-;21004:7;21039;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:23;;;:17;:23;;;;;;-1:-1:-1;;;21285:23:0;;21281:699;;21804:113;21811:11;21804:113;;-1:-1:-1;;;21882:6:0;21864:25;;;;:17;:25;;;;;;21804:113;;21281:699;21156:843;21130:869;22027:31;;;;;;;;;;;;;;32974:2515;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;-1:-1:-1;;;;;33163:45:0;33179:19;-1:-1:-1;;;;;33163:45:0;;33159:86;;33217:28;;;;;;;;;;;;;;33159:86;33258:22;2883:10;-1:-1:-1;;;;;33284:27:0;;;;:87;;-1:-1:-1;33328:43:0;33345:4;2883:10;45650:264;:::i;33328:43::-;33284:147;;;-1:-1:-1;2883:10:0;33388:20;33400:7;33388:11;:20::i;:::-;-1:-1:-1;;;;;33388:43:0;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;;;;;;;;;;;;;33445:66;-1:-1:-1;;;;;33526:16:0;;33522:52;;33551:23;;;;;;;;;;;;;;33522:52;33703:24;;;;:15;:24;;;;;;;;33696:31;;-1:-1:-1;;33696:31:0;;;-1:-1:-1;;;;;34095:24:0;;;;;:18;:24;;;;;34093:26;;-1:-1:-1;;34093:26:0;;;34164:22;;;;;;;34162:24;;-1:-1:-1;34162:24:0;;;34457:26;;;:17;:26;;;;;15690:8;34545:15;15292:3;34545:41;34503:84;;:128;;34457:174;;;34751:46;;34747:626;;34855:1;34845:11;;34823:19;34978:30;;;:17;:30;;;;;;34974:384;;35116:13;;35101:11;:28;35097:242;;35263:30;;;;:17;:30;;;;;:52;;;35097:242;34804:569;34747:626;35420:7;35416:2;-1:-1:-1;;;;;35401:27:0;35410:4;-1:-1:-1;;;;;35401:27:0;;;;;;;;;;;33078:2411;;32974:2515;;;:::o;28092:104::-;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;5349:191::-;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;39186:716::-;39370:88;;-1:-1:-1;;;39370:88:0;;39349:4;;-1:-1:-1;;;;;39370:45:0;;;;;:88;;2883:10;;39437:4;;39443:7;;39452:5;;39370:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39370:88:0;;;;;;;;-1:-1:-1;;39370:88:0;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39653:13:0;;39649:235;;39699:40;;-1:-1:-1;;;39699:40:0;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;-1:-1:-1;;;;;;39529:64:0;-1:-1:-1;;;39529:64:0;;-1:-1:-1;39366:529:0;39186:716;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;;;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28569:2236;28692:20;28715:13;-1:-1:-1;;;;;28743:16:0;;28739:48;;28768:19;;;;;;;;;;;;;;28739:48;28802:13;28798:44;;28824:18;;;;;;;;;;;;;;28798:44;-1:-1:-1;;;;;29391:22:0;;;;;;:18;:22;;;;14775:2;29391:22;;;:70;;29429:31;29417:44;;29391:70;;;29704:31;;;:17;:31;;;;;29797:15;15292:3;29797:41;29755:84;;-1:-1:-1;29875:13:0;;15555:3;29860:56;29755:162;29704:213;;:31;;29998:23;;;;30042:14;:19;30038:635;;30082:313;30113:38;;30138:12;;-1:-1:-1;;;;;30113:38:0;;;30130:1;;30113:38;;30130:1;;30113:38;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;-1:-1:-1;;;30284:40:0;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30570:40;;30595:14;;;;;-1:-1:-1;;;;;30570:40:0;;;30587:1;;30570:40;;30587:1;;30570:40;30653:3;30638:12;:18;30539:119;;30038:635;-1:-1:-1;30687:13:0;:28;;;30737:60;;30770:2;30774:12;30788:8;30737:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;-1:-1:-1;;;;;;92:5:1;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:160::-;703:20;;759:13;;752:21;742:32;;732:60;;788:1;785;778:12;732:60;638:160;;;:::o;803:180::-;859:6;912:2;900:9;891:7;887:23;883:32;880:52;;;928:1;925;918:12;880:52;951:26;967:9;951:26;:::i;988:258::-;1060:1;1070:113;1084:6;1081:1;1078:13;1070:113;;;1160:11;;;1154:18;1141:11;;;1134:39;1106:2;1099:10;1070:113;;;1201:6;1198:1;1195:13;1192:48;;;-1:-1:-1;;1236:1:1;1218:16;;1211:27;988:258::o;1251:::-;1293:3;1331:5;1325:12;1358:6;1353:3;1346:19;1374:63;1430:6;1423:4;1418:3;1414:14;1407:4;1400:5;1396:16;1374:63;:::i;:::-;1491:2;1470:15;-1:-1:-1;;1466:29:1;1457:39;;;;1498:4;1453:50;;1251:258;-1:-1:-1;;1251:258:1:o;1514:220::-;1663:2;1652:9;1645:21;1626:4;1683:45;1724:2;1713:9;1709:18;1701:6;1683:45;:::i;1739:180::-;1798:6;1851:2;1839:9;1830:7;1826:23;1822:32;1819:52;;;1867:1;1864;1857:12;1819:52;-1:-1:-1;1890:23:1;;1739:180;-1:-1:-1;1739:180:1:o;2155:196::-;2223:20;;-1:-1:-1;;;;;2272:54:1;;2262:65;;2252:93;;2341:1;2338;2331:12;2356:254;2424:6;2432;2485:2;2473:9;2464:7;2460:23;2456:32;2453:52;;;2501:1;2498;2491:12;2453:52;2524:29;2543:9;2524:29;:::i;:::-;2514:39;2600:2;2585:18;;;;2572:32;;-1:-1:-1;;;2356:254:1:o;2797:328::-;2874:6;2882;2890;2943:2;2931:9;2922:7;2918:23;2914:32;2911:52;;;2959:1;2956;2949:12;2911:52;2982:29;3001:9;2982:29;:::i;:::-;2972:39;;3030:38;3064:2;3053:9;3049:18;3030:38;:::i;:::-;3020:48;;3115:2;3104:9;3100:18;3087:32;3077:42;;2797:328;;;;;:::o;3130:184::-;-1:-1:-1;;;3179:1:1;3172:88;3279:4;3276:1;3269:15;3303:4;3300:1;3293:15;3319:632;3384:5;3414:18;3455:2;3447:6;3444:14;3441:40;;;3461:18;;:::i;:::-;3536:2;3530:9;3504:2;3590:15;;-1:-1:-1;;3586:24:1;;;3612:2;3582:33;3578:42;3566:55;;;3636:18;;;3656:22;;;3633:46;3630:72;;;3682:18;;:::i;:::-;3722:10;3718:2;3711:22;3751:6;3742:15;;3781:6;3773;3766:22;3821:3;3812:6;3807:3;3803:16;3800:25;3797:45;;;3838:1;3835;3828:12;3797:45;3888:6;3883:3;3876:4;3868:6;3864:17;3851:44;3943:1;3936:4;3927:6;3919;3915:19;3911:30;3904:41;;;;3319:632;;;;;:::o;3956:451::-;4025:6;4078:2;4066:9;4057:7;4053:23;4049:32;4046:52;;;4094:1;4091;4084:12;4046:52;4134:9;4121:23;4167:18;4159:6;4156:30;4153:50;;;4199:1;4196;4189:12;4153:50;4222:22;;4275:4;4267:13;;4263:27;-1:-1:-1;4253:55:1;;4304:1;4301;4294:12;4253:55;4327:74;4393:7;4388:2;4375:16;4370:2;4366;4362:11;4327:74;:::i;4412:186::-;4471:6;4524:2;4512:9;4503:7;4499:23;4495:32;4492:52;;;4540:1;4537;4530:12;4492:52;4563:29;4582:9;4563:29;:::i;4603:254::-;4668:6;4676;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4768:29;4787:9;4768:29;:::i;:::-;4758:39;;4816:35;4847:2;4836:9;4832:18;4816:35;:::i;:::-;4806:45;;4603:254;;;;;:::o;4862:667::-;4957:6;4965;4973;4981;5034:3;5022:9;5013:7;5009:23;5005:33;5002:53;;;5051:1;5048;5041:12;5002:53;5074:29;5093:9;5074:29;:::i;:::-;5064:39;;5122:38;5156:2;5145:9;5141:18;5122:38;:::i;:::-;5112:48;;5207:2;5196:9;5192:18;5179:32;5169:42;;5262:2;5251:9;5247:18;5234:32;5289:18;5281:6;5278:30;5275:50;;;5321:1;5318;5311:12;5275:50;5344:22;;5397:4;5389:13;;5385:27;-1:-1:-1;5375:55:1;;5426:1;5423;5416:12;5375:55;5449:74;5515:7;5510:2;5497:16;5492:2;5488;5484:11;5449:74;:::i;:::-;5439:84;;;4862:667;;;;;;;:::o;5534:260::-;5602:6;5610;5663:2;5651:9;5642:7;5638:23;5634:32;5631:52;;;5679:1;5676;5669:12;5631:52;5702:29;5721:9;5702:29;:::i;:::-;5692:39;;5750:38;5784:2;5773:9;5769:18;5750:38;:::i;6160:437::-;6239:1;6235:12;;;;6282;;;6303:61;;6357:4;6349:6;6345:17;6335:27;;6303:61;6410:2;6402:6;6399:14;6379:18;6376:38;6373:218;;;-1:-1:-1;;;6444:1:1;6437:88;6548:4;6545:1;6538:15;6576:4;6573:1;6566:15;6373:218;;6160:437;;;:::o;6602:184::-;-1:-1:-1;;;6651:1:1;6644:88;6751:4;6748:1;6741:15;6775:4;6772:1;6765:15;6791:168;6831:7;6897:1;6893;6889:6;6885:14;6882:1;6879:21;6874:1;6867:9;6860:17;6856:45;6853:71;;;6904:18;;:::i;:::-;-1:-1:-1;6944:9:1;;6791:168::o;6964:125::-;7004:4;7032:1;7029;7026:8;7023:34;;;7037:18;;:::i;:::-;-1:-1:-1;7074:9:1;;6964:125::o;7094:184::-;-1:-1:-1;;;7143:1:1;7136:88;7243:4;7240:1;7233:15;7267:4;7264:1;7257:15;7283:120;7323:1;7349;7339:35;;7354:18;;:::i;:::-;-1:-1:-1;7388:9:1;;7283:120::o;7742:128::-;7782:3;7813:1;7809:6;7806:1;7803:13;7800:39;;;7819:18;;:::i;:::-;-1:-1:-1;7855:9:1;;7742:128::o;9684:664::-;9911:3;9949:6;9943:13;9965:53;10011:6;10006:3;9999:4;9991:6;9987:17;9965:53;:::i;:::-;10081:13;;10040:16;;;;10103:57;10081:13;10040:16;10137:4;10125:17;;10103:57;:::i;:::-;10227:13;;10182:20;;;10249:57;10227:13;10182:20;10283:4;10271:17;;10249:57;:::i;:::-;10322:20;;9684:664;-1:-1:-1;;;;;9684:664:1:o;10760:512::-;10954:4;-1:-1:-1;;;;;11064:2:1;11056:6;11052:15;11041:9;11034:34;11116:2;11108:6;11104:15;11099:2;11088:9;11084:18;11077:43;;11156:6;11151:2;11140:9;11136:18;11129:34;11199:3;11194:2;11183:9;11179:18;11172:31;11220:46;11261:3;11250:9;11246:19;11238:6;11220:46;:::i;:::-;11212:54;10760:512;-1:-1:-1;;;;;;10760:512:1:o;11277:249::-;11346:6;11399:2;11387:9;11378:7;11374:23;11370:32;11367:52;;;11415:1;11412;11405:12;11367:52;11447:9;11441:16;11466:30;11490:5;11466:30;:::i;11531:135::-;11570:3;-1:-1:-1;;11591:17:1;;11588:43;;;11611:18;;:::i;:::-;-1:-1:-1;11658:1:1;11647:13;;11531:135::o;11671:112::-;11703:1;11729;11719:35;;11734:18;;:::i;:::-;-1:-1:-1;11768:9:1;;11671:112::o;11788:184::-;-1:-1:-1;;;11837:1:1;11830:88;11937:4;11934:1;11927:15;11961:4;11958:1;11951:15
Swarm Source
ipfs://244ff3c368944d79c63b4a1ab889d84e7a513dcc6aec6bda020d886d42b6e550
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.