ERC-721
Overview
Max Total Supply
5,006 EDRT
Holders
596
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EDRT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-18 */ // SPDX-License-Identifier: MIT // 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: contracts/EDRT.sol pragma solidity ^0.8.4; contract EDRT is ERC721A, Ownable { uint256 public maxPerWallet = 10; uint256 public maxSupply = 10000; uint256 public freeSupply = 3000; uint256 public price = 0.0015 ether; bool public isPaused = true; string public baseURI = "ipfs://QmeMduP42uKQsvAWYUVsT43SmtRd71ukoktQpckr77Ujv4/"; constructor() ERC721A("ETH Doomsday Raffle Ticket", "EDRT") {} function mint(uint256 quantity) external payable { require(!isPaused, "Sales are off"); require(quantity + _numberMinted(msg.sender) <= maxPerWallet, "Exceeded the wallet limit"); require(totalSupply() + quantity <= maxSupply, "Not enough tokens left"); //first 'freeSupply' is free, then paid require( msg.value >= getPrice(quantity), "Insufficient Fund." ); _safeMint(msg.sender, quantity); } function getPrice(uint256 _count) internal view returns (uint256) { require(_count > 0, "Must be minting at least 1 token."); uint256 endingTokenId = _totalMinted() + _count; // If qty to mint results in a final token ID less than or equal to the cap then // the entire qty is within free mint. if(endingTokenId <= freeSupply) { return 0; } uint256 outsideIncentiveCount = endingTokenId - freeSupply; return 0 + price * outsideIncentiveCount; } function setPause(bool value) external onlyOwner { isPaused = value; } // ERC721A overrides // ERC721A starts counting tokenIds from 0, this contract starts from 1 function _startTokenId() internal pure override returns (uint256) { return 1; } function withdraw() external onlyOwner { uint balance = address(this).balance; require(balance > 0, "Nothing to Withdraw"); payable(owner()).transfer(balance); } function withdrawTo(address to) external onlyOwner { uint balance = address(this).balance; require(balance > 0, "Nothing to Withdraw"); payable(to).transfer(balance); } function setBaseURI(string memory newuri) external onlyOwner { baseURI = newuri; } function _baseURI() internal view override returns (string memory) { return baseURI; } function setPrice(uint256 _price) public onlyOwner { price = _price; } function setMaxPerWalleet(uint256 _maxPerWallet) public onlyOwner { maxPerWallet = _maxPerWallet; } function setFreeSupply(uint256 _freeSupply) public onlyOwner { freeSupply = _freeSupply; } function devMint(uint256 quantity) external onlyOwner { require(totalSupply() + quantity <= maxSupply, "Max supply exceeded!"); _safeMint(msg.sender, quantity); } function cutSupply(uint256 _maxSupply) external onlyOwner { require(_maxSupply < maxSupply , "make it a RULE"); maxSupply = _maxSupply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"cutSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","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":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_freeSupply","type":"uint256"}],"name":"setFreeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWalleet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
600a60098190556127109055610bb8600b556605543df729c000600c55600d805460ff1916600117905560e0604052603660808181529062001dec60a03980516200005391600e9160209091019062000144565b503480156200006157600080fd5b50604080518082018252601a81527f45544820446f6f6d7364617920526166666c65205469636b65740000000000006020808301918252835180850190945260048452631151149560e21b908401528151919291620000c39160029162000144565b508051620000d990600390602084019062000144565b5050600160005550620000ec33620000f2565b62000227565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015290620001ea565b90600052602060002090601f016020900481019282620001765760008555620001c1565b82601f106200019157805160ff1916838001178555620001c1565b82800160010185558215620001c1579182015b82811115620001c1578251825591602001919060010190620001a4565b50620001cf929150620001d3565b5090565b5b80821115620001cf5760008155600101620001d4565b600181811c90821680620001ff57607f821691505b602082108114156200022157634e487b7160e01b600052602260045260246000fd5b50919050565b611bb580620002376000396000f3fe6080604052600436106101ee5760003560e01c806372b0d90c1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610542578063f1b0287a1461058b578063f2fde38b146105ab578063f4c44569146105cb578063f676308a146105eb57600080fd5b8063b88d4fde146104cc578063bedb86fb146104ec578063c87b56dd1461050c578063d5abeb011461052c57600080fd5b8063a035b1fe116100dc578063a035b1fe14610469578063a0712d681461047f578063a22cb46514610492578063b187bd26146104b257600080fd5b806372b0d90c146103f65780638da5cb5b1461041657806391b7f5ed1461043457806395d89b411461045457600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e1461038c5780636c0360eb146103ac57806370a08231146103c1578063715018a6146103e157600080fd5b80633ccfd60b1461032157806342842e0e14610336578063453c23101461035657806355f804b31461036c57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102cb57806324a6ab0c146102eb578063375a069a1461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461190c565b61060b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065d565b60405161021f9190611a40565b34801561025657600080fd5b5061026a61026536600461198f565b6106ef565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046118c7565b610733565b005b3480156102b057600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102d757600080fd5b506102a26102e63660046117e5565b610806565b3480156102f757600080fd5b506102bd600b5481565b34801561030d57600080fd5b506102a261031c36600461198f565b610816565b34801561032d57600080fd5b506102a26108b6565b34801561034257600080fd5b506102a26103513660046117e5565b610962565b34801561036257600080fd5b506102bd60095481565b34801561037857600080fd5b506102a2610387366004611946565b61097d565b34801561039857600080fd5b5061026a6103a736600461198f565b6109ba565b3480156103b857600080fd5b5061023d6109c5565b3480156103cd57600080fd5b506102bd6103dc366004611797565b610a53565b3480156103ed57600080fd5b506102a2610aa2565b34801561040257600080fd5b506102a2610411366004611797565b610ad8565b34801561042257600080fd5b506008546001600160a01b031661026a565b34801561044057600080fd5b506102a261044f36600461198f565b610b7c565b34801561046057600080fd5b5061023d610bab565b34801561047557600080fd5b506102bd600c5481565b6102a261048d36600461198f565b610bba565b34801561049e57600080fd5b506102a26104ad36600461189d565b610d24565b3480156104be57600080fd5b50600d546102139060ff1681565b3480156104d857600080fd5b506102a26104e7366004611821565b610dba565b3480156104f857600080fd5b506102a26105073660046118f1565b610e04565b34801561051857600080fd5b5061023d61052736600461198f565b610e41565b34801561053857600080fd5b506102bd600a5481565b34801561054e57600080fd5b5061021361055d3660046117b2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102a26105a636600461198f565b610ec6565b3480156105b757600080fd5b506102a26105c6366004611797565b610ef5565b3480156105d757600080fd5b506102a26105e636600461198f565b610f8d565b3480156105f757600080fd5b506102a261060636600461198f565b610ffe565b60006301ffc9a760e01b6001600160e01b03198316148061063c57506380ac58cd60e01b6001600160e01b03198316145b806106575750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066c90611b02565b80601f016020809104026020016040519081016040528092919081815260200182805461069890611b02565b80156106e55780601f106106ba576101008083540402835291602001916106e5565b820191906000526020600020905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b60006106fa8261102d565b610717576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073e82611062565b9050806001600160a01b0316836001600160a01b031614156107735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107aa5761078d813361055d565b6107aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108118383836110cb565b505050565b6008546001600160a01b031633146108495760405162461bcd60e51b815260040161084090611a53565b60405180910390fd5b600a5460015460005483919003600019016108649190611a88565b11156108a95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610840565b6108b3338261126e565b50565b6008546001600160a01b031633146108e05760405162461bcd60e51b815260040161084090611a53565b47806109245760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b6044820152606401610840565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5050565b61081183838360405180602001604052806000815250610dba565b6008546001600160a01b031633146109a75760405162461bcd60e51b815260040161084090611a53565b805161095e90600e90602084019061165c565b600061065782611062565b600e80546109d290611b02565b80601f01602080910402602001604051908101604052809291908181526020018280546109fe90611b02565b8015610a4b5780601f10610a2057610100808354040283529160200191610a4b565b820191906000526020600020905b815481529060010190602001808311610a2e57829003601f168201915b505050505081565b60006001600160a01b038216610a7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610acc5760405162461bcd60e51b815260040161084090611a53565b610ad66000611288565b565b6008546001600160a01b03163314610b025760405162461bcd60e51b815260040161084090611a53565b4780610b465760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b6044820152606401610840565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610811573d6000803e3d6000fd5b6008546001600160a01b03163314610ba65760405162461bcd60e51b815260040161084090611a53565b600c55565b60606003805461066c90611b02565b600d5460ff1615610bfd5760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610840565b600954336000908152600560205260409081902054610c27911c67ffffffffffffffff1683611a88565b1115610c755760405162461bcd60e51b815260206004820152601960248201527f4578636565646564207468652077616c6c6574206c696d6974000000000000006044820152606401610840565b600a546001546000548391900360001901610c909190611a88565b1115610cd75760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610840565b610ce0816112da565b3410156108a95760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b6044820152606401610840565b6001600160a01b038216331415610d4e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc58484846110cb565b6001600160a01b0383163b15610dfe57610de184848484611396565b610dfe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161084090611a53565b600d805460ff1916911515919091179055565b6060610e4c8261102d565b610e6957604051630a14c4b560e41b815260040160405180910390fd5b6000610e7361148d565b9050805160001415610e945760405180602001604052806000815250610ebf565b80610e9e8461149c565b604051602001610eaf9291906119d4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ef05760405162461bcd60e51b815260040161084090611a53565b600955565b6008546001600160a01b03163314610f1f5760405162461bcd60e51b815260040161084090611a53565b6001600160a01b038116610f845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610840565b6108b381611288565b6008546001600160a01b03163314610fb75760405162461bcd60e51b815260040161084090611a53565b600a548110610ff95760405162461bcd60e51b815260206004820152600e60248201526d6d616b6520697420612052554c4560901b6044820152606401610840565b600a55565b6008546001600160a01b031633146110285760405162461bcd60e51b815260040161084090611a53565b600b55565b600081600111158015611041575060005482105b8015610657575050600090815260046020526040902054600160e01b161590565b600081806001116110b2576000548110156110b257600081815260046020526040902054600160e01b81166110b0575b80610ebf575060001901600081815260046020526040902054611092565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d682611062565b9050836001600160a01b0316816001600160a01b0316146111095760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111275750611127853361055d565b80611142575033611137846106ef565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661118957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661122657600183016000818152600460205260409020546112245760005481146112245760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61095e8282604051806020016040528060008152506114eb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082116113355760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b6064820152608401610840565b6000826113456000546000190190565b61134f9190611a88565b9050600b5481116113635750600092915050565b6000600b54826113739190611abf565b905080600c546113839190611aa0565b61138e906000611a88565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113cb903390899088908890600401611a03565b602060405180830381600087803b1580156113e557600080fd5b505af1925050508015611415575060408051601f3d908101601f1916820190925261141291810190611929565b60015b611470573d808015611443576040519150601f19603f3d011682016040523d82523d6000602084013e611448565b606091505b508051611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461066c90611b02565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b6000546001600160a01b03841661151457604051622e076360e81b815260040160405180910390fd5b826115325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611607575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115d06000878480600101955087611396565b6115ed576040516368d2bf6b60e11b815260040160405180910390fd5b80821061158557826000541461160257600080fd5b61164c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611608575b506000908155610dfe9085838684565b82805461166890611b02565b90600052602060002090601f01602090048101928261168a57600085556116d0565b82601f106116a357805160ff19168380011785556116d0565b828001600101855582156116d0579182015b828111156116d05782518255916020019190600101906116b5565b506116dc9291506116e0565b5090565b5b808211156116dc57600081556001016116e1565b600067ffffffffffffffff8084111561171057611710611b53565b604051601f8501601f19908116603f0116810190828211818310171561173857611738611b53565b8160405280935085815286868601111561175157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461178257600080fd5b919050565b8035801515811461178257600080fd5b6000602082840312156117a957600080fd5b610ebf8261176b565b600080604083850312156117c557600080fd5b6117ce8361176b565b91506117dc6020840161176b565b90509250929050565b6000806000606084860312156117fa57600080fd5b6118038461176b565b92506118116020850161176b565b9150604084013590509250925092565b6000806000806080858703121561183757600080fd5b6118408561176b565b935061184e6020860161176b565b925060408501359150606085013567ffffffffffffffff81111561187157600080fd5b8501601f8101871361188257600080fd5b611891878235602084016116f5565b91505092959194509250565b600080604083850312156118b057600080fd5b6118b98361176b565b91506117dc60208401611787565b600080604083850312156118da57600080fd5b6118e38361176b565b946020939093013593505050565b60006020828403121561190357600080fd5b610ebf82611787565b60006020828403121561191e57600080fd5b8135610ebf81611b69565b60006020828403121561193b57600080fd5b8151610ebf81611b69565b60006020828403121561195857600080fd5b813567ffffffffffffffff81111561196f57600080fd5b8201601f8101841361198057600080fd5b61138e848235602084016116f5565b6000602082840312156119a157600080fd5b5035919050565b600081518084526119c0816020860160208601611ad6565b601f01601f19169290920160200192915050565b600083516119e6818460208801611ad6565b8351908301906119fa818360208801611ad6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a36908301846119a8565b9695505050505050565b602081526000610ebf60208301846119a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a9b57611a9b611b3d565b500190565b6000816000190483118215151615611aba57611aba611b3d565b500290565b600082821015611ad157611ad1611b3d565b500390565b60005b83811015611af1578181015183820152602001611ad9565b83811115610dfe5750506000910152565b600181811c90821680611b1657607f821691505b60208210811415611b3757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108b357600080fdfea2646970667358221220c763d0d30f7e5cf5184913ae61819cc2f71fd52fcfd8724641a5c584d14e4c3a64736f6c63430008070033697066733a2f2f516d654d6475503432754b517376415759555673543433536d7452643731756b6f6b745170636b723737556a76342f
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c806372b0d90c1161010d578063b88d4fde116100a0578063e985e9c51161006f578063e985e9c514610542578063f1b0287a1461058b578063f2fde38b146105ab578063f4c44569146105cb578063f676308a146105eb57600080fd5b8063b88d4fde146104cc578063bedb86fb146104ec578063c87b56dd1461050c578063d5abeb011461052c57600080fd5b8063a035b1fe116100dc578063a035b1fe14610469578063a0712d681461047f578063a22cb46514610492578063b187bd26146104b257600080fd5b806372b0d90c146103f65780638da5cb5b1461041657806391b7f5ed1461043457806395d89b411461045457600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e1461038c5780636c0360eb146103ac57806370a08231146103c1578063715018a6146103e157600080fd5b80633ccfd60b1461032157806342842e0e14610336578063453c23101461035657806355f804b31461036c57600080fd5b806318160ddd116101c157806318160ddd146102a457806323b872dd146102cb57806324a6ab0c146102eb578063375a069a1461030157600080fd5b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282575b600080fd5b3480156101ff57600080fd5b5061021361020e36600461190c565b61060b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d61065d565b60405161021f9190611a40565b34801561025657600080fd5b5061026a61026536600461198f565b6106ef565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d3660046118c7565b610733565b005b3480156102b057600080fd5b5060015460005403600019015b60405190815260200161021f565b3480156102d757600080fd5b506102a26102e63660046117e5565b610806565b3480156102f757600080fd5b506102bd600b5481565b34801561030d57600080fd5b506102a261031c36600461198f565b610816565b34801561032d57600080fd5b506102a26108b6565b34801561034257600080fd5b506102a26103513660046117e5565b610962565b34801561036257600080fd5b506102bd60095481565b34801561037857600080fd5b506102a2610387366004611946565b61097d565b34801561039857600080fd5b5061026a6103a736600461198f565b6109ba565b3480156103b857600080fd5b5061023d6109c5565b3480156103cd57600080fd5b506102bd6103dc366004611797565b610a53565b3480156103ed57600080fd5b506102a2610aa2565b34801561040257600080fd5b506102a2610411366004611797565b610ad8565b34801561042257600080fd5b506008546001600160a01b031661026a565b34801561044057600080fd5b506102a261044f36600461198f565b610b7c565b34801561046057600080fd5b5061023d610bab565b34801561047557600080fd5b506102bd600c5481565b6102a261048d36600461198f565b610bba565b34801561049e57600080fd5b506102a26104ad36600461189d565b610d24565b3480156104be57600080fd5b50600d546102139060ff1681565b3480156104d857600080fd5b506102a26104e7366004611821565b610dba565b3480156104f857600080fd5b506102a26105073660046118f1565b610e04565b34801561051857600080fd5b5061023d61052736600461198f565b610e41565b34801561053857600080fd5b506102bd600a5481565b34801561054e57600080fd5b5061021361055d3660046117b2565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102a26105a636600461198f565b610ec6565b3480156105b757600080fd5b506102a26105c6366004611797565b610ef5565b3480156105d757600080fd5b506102a26105e636600461198f565b610f8d565b3480156105f757600080fd5b506102a261060636600461198f565b610ffe565b60006301ffc9a760e01b6001600160e01b03198316148061063c57506380ac58cd60e01b6001600160e01b03198316145b806106575750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461066c90611b02565b80601f016020809104026020016040519081016040528092919081815260200182805461069890611b02565b80156106e55780601f106106ba576101008083540402835291602001916106e5565b820191906000526020600020905b8154815290600101906020018083116106c857829003601f168201915b5050505050905090565b60006106fa8261102d565b610717576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061073e82611062565b9050806001600160a01b0316836001600160a01b031614156107735760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107aa5761078d813361055d565b6107aa576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108118383836110cb565b505050565b6008546001600160a01b031633146108495760405162461bcd60e51b815260040161084090611a53565b60405180910390fd5b600a5460015460005483919003600019016108649190611a88565b11156108a95760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b6044820152606401610840565b6108b3338261126e565b50565b6008546001600160a01b031633146108e05760405162461bcd60e51b815260040161084090611a53565b47806109245760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b6044820152606401610840565b6008546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561095e573d6000803e3d6000fd5b5050565b61081183838360405180602001604052806000815250610dba565b6008546001600160a01b031633146109a75760405162461bcd60e51b815260040161084090611a53565b805161095e90600e90602084019061165c565b600061065782611062565b600e80546109d290611b02565b80601f01602080910402602001604051908101604052809291908181526020018280546109fe90611b02565b8015610a4b5780601f10610a2057610100808354040283529160200191610a4b565b820191906000526020600020905b815481529060010190602001808311610a2e57829003601f168201915b505050505081565b60006001600160a01b038216610a7c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610acc5760405162461bcd60e51b815260040161084090611a53565b610ad66000611288565b565b6008546001600160a01b03163314610b025760405162461bcd60e51b815260040161084090611a53565b4780610b465760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20576974686472617760681b6044820152606401610840565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610811573d6000803e3d6000fd5b6008546001600160a01b03163314610ba65760405162461bcd60e51b815260040161084090611a53565b600c55565b60606003805461066c90611b02565b600d5460ff1615610bfd5760405162461bcd60e51b815260206004820152600d60248201526c29b0b632b99030b9329037b33360991b6044820152606401610840565b600954336000908152600560205260409081902054610c27911c67ffffffffffffffff1683611a88565b1115610c755760405162461bcd60e51b815260206004820152601960248201527f4578636565646564207468652077616c6c6574206c696d6974000000000000006044820152606401610840565b600a546001546000548391900360001901610c909190611a88565b1115610cd75760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b6044820152606401610840565b610ce0816112da565b3410156108a95760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a10233ab7321760711b6044820152606401610840565b6001600160a01b038216331415610d4e5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dc58484846110cb565b6001600160a01b0383163b15610dfe57610de184848484611396565b610dfe576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e2e5760405162461bcd60e51b815260040161084090611a53565b600d805460ff1916911515919091179055565b6060610e4c8261102d565b610e6957604051630a14c4b560e41b815260040160405180910390fd5b6000610e7361148d565b9050805160001415610e945760405180602001604052806000815250610ebf565b80610e9e8461149c565b604051602001610eaf9291906119d4565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610ef05760405162461bcd60e51b815260040161084090611a53565b600955565b6008546001600160a01b03163314610f1f5760405162461bcd60e51b815260040161084090611a53565b6001600160a01b038116610f845760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610840565b6108b381611288565b6008546001600160a01b03163314610fb75760405162461bcd60e51b815260040161084090611a53565b600a548110610ff95760405162461bcd60e51b815260206004820152600e60248201526d6d616b6520697420612052554c4560901b6044820152606401610840565b600a55565b6008546001600160a01b031633146110285760405162461bcd60e51b815260040161084090611a53565b600b55565b600081600111158015611041575060005482105b8015610657575050600090815260046020526040902054600160e01b161590565b600081806001116110b2576000548110156110b257600081815260046020526040902054600160e01b81166110b0575b80610ebf575060001901600081815260046020526040902054611092565b505b604051636f96cda160e11b815260040160405180910390fd5b60006110d682611062565b9050836001600160a01b0316816001600160a01b0316146111095760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111275750611127853361055d565b80611142575033611137846106ef565b6001600160a01b0316145b90508061116257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661118957604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b86178117909155821661122657600183016000818152600460205260409020546112245760005481146112245760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b61095e8282604051806020016040528060008152506114eb565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008082116113355760405162461bcd60e51b815260206004820152602160248201527f4d757374206265206d696e74696e67206174206c65617374203120746f6b656e6044820152601760f91b6064820152608401610840565b6000826113456000546000190190565b61134f9190611a88565b9050600b5481116113635750600092915050565b6000600b54826113739190611abf565b905080600c546113839190611aa0565b61138e906000611a88565b949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113cb903390899088908890600401611a03565b602060405180830381600087803b1580156113e557600080fd5b505af1925050508015611415575060408051601f3d908101601f1916820190925261141291810190611929565b60015b611470573d808015611443576040519150601f19603f3d011682016040523d82523d6000602084013e611448565b606091505b508051611468576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600e805461066c90611b02565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d957600183039250600a81066030018353600a90046114bb565b50819003601f19909101908152919050565b6000546001600160a01b03841661151457604051622e076360e81b815260040160405180910390fd5b826115325760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611607575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115d06000878480600101955087611396565b6115ed576040516368d2bf6b60e11b815260040160405180910390fd5b80821061158557826000541461160257600080fd5b61164c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611608575b506000908155610dfe9085838684565b82805461166890611b02565b90600052602060002090601f01602090048101928261168a57600085556116d0565b82601f106116a357805160ff19168380011785556116d0565b828001600101855582156116d0579182015b828111156116d05782518255916020019190600101906116b5565b506116dc9291506116e0565b5090565b5b808211156116dc57600081556001016116e1565b600067ffffffffffffffff8084111561171057611710611b53565b604051601f8501601f19908116603f0116810190828211818310171561173857611738611b53565b8160405280935085815286868601111561175157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461178257600080fd5b919050565b8035801515811461178257600080fd5b6000602082840312156117a957600080fd5b610ebf8261176b565b600080604083850312156117c557600080fd5b6117ce8361176b565b91506117dc6020840161176b565b90509250929050565b6000806000606084860312156117fa57600080fd5b6118038461176b565b92506118116020850161176b565b9150604084013590509250925092565b6000806000806080858703121561183757600080fd5b6118408561176b565b935061184e6020860161176b565b925060408501359150606085013567ffffffffffffffff81111561187157600080fd5b8501601f8101871361188257600080fd5b611891878235602084016116f5565b91505092959194509250565b600080604083850312156118b057600080fd5b6118b98361176b565b91506117dc60208401611787565b600080604083850312156118da57600080fd5b6118e38361176b565b946020939093013593505050565b60006020828403121561190357600080fd5b610ebf82611787565b60006020828403121561191e57600080fd5b8135610ebf81611b69565b60006020828403121561193b57600080fd5b8151610ebf81611b69565b60006020828403121561195857600080fd5b813567ffffffffffffffff81111561196f57600080fd5b8201601f8101841361198057600080fd5b61138e848235602084016116f5565b6000602082840312156119a157600080fd5b5035919050565b600081518084526119c0816020860160208601611ad6565b601f01601f19169290920160200192915050565b600083516119e6818460208801611ad6565b8351908301906119fa818360208801611ad6565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a36908301846119a8565b9695505050505050565b602081526000610ebf60208301846119a8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a9b57611a9b611b3d565b500190565b6000816000190483118215151615611aba57611aba611b3d565b500290565b600082821015611ad157611ad1611b3d565b500390565b60005b83811015611af1578181015183820152602001611ad9565b83811115610dfe5750506000910152565b600181811c90821680611b1657607f821691505b60208210811415611b3757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108b357600080fdfea2646970667358221220c763d0d30f7e5cf5184913ae61819cc2f71fd52fcfd8724641a5c584d14e4c3a64736f6c63430008070033
Deployed Bytecode Sourcemap
41867:3030:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16529:615;;;;;;;;;;-1:-1:-1;16529:615:0;;;;;:::i;:::-;;:::i;:::-;;;5903:14:1;;5896:22;5878:41;;5866:2;5851:18;16529:615:0;;;;;;;;21542:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23610:204::-;;;;;;;;;;-1:-1:-1;23610:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5201:32:1;;;5183:51;;5171:2;5156:18;23610:204:0;5037:203:1;23070:474:0;;;;;;;;;;-1:-1:-1;23070:474:0;;;;;:::i;:::-;;:::i;:::-;;15583:315;;;;;;;;;;-1:-1:-1;43611:1:0;15849:12;15636:7;15833:13;:28;-1:-1:-1;;15833:46:0;15583:315;;;9904:25:1;;;9892:2;9877:18;15583:315:0;9758:177:1;24496:170:0;;;;;;;;;;-1:-1:-1;24496:170:0;;;;;:::i;:::-;;:::i;41986:32::-;;;;;;;;;;;;;;;;44550:185;;;;;;;;;;-1:-1:-1;44550:185:0;;;;;:::i;:::-;;:::i;43628:181::-;;;;;;;;;;;;;:::i;24737:185::-;;;;;;;;;;-1:-1:-1;24737:185:0;;;;;:::i;:::-;;:::i;41908:32::-;;;;;;;;;;;;;;;;44013:96;;;;;;;;;;-1:-1:-1;44013:96:0;;;;;:::i;:::-;;:::i;21331:144::-;;;;;;;;;;-1:-1:-1;21331:144:0;;;;;:::i;:::-;;:::i;42105:80::-;;;;;;;;;;;;;:::i;17208:224::-;;;;;;;;;;-1:-1:-1;17208:224:0;;;;;:::i;:::-;;:::i;2639:103::-;;;;;;;;;;;;;:::i;43817:188::-;;;;;;;;;;-1:-1:-1;43817:188:0;;;;;:::i;:::-;;:::i;1988:87::-;;;;;;;;;;-1:-1:-1;2061:6:0;;-1:-1:-1;;;;;2061:6:0;1988:87;;44225:84;;;;;;;;;;-1:-1:-1;44225:84:0;;;;;:::i;:::-;;:::i;21711:104::-;;;;;;;;;;;;;:::i;42025:35::-;;;;;;;;;;;;;;;;42264:492;;;;;;:::i;:::-;;:::i;23886:308::-;;;;;;;;;;-1:-1:-1;23886:308:0;;;;;:::i;:::-;;:::i;42069:27::-;;;;;;;;;;-1:-1:-1;42069:27:0;;;;;;;;24993:396;;;;;;;;;;-1:-1:-1;24993:396:0;;;;;:::i;:::-;;:::i;43337:79::-;;;;;;;;;;-1:-1:-1;43337:79:0;;;;;:::i;:::-;;:::i;21886:318::-;;;;;;;;;;-1:-1:-1;21886:318:0;;;;;:::i;:::-;;:::i;41947:32::-;;;;;;;;;;;;;;;;24265:164;;;;;;;;;;-1:-1:-1;24265:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24386:25:0;;;24362:4;24386:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24265:164;44317:113;;;;;;;;;;-1:-1:-1;44317:113:0;;;;;:::i;:::-;;:::i;2897:201::-;;;;;;;;;;-1:-1:-1;2897:201:0;;;;;:::i;:::-;;:::i;44743:151::-;;;;;;;;;;-1:-1:-1;44743:151:0;;;;;:::i;:::-;;:::i;44438:104::-;;;;;;;;;;-1:-1:-1;44438:104:0;;;;;:::i;:::-;;:::i;16529:615::-;16614:4;-1:-1:-1;;;;;;;;;16914:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;16991:25:0;;;16914:102;:179;;;-1:-1:-1;;;;;;;;;;17068:25:0;;;16914:179;16894:199;16529:615;-1:-1:-1;;16529:615:0:o;21542:100::-;21596:13;21629:5;21622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21542:100;:::o;23610:204::-;23678:7;23703:16;23711:7;23703;:16::i;:::-;23698:64;;23728:34;;-1:-1:-1;;;23728:34:0;;;;;;;;;;;23698:64;-1:-1:-1;23782:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23782:24:0;;23610:204::o;23070:474::-;23143:13;23175:27;23194:7;23175:18;:27::i;:::-;23143:61;;23225:5;-1:-1:-1;;;;;23219:11:0;:2;-1:-1:-1;;;;;23219:11:0;;23215:48;;;23239:24;;-1:-1:-1;;;23239:24:0;;;;;;;;;;;23215:48;39713:10;-1:-1:-1;;;;;23280:28:0;;;23276:175;;23328:44;23345:5;39713:10;24265:164;:::i;23328:44::-;23323:128;;23400:35;;-1:-1:-1;;;23400:35:0;;;;;;;;;;;23323:128;23463:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;23463:29:0;-1:-1:-1;;;;;23463:29:0;;;;;;;;;23508:28;;23463:24;;23508:28;;;;;;;23132:412;23070:474;;:::o;24496:170::-;24630:28;24640:4;24646:2;24650:7;24630:9;:28::i;:::-;24496:170;;;:::o;44550:185::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;;;;;;;;;44651:9:::1;::::0;43611:1;15849:12;15636:7;15833:13;44639:8;;15833:28;;-1:-1:-1;;15833:46:0;44623:24:::1;;;;:::i;:::-;:37;;44615:70;;;::::0;-1:-1:-1;;;44615:70:0;;9209:2:1;44615:70:0::1;::::0;::::1;9191:21:1::0;9248:2;9228:18;;;9221:30;-1:-1:-1;;;9267:18:1;;;9260:50;9327:18;;44615:70:0::1;9007:344:1::0;44615:70:0::1;44696:31;44706:10;44718:8;44696:9;:31::i;:::-;44550:185:::0;:::o;43628:181::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;43687:21:::1;43721:11:::0;43713:43:::1;;;::::0;-1:-1:-1;;;43713:43:0;;7460:2:1;43713:43:0::1;::::0;::::1;7442:21:1::0;7499:2;7479:18;;;7472:30;-1:-1:-1;;;7518:18:1;;;7511:49;7577:18;;43713:43:0::1;7258:343:1::0;43713:43:0::1;2061:6:::0;;43767:34:::1;::::0;-1:-1:-1;;;;;2061:6:0;;;;43767:34;::::1;;;::::0;43793:7;;43767:34:::1;::::0;;;43793:7;2061:6;43767:34;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43667:142;43628:181::o:0;24737:185::-;24875:39;24892:4;24898:2;24902:7;24875:39;;;;;;;;;;;;:16;:39::i;44013:96::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44085:16;;::::1;::::0;:7:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;21331:144::-:0;21395:7;21438:27;21457:7;21438:18;:27::i;42105:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17208:224::-;17272:7;-1:-1:-1;;;;;17296:19:0;;17292:60;;17324:28;;-1:-1:-1;;;17324:28:0;;;;;;;;;;;17292:60;-1:-1:-1;;;;;;17370:25:0;;;;;:18;:25;;;;;;12547:13;17370:54;;17208:224::o;2639:103::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;2704:30:::1;2731:1;2704:18;:30::i;:::-;2639:103::o:0;43817:188::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;43888:21:::1;43922:11:::0;43914:43:::1;;;::::0;-1:-1:-1;;;43914:43:0;;7460:2:1;43914:43:0::1;::::0;::::1;7442:21:1::0;7499:2;7479:18;;;7472:30;-1:-1:-1;;;7518:18:1;;;7511:49;7577:18;;43914:43:0::1;7258:343:1::0;43914:43:0::1;43968:29;::::0;-1:-1:-1;;;;;43968:20:0;::::1;::::0;:29;::::1;;;::::0;43989:7;;43968:29:::1;::::0;;;43989:7;43968:20;:29;::::1;;;;;;;;;;;;;::::0;::::1;;;;44225:84:::0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44287:5:::1;:14:::0;44225:84::o;21711:104::-;21767:13;21800:7;21793:14;;;;;:::i;42264:492::-;42333:8;;;;42332:9;42324:35;;;;-1:-1:-1;;;42324:35:0;;7808:2:1;42324:35:0;;;7790:21:1;7847:2;7827:18;;;7820:30;-1:-1:-1;;;7866:18:1;;;7859:43;7919:18;;42324:35:0;7606:337:1;42324:35:0;42418:12;;42403:10;17575:7;17603:25;;;:18;:25;;12684:2;17603:25;;;;;42378:36;;17603:49;12547:13;17602:80;42378:8;:36;:::i;:::-;:52;;42370:90;;;;-1:-1:-1;;;42370:90:0;;7106:2:1;42370:90:0;;;7088:21:1;7145:2;7125:18;;;7118:30;7184:27;7164:18;;;7157:55;7229:18;;42370:90:0;6904:349:1;42370:90:0;42507:9;;43611:1;15849:12;15636:7;15833:13;42495:8;;15833:28;;-1:-1:-1;;15833:46:0;42479:24;;;;:::i;:::-;:37;;42471:72;;;;-1:-1:-1;;;42471:72:0;;8150:2:1;42471:72:0;;;8132:21:1;8189:2;8169:18;;;8162:30;-1:-1:-1;;;8208:18:1;;;8201:52;8270:18;;42471:72:0;7948:346:1;42471:72:0;42640:18;42649:8;42640;:18::i;:::-;42627:9;:31;;42605:99;;;;-1:-1:-1;;;42605:99:0;;8862:2:1;42605:99:0;;;8844:21:1;8901:2;8881:18;;;8874:30;-1:-1:-1;;;8920:18:1;;;8913:48;8978:18;;42605:99:0;8660:342:1;23886:308:0;-1:-1:-1;;;;;23985:31:0;;39713:10;23985:31;23981:61;;;24025:17;;-1:-1:-1;;;24025:17:0;;;;;;;;;;;23981:61;39713:10;24055:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;24055:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;24055:60:0;;;;;;;;;;24131:55;;5878:41:1;;;24055:49:0;;39713:10;24131:55;;5851:18:1;24131:55:0;;;;;;;23886:308;;:::o;24993:396::-;25160:28;25170:4;25176:2;25180:7;25160:9;:28::i;:::-;-1:-1:-1;;;;;25203:14:0;;;:19;25199:183;;25242:56;25273:4;25279:2;25283:7;25292:5;25242:30;:56::i;:::-;25237:145;;25326:40;;-1:-1:-1;;;25326:40:0;;;;;;;;;;;25237:145;24993:396;;;;:::o;43337:79::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;43393:8:::1;:16:::0;;-1:-1:-1;;43393:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43337:79::o;21886:318::-;21959:13;21990:16;21998:7;21990;:16::i;:::-;21985:59;;22015:29;;-1:-1:-1;;;22015:29:0;;;;;;;;;;;21985:59;22057:21;22081:10;:8;:10::i;:::-;22057:34;;22115:7;22109:21;22134:1;22109:26;;:87;;;;;;;;;;;;;;;;;22162:7;22171:18;22181:7;22171:9;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22109:87;22102:94;21886:318;-1:-1:-1;;;21886:318:0:o;44317:113::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44394:12:::1;:28:::0;44317:113::o;2897:201::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2986:22:0;::::1;2978:73;;;::::0;-1:-1:-1;;;2978:73:0;;6356:2:1;2978:73:0::1;::::0;::::1;6338:21:1::0;6395:2;6375:18;;;6368:30;6434:34;6414:18;;;6407:62;-1:-1:-1;;;6485:18:1;;;6478:36;6531:19;;2978:73:0::1;6154:402:1::0;2978:73:0::1;3062:28;3081:8;3062:18;:28::i;44743:151::-:0;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44827:9:::1;;44814:10;:22;44806:50;;;::::0;-1:-1:-1;;;44806:50:0;;6763:2:1;44806:50:0::1;::::0;::::1;6745:21:1::0;6802:2;6782:18;;;6775:30;-1:-1:-1;;;6821:18:1;;;6814:44;6875:18;;44806:50:0::1;6561:338:1::0;44806:50:0::1;44867:9;:22:::0;44743:151::o;44438:104::-;2061:6;;-1:-1:-1;;;;;2061:6:0;39713:10;2208:23;2200:68;;;;-1:-1:-1;;;2200:68:0;;;;;;;:::i;:::-;44510:10:::1;:24:::0;44438:104::o;25644:273::-;25701:4;25757:7;43611:1;25738:26;;:66;;;;;25791:13;;25781:7;:23;25738:66;:152;;;;-1:-1:-1;;25842:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;25842:43:0;:48;;25644:273::o;18846:1129::-;18913:7;18948;;43611:1;18997:23;18993:915;;19050:13;;19043:4;:20;19039:869;;;19088:14;19105:23;;;:17;:23;;;;;;-1:-1:-1;;;19194:23:0;;19190:699;;19713:113;19720:11;19713:113;;-1:-1:-1;;;19791:6:0;19773:25;;;;:17;:25;;;;;;19713:113;;19190:699;19065:843;19039:869;19936:31;;-1:-1:-1;;;19936:31:0;;;;;;;;;;;30883:2515;30998:27;31028;31047:7;31028:18;:27::i;:::-;30998:57;;31113:4;-1:-1:-1;;;;;31072:45:0;31088:19;-1:-1:-1;;;;;31072:45:0;;31068:86;;31126:28;;-1:-1:-1;;;31126:28:0;;;;;;;;;;;31068:86;31167:22;39713:10;-1:-1:-1;;;;;31193:27:0;;;;:87;;-1:-1:-1;31237:43:0;31254:4;39713:10;24265:164;:::i;31237:43::-;31193:147;;;-1:-1:-1;39713:10:0;31297:20;31309:7;31297:11;:20::i;:::-;-1:-1:-1;;;;;31297:43:0;;31193:147;31167:174;;31359:17;31354:66;;31385:35;;-1:-1:-1;;;31385:35:0;;;;;;;;;;;31354:66;-1:-1:-1;;;;;31435:16:0;;31431:52;;31460:23;;-1:-1:-1;;;31460:23:0;;;;;;;;;;;31431:52;31612:24;;;;:15;:24;;;;;;;;31605:31;;-1:-1:-1;;;;;;31605:31:0;;;-1:-1:-1;;;;;32004:24:0;;;;;:18;:24;;;;;32002:26;;-1:-1:-1;;32002:26:0;;;32073:22;;;;;;;32071:24;;-1:-1:-1;32071:24:0;;;32366:26;;;:17;:26;;;;;-1:-1:-1;;;32454:15:0;13201:3;32454:41;32412:84;;:128;;32366:174;;;32660:46;;32656:626;;32764:1;32754:11;;32732:19;32887:30;;;:17;:30;;;;;;32883:384;;33025:13;;33010:11;:28;33006:242;;33172:30;;;;:17;:30;;;;;:52;;;33006:242;32713:569;32656:626;33329:7;33325:2;-1:-1:-1;;;;;33310:27:0;33319:4;-1:-1:-1;;;;;33310:27:0;;;;;;;;;;;30987:2411;;30883:2515;;;:::o;26001:104::-;26070:27;26080:2;26084:8;26070:27;;;;;;;;;;;;:9;:27::i;3258:191::-;3351:6;;;-1:-1:-1;;;;;3368:17:0;;;-1:-1:-1;;;;;;3368:17:0;;;;;;;3401:40;;3351:6;;;3368:17;3351:6;;3401:40;;3332:16;;3401:40;3321:128;3258:191;:::o;42764:565::-;42821:7;42868:1;42859:6;:10;42851:56;;;;-1:-1:-1;;;42851:56:0;;9558:2:1;42851:56:0;;;9540:21:1;9597:2;9577:18;;;9570:30;9636:34;9616:18;;;9609:62;-1:-1:-1;;;9687:18:1;;;9680:31;9728:19;;42851:56:0;9356:397:1;42851:56:0;42928:21;42969:6;42952:14;16043:7;16231:13;-1:-1:-1;;16231:31:0;;15996:285;42952:14;:23;;;;:::i;:::-;42928:47;;43145:10;;43127:13;:28;43124:68;;-1:-1:-1;43179:1:0;;42764:565;-1:-1:-1;;42764:565:0:o;43124:68::-;43212:29;43260:10;;43244:13;:26;;;;:::i;:::-;43212:58;;43302:21;43294:5;;:29;;;;:::i;:::-;43290:33;;:1;:33;:::i;:::-;43283:40;42764:565;-1:-1:-1;;;;42764:565:0:o;37095:716::-;37279:88;;-1:-1:-1;;;37279:88:0;;37258:4;;-1:-1:-1;;;;;37279:45:0;;;;;:88;;39713:10;;37346:4;;37352:7;;37361:5;;37279:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37279:88:0;;;;;;;;-1:-1:-1;;37279:88:0;;;;;;;;;;;;:::i;:::-;;;37275:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37562:13:0;;37558:235;;37608:40;;-1:-1:-1;;;37608:40:0;;;;;;;;;;;37558:235;37751:6;37745:13;37736:6;37732:2;37728:15;37721:38;37275:529;-1:-1:-1;;;;;;37438:64:0;-1:-1:-1;;;37438:64:0;;-1:-1:-1;37095:716:0;;;;;;:::o;44117:100::-;44169:13;44202:7;44195:14;;;;;:::i;39837:1959::-;40308:4;40302:11;;40315:3;40298:21;;40393:17;;;;41090:11;;;40969:5;41222:2;41236;41226:13;;41218:22;41090:11;41205:36;41277:2;41267:13;;40860:682;41296:4;40860:682;;;41471:1;41466:3;41462:11;41455:18;;41522:2;41516:4;41512:13;41508:2;41504:22;41499:3;41491:36;41392:2;41382:13;;40860:682;;;-1:-1:-1;41584:13:0;;;-1:-1:-1;;41699:12:0;;;41759:19;;;41699:12;39837:1959;-1:-1:-1;39837:1959:0:o;26478:2236::-;26601:20;26624:13;-1:-1:-1;;;;;26652:16:0;;26648:48;;26677:19;;-1:-1:-1;;;26677:19:0;;;;;;;;;;;26648:48;26711:13;26707:44;;26733:18;;-1:-1:-1;;;26733:18:0;;;;;;;;;;;26707:44;-1:-1:-1;;;;;27300:22:0;;;;;;:18;:22;;;;12684:2;27300:22;;;:70;;27338:31;27326:44;;27300:70;;;27613:31;;;:17;:31;;;;;27706:15;13201:3;27706:41;27664:84;;-1:-1:-1;27784:13:0;;13464:3;27769:56;27664:162;27613:213;;:31;;27907:23;;;;27951:14;:19;27947:635;;27991:313;28022:38;;28047:12;;-1:-1:-1;;;;;28022:38:0;;;28039:1;;28022:38;;28039:1;;28022:38;28088:69;28127:1;28131:2;28135:14;;;;;;28151:5;28088:30;:69::i;:::-;28083:174;;28193:40;;-1:-1:-1;;;28193:40:0;;;;;;;;;;;28083:174;28299:3;28284:12;:18;27991:313;;28385:12;28368:13;;:29;28364:43;;28399:8;;;28364:43;27947:635;;;28448:119;28479:40;;28504:14;;;;;-1:-1:-1;;;;;28479:40:0;;;28496:1;;28479:40;;28496:1;;28479:40;28562:3;28547:12;:18;28448:119;;27947:635;-1:-1:-1;28596:13:0;:28;;;28646:60;;28679:2;28683:12;28697:8;28646:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:470::-;4741:3;4779:6;4773:13;4795:53;4841:6;4836:3;4829:4;4821:6;4817:17;4795:53;:::i;:::-;4911:13;;4870:16;;;;4933:57;4911:13;4870:16;4967:4;4955:17;;4933:57;:::i;:::-;5006:20;;4562:470;-1:-1:-1;;;;4562:470:1:o;5245:488::-;-1:-1:-1;;;;;5514:15:1;;;5496:34;;5566:15;;5561:2;5546:18;;5539:43;5613:2;5598:18;;5591:34;;;5661:3;5656:2;5641:18;;5634:31;;;5439:4;;5682:45;;5707:19;;5699:6;5682:45;:::i;:::-;5674:53;5245:488;-1:-1:-1;;;;;;5245:488:1:o;5930:219::-;6079:2;6068:9;6061:21;6042:4;6099:44;6139:2;6128:9;6124:18;6116:6;6099:44;:::i;8299:356::-;8501:2;8483:21;;;8520:18;;;8513:30;8579:34;8574:2;8559:18;;8552:62;8646:2;8631:18;;8299:356::o;9940:128::-;9980:3;10011:1;10007:6;10004:1;10001:13;9998:39;;;10017:18;;:::i;:::-;-1:-1:-1;10053:9:1;;9940:128::o;10073:168::-;10113:7;10179:1;10175;10171:6;10167:14;10164:1;10161:21;10156:1;10149:9;10142:17;10138:45;10135:71;;;10186:18;;:::i;:::-;-1:-1:-1;10226:9:1;;10073:168::o;10246:125::-;10286:4;10314:1;10311;10308:8;10305:34;;;10319:18;;:::i;:::-;-1:-1:-1;10356:9:1;;10246:125::o;10376:258::-;10448:1;10458:113;10472:6;10469:1;10466:13;10458:113;;;10548:11;;;10542:18;10529:11;;;10522:39;10494:2;10487:10;10458:113;;;10589:6;10586:1;10583:13;10580:48;;;-1:-1:-1;;10624:1:1;10606:16;;10599:27;10376:258::o;10639:380::-;10718:1;10714:12;;;;10761;;;10782:61;;10836:4;10828:6;10824:17;10814:27;;10782:61;10889:2;10881:6;10878:14;10858:18;10855:38;10852:161;;;10935:10;10930:3;10926:20;10923:1;10916:31;10970:4;10967:1;10960:15;10998:4;10995:1;10988:15;10852:161;;10639:380;;;:::o;11024:127::-;11085:10;11080:3;11076:20;11073:1;11066:31;11116:4;11113:1;11106:15;11140:4;11137:1;11130:15;11156:127;11217:10;11212:3;11208:20;11205:1;11198:31;11248:4;11245:1;11238:15;11272:4;11269:1;11262:15;11288:131;-1:-1:-1;;;;;;11362:32:1;;11352:43;;11342:71;;11409:1;11406;11399:12
Swarm Source
ipfs://c763d0d30f7e5cf5184913ae61819cc2f71fd52fcfd8724641a5c584d14e4c3a
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.