More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 183 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 21297678 | 25 days ago | IN | 0 ETH | 0.00025473 | ||||
Set Approval For... | 18792215 | 375 days ago | IN | 0 ETH | 0.00255376 | ||||
Release | 16666167 | 674 days ago | IN | 0 ETH | 0.001014 | ||||
Transfer From | 15687743 | 811 days ago | IN | 0 ETH | 0.00040738 | ||||
Transfer From | 15687743 | 811 days ago | IN | 0 ETH | 0.00053972 | ||||
Transfer From | 15687743 | 811 days ago | IN | 0 ETH | 0.00053972 | ||||
Transfer From | 15687740 | 811 days ago | IN | 0 ETH | 0.00042724 | ||||
Transfer From | 15687739 | 811 days ago | IN | 0 ETH | 0.00050461 | ||||
Set Approval For... | 15582709 | 825 days ago | IN | 0 ETH | 0.00048031 | ||||
Set Approval For... | 15397914 | 854 days ago | IN | 0 ETH | 0.00096045 | ||||
Set Approval For... | 15077355 | 904 days ago | IN | 0 ETH | 0.00192066 | ||||
Set Approval For... | 14936105 | 929 days ago | IN | 0 ETH | 0.00195278 | ||||
Set Approval For... | 14876742 | 939 days ago | IN | 0 ETH | 0.00202169 | ||||
Set Approval For... | 14488980 | 1000 days ago | IN | 0 ETH | 0.00421017 | ||||
Set Approval For... | 14410148 | 1012 days ago | IN | 0 ETH | 0.00114888 | ||||
Set Approval For... | 14378709 | 1017 days ago | IN | 0 ETH | 0.00143252 | ||||
Transfer From | 14333078 | 1024 days ago | IN | 0 ETH | 0.00118955 | ||||
Transfer From | 14333074 | 1024 days ago | IN | 0 ETH | 0.00118625 | ||||
Transfer From | 14333069 | 1024 days ago | IN | 0 ETH | 0.00193637 | ||||
Transfer From | 14333066 | 1024 days ago | IN | 0 ETH | 0.00185092 | ||||
Transfer From | 14333063 | 1024 days ago | IN | 0 ETH | 0.00104783 | ||||
Transfer From | 14333057 | 1024 days ago | IN | 0 ETH | 0.00228481 | ||||
Transfer From | 14333055 | 1024 days ago | IN | 0 ETH | 0.0015486 | ||||
Transfer From | 14333051 | 1024 days ago | IN | 0 ETH | 0.00198788 | ||||
Transfer From | 14333048 | 1024 days ago | IN | 0 ETH | 0.00178643 |
Loading...
Loading
Contract Name:
AstrologyClub
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.11; import "./ERC721A.sol"; import "./Ownable.sol"; import "./PaymentSplitter.sol"; import "./Counters.sol"; contract AstrologyClub is ERC721A, Ownable, PaymentSplitter { using Strings for uint256; using Counters for Counters.Counter; uint256 public maxMintSupply = 10000; uint256 public limitPerWallet = 30; string public baseURI; bool public publicState = true; uint256 immutable price = 100000000000000000; //0.1 ETH uint256[] private _teamShares = [60, 33, 5, 2]; address[] private _team = [ 0xBD584cE590B7dcdbB93b11e095d9E1D5880B44d9, 0x85a37aC5C3250827B4f50F3373275c67C7f5fF3b, 0xA26AE192f618F89F3579974E87e2a92770654605, 0x1D7d6857c397788d1d33744276B54EfaE92CbBad ]; constructor() ERC721A("AstrologyClub", "ZODIAC", limitPerWallet, maxMintSupply) PaymentSplitter(_team, _teamShares) { _transferOwnership(_team[0]); } function enable() public onlyOwner { publicState = true; } function disable() public onlyOwner { publicState = false; } function mint(uint256 _amount) external payable { require(publicState, "mint disabled"); require(_amount > 0, "zero amount"); require(_amount <= limitPerWallet, "can't mint so much tokens"); require(totalSupply() + _amount <= maxMintSupply, "max supply exceeded"); require(msg.value >= price * _amount , "value sent is not correct"); _safeMint(_msgSender(), _amount); } function setBaseURI(string calldata _tokenBaseURI) external onlyOwner { baseURI = _tokenBaseURI; } function _baseURI() internal view override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // 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; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), 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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _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 { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @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`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * 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 ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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 ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : ""; } /** * @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 See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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 tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "./SafeERC20.sol"; import "./Address.sol"; import "./Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":[],"name":"disable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","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":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6000808055600755612710601055601e6011556013805460ff1916600117905567016345785d8a000060c052610160604052603c60e09081526021610100526005610120526002610140526200005a906014906004620006a4565b506040805160808101825273bd584ce590b7dcdbb93b11e095d9e1d5880b44d981527385a37ac5c3250827b4f50f3373275c67c7f5ff3b602082015273a26ae192f618f89f3579974e87e2a9277065460591810191909152731d7d6857c397788d1d33744276b54efae92cbbad6060820152620000dc906015906004620006f9565b50348015620000ea57600080fd5b5060158054806020026020016040519081016040528092919081815260200182805480156200014357602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000124575b505050505060148054806020026020016040519081016040528092919081815260200182805480156200019657602002820191906000526020600020905b81548152602001906001019080831162000181575b50505050506040518060400160405280600d81526020016c20b9ba3937b637b3bca1b63ab160991b815250604051806040016040528060068152602001655a4f4449414360d01b81525060115460105460008111620002535760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002b55760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200024a565b8351620002ca90600190602087019062000751565b508251620002e090600290602086019062000751565b5060a09190915260805250620002f890503362000464565b8051825114620003665760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084016200024a565b6000825111620003b95760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200024a565b60005b8251811015620004255762000410838281518110620003df57620003df620007e5565b6020026020010151838381518110620003fc57620003fc620007e5565b6020026020010151620004b660201b60201c565b806200041c8162000811565b915050620003bc565b5050506200045e6015600081548110620004435762000443620007e5565b6000918252602090912001546001600160a01b031662000464565b62000887565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005235760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200024a565b60008111620005755760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200024a565b6001600160a01b0382166000908152600b602052604090205415620005f15760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200024a565b600d8054600181019091557fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b0319166001600160a01b0384169081179091556000908152600b602052604090208190556009546200065b9082906200082f565b600955604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620006e7579160200282015b82811115620006e7578251829060ff16905591602001919060010190620006c5565b50620006f5929150620007ce565b5090565b828054828255906000526020600020908101928215620006e7579160200282015b82811115620006e757825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200071a565b8280546200075f906200084a565b90600052602060002090601f016020900481019282620007835760008555620006e7565b82601f106200079e57805160ff1916838001178555620006e7565b82800160010185558215620006e7579182015b82811115620006e7578251825591602001919060010190620007b1565b5b80821115620006f55760008155600101620007cf565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620008285762000828620007fb565b5060010190565b60008219821115620008455762000845620007fb565b500190565b600181811c908216806200085f57607f821691505b602082108114156200088157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051612b39620008c26000396000611236015260008181611b6901528181611b93015261209b015260005050612b396000f3fe60806040526004361061021e5760003560e01c8063715018a611610123578063abfe7614116100ab578063d7224ba01161006f578063d7224ba014610683578063d79779b214610699578063e33b7de3146106cf578063e985e9c5146106e4578063f2fde38b1461072d57600080fd5b8063abfe7614146105dd578063b88d4fde146105f7578063c285e10714610617578063c87b56dd1461062d578063ce7c2ac21461064d57600080fd5b80639852595c116100f25780639852595c14610549578063a0712d681461057f578063a22cb46514610592578063a3907d71146105b2578063a620ce5a146105c757600080fd5b8063715018a6146104e15780638b83209b146104f65780638da5cb5b1461051657806395d89b411461053457600080fd5b80633a98ef39116101a65780634f6ccce7116101755780634f6ccce71461044c57806355f804b31461046c5780636352211e1461048c5780636c0360eb146104ac57806370a08231146104c157600080fd5b80633a98ef39146103b1578063406072a9146103c657806342842e0e1461040c57806348b750441461042c57600080fd5b806318160ddd116101ed57806318160ddd1461031d578063191655871461033c57806323b872dd1461035c5780632f2770db1461037c5780632f745c591461039157600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57600080fd5b36610267577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561027857600080fd5b5061028c61028736600461246a565b61074d565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107ba565b60405161029891906124df565b3480156102cf57600080fd5b506102e36102de3660046124f2565b61084c565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612520565b6108dc565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061031b61035736600461254c565b6109f4565b34801561036857600080fd5b5061031b610377366004612569565b610b22565b34801561038857600080fd5b5061031b610b2d565b34801561039d57600080fd5b5061032e6103ac366004612520565b610b63565b3480156103bd57600080fd5b5060095461032e565b3480156103d257600080fd5b5061032e6103e13660046125aa565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561041857600080fd5b5061031b610427366004612569565b610cd1565b34801561043857600080fd5b5061031b6104473660046125aa565b610cec565b34801561045857600080fd5b5061032e6104673660046124f2565b610ec5565b34801561047857600080fd5b5061031b6104873660046125e3565b610f27565b34801561049857600080fd5b506102e36104a73660046124f2565b610f5d565b3480156104b857600080fd5b506102b6610f6f565b3480156104cd57600080fd5b5061032e6104dc36600461254c565b610ffd565b3480156104ed57600080fd5b5061031b61108e565b34801561050257600080fd5b506102e36105113660046124f2565b6110c4565b34801561052257600080fd5b506008546001600160a01b03166102e3565b34801561054057600080fd5b506102b66110f4565b34801561055557600080fd5b5061032e61056436600461254c565b6001600160a01b03166000908152600c602052604090205490565b61031b61058d3660046124f2565b611103565b34801561059e57600080fd5b5061031b6105ad366004612663565b6112b6565b3480156105be57600080fd5b5061031b61137b565b3480156105d357600080fd5b5061032e60115481565b3480156105e957600080fd5b5060135461028c9060ff1681565b34801561060357600080fd5b5061031b6106123660046126a7565b6113b4565b34801561062357600080fd5b5061032e60105481565b34801561063957600080fd5b506102b66106483660046124f2565b6113ed565b34801561065957600080fd5b5061032e61066836600461254c565b6001600160a01b03166000908152600b602052604090205490565b34801561068f57600080fd5b5061032e60075481565b3480156106a557600080fd5b5061032e6106b436600461254c565b6001600160a01b03166000908152600e602052604090205490565b3480156106db57600080fd5b50600a5461032e565b3480156106f057600080fd5b5061028c6106ff3660046125aa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073957600080fd5b5061031b61074836600461254c565b6114ba565b60006001600160e01b031982166380ac58cd60e01b148061077e57506001600160e01b03198216635b5e139f60e01b145b8061079957506001600160e01b0319821663780e9d6360e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c990612787565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590612787565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000610859826000541190565b6108c05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e782610f5d565b9050806001600160a01b0316836001600160a01b031614156109565760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b7565b336001600160a01b0382161480610972575061097281336106ff565b6109e45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b7565b6109ef838383611552565b505050565b6001600160a01b0381166000908152600b6020526040902054610a295760405162461bcd60e51b81526004016108b7906127c2565b6000610a34600a5490565b610a3e904761281e565b90506000610a6b8383610a66866001600160a01b03166000908152600c602052604090205490565b6115ae565b905080610a8a5760405162461bcd60e51b81526004016108b790612836565b6001600160a01b0383166000908152600c602052604081208054839290610ab290849061281e565b9250508190555080600a6000828254610acb919061281e565b90915550610adb905083826115f4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6109ef83838361170d565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016108b790612881565b6013805460ff19169055565b6000610b6e83610ffd565b8210610bc75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b7565b600080549080805b83811015610c71576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2257805192505b876001600160a01b0316836001600160a01b03161415610c5e5786841415610c50575093506107b492505050565b83610c5a816128b6565b9450505b5080610c69816128b6565b915050610bcf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b7565b6109ef838383604051806020016040528060008152506113b4565b6001600160a01b0381166000908152600b6020526040902054610d215760405162461bcd60e51b81526004016108b7906127c2565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da291906128d1565b610dac919061281e565b90506000610de58383610a6687876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610e045760405162461bcd60e51b81526004016108b790612836565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610e3b90849061281e565b90915550506001600160a01b0384166000908152600e602052604081208054839290610e6890849061281e565b90915550610e799050848483611a95565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600080548210610f235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b7565b5090565b6008546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b790612881565b6109ef601283836123c4565b6000610f6882611ae7565b5192915050565b60128054610f7c90612787565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa890612787565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b505050505081565b60006001600160a01b0382166110695760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110b85760405162461bcd60e51b81526004016108b790612881565b6110c26000611c91565b565b6000600d82815481106110d9576110d96128ea565b6000918252602090912001546001600160a01b031692915050565b6060600280546107c990612787565b60135460ff166111455760405162461bcd60e51b815260206004820152600d60248201526c1b5a5b9d08191a5cd8589b1959609a1b60448201526064016108b7565b600081116111835760405162461bcd60e51b815260206004820152600b60248201526a1e995c9bc8185b5bdd5b9d60aa1b60448201526064016108b7565b6011548111156111d55760405162461bcd60e51b815260206004820152601960248201527f63616e2774206d696e7420736f206d75636820746f6b656e730000000000000060448201526064016108b7565b601054816111e260005490565b6111ec919061281e565b11156112305760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108b7565b61125a817f0000000000000000000000000000000000000000000000000000000000000000612900565b3410156112a95760405162461bcd60e51b815260206004820152601960248201527f76616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016108b7565b6112b33382611ce3565b50565b6001600160a01b03821633141561130f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113a55760405162461bcd60e51b81526004016108b790612881565b6013805460ff19166001179055565b6113bf84848461170d565b6113cb84848484611d01565b6113e75760405162461bcd60e51b81526004016108b79061291f565b50505050565b60606113fa826000541190565b61145e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b7565b6000611468611dff565b9050600081511161148857604051806020016040528060008152506114b3565b8061149284611e0e565b6040516020016114a3929190612972565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114e45760405162461bcd60e51b81526004016108b790612881565b6001600160a01b0381166115495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b7565b6112b381611c91565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916115d89086612900565b6115e291906129c7565b6115ec91906129db565b949350505050565b804710156116445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108b7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611691576040519150601f19603f3d011682016040523d82523d6000602084013e611696565b606091505b50509050806109ef5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108b7565b600061171882611ae7565b80519091506000906001600160a01b0316336001600160a01b0316148061174f5750336117448461084c565b6001600160a01b0316145b806117615750815161176190336106ff565b9050806117cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b7565b846001600160a01b031682600001516001600160a01b03161461183f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b7565b6001600160a01b0384166118a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b7565b6118b36000848460000151611552565b6001600160a01b03851660009081526004602052604081208054600192906118e59084906001600160801b03166129f2565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193191859116612a1a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119b984600161281e565b6000818152600360205260409020549091506001600160a01b0316611a4b576119e3816000541190565b15611a4b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109ef908490611f0c565b6040805180820190915260008082526020820152611b06826000541190565b611b655760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b7565b60007f00000000000000000000000000000000000000000000000000000000000000008310611bc657611bb87f0000000000000000000000000000000000000000000000000000000000000000846129db565b611bc390600161281e565b90505b825b818110611c30576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c1d57949350505050565b5080611c2881612a45565b915050611bc8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cfd828260405180602001604052806000815250611fde565b5050565b60006001600160a01b0384163b15611df457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d45903390899088908890600401612a5c565b6020604051808303816000875af1925050508015611d80575060408051601f3d908101601f19168201909252611d7d91810190612a99565b60015b611dda573d808015611dae576040519150601f19603f3d011682016040523d82523d6000602084013e611db3565b606091505b508051611dd25760405162461bcd60e51b81526004016108b79061291f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ec565b506001949350505050565b6060601280546107c990612787565b606081611e325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5c5780611e46816128b6565b9150611e559050600a836129c7565b9150611e36565b60008167ffffffffffffffff811115611e7757611e77612691565b6040519080825280601f01601f191660200182016040528015611ea1576020820181803683370190505b5090505b84156115ec57611eb66001836129db565b9150611ec3600a86612ab6565b611ece90603061281e565b60f81b818381518110611ee357611ee36128ea565b60200101906001600160f81b031916908160001a905350611f05600a866129c7565b9450611ea5565b6000611f61826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122b99092919063ffffffff16565b8051909150156109ef5780806020019051810190611f7f9190612aca565b6109ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108b7565b6000546001600160a01b0384166120415760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b7565b61204c816000541190565b156120995760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b7565b7f00000000000000000000000000000000000000000000000000000000000000008311156121145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612170908790612a1a565b6001600160801b0316815260200185836020015161218e9190612a1a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122ae5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122726000888488611d01565b61228e5760405162461bcd60e51b81526004016108b79061291f565b81612298816128b6565b92505080806122a6906128b6565b915050612225565b506000819055611a8d565b60606115ec848460008585843b6123125760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108b7565b600080866001600160a01b0316858760405161232e9190612ae7565b60006040518083038185875af1925050503d806000811461236b576040519150601f19603f3d011682016040523d82523d6000602084013e612370565b606091505b509150915061238082828661238b565b979650505050505050565b6060831561239a5750816114b3565b8251156123aa5782518084602001fd5b8160405162461bcd60e51b81526004016108b791906124df565b8280546123d090612787565b90600052602060002090601f0160209004810192826123f25760008555612438565b82601f1061240b5782800160ff19823516178555612438565b82800160010185558215612438579182015b8281111561243857823582559160200191906001019061241d565b50610f239291505b80821115610f235760008155600101612440565b6001600160e01b0319811681146112b357600080fd5b60006020828403121561247c57600080fd5b81356114b381612454565b60005b838110156124a257818101518382015260200161248a565b838111156113e75750506000910152565b600081518084526124cb816020860160208601612487565b601f01601f19169290920160200192915050565b6020815260006114b360208301846124b3565b60006020828403121561250457600080fd5b5035919050565b6001600160a01b03811681146112b357600080fd5b6000806040838503121561253357600080fd5b823561253e8161250b565b946020939093013593505050565b60006020828403121561255e57600080fd5b81356114b38161250b565b60008060006060848603121561257e57600080fd5b83356125898161250b565b925060208401356125998161250b565b929592945050506040919091013590565b600080604083850312156125bd57600080fd5b82356125c88161250b565b915060208301356125d88161250b565b809150509250929050565b600080602083850312156125f657600080fd5b823567ffffffffffffffff8082111561260e57600080fd5b818501915085601f83011261262257600080fd5b81358181111561263157600080fd5b86602082850101111561264357600080fd5b60209290920196919550909350505050565b80151581146112b357600080fd5b6000806040838503121561267657600080fd5b82356126818161250b565b915060208301356125d881612655565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126bd57600080fd5b84356126c88161250b565b935060208501356126d88161250b565b925060408501359150606085013567ffffffffffffffff808211156126fc57600080fd5b818701915087601f83011261271057600080fd5b81358181111561272257612722612691565b604051601f8201601f19908116603f0116810190838211818310171561274a5761274a612691565b816040528281528a602084870101111561276357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600181811c9082168061279b57607f821691505b602082108114156127bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561283157612831612808565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006000198214156128ca576128ca612808565b5060010190565b6000602082840312156128e357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561291a5761291a612808565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612984818460208801612487565b835190830190612998818360208801612487565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826129d6576129d66129b1565b500490565b6000828210156129ed576129ed612808565b500390565b60006001600160801b0383811690831681811015612a1257612a12612808565b039392505050565b60006001600160801b03808316818516808303821115612a3c57612a3c612808565b01949350505050565b600081612a5457612a54612808565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8f908301846124b3565b9695505050505050565b600060208284031215612aab57600080fd5b81516114b381612454565b600082612ac557612ac56129b1565b500690565b600060208284031215612adc57600080fd5b81516114b381612655565b60008251612af9818460208701612487565b919091019291505056fea264697066735822122060ee93d1d5db999682d282f86331029dddda84071da7f9b77c25e6c09e292a1a64736f6c634300080b0033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c8063715018a611610123578063abfe7614116100ab578063d7224ba01161006f578063d7224ba014610683578063d79779b214610699578063e33b7de3146106cf578063e985e9c5146106e4578063f2fde38b1461072d57600080fd5b8063abfe7614146105dd578063b88d4fde146105f7578063c285e10714610617578063c87b56dd1461062d578063ce7c2ac21461064d57600080fd5b80639852595c116100f25780639852595c14610549578063a0712d681461057f578063a22cb46514610592578063a3907d71146105b2578063a620ce5a146105c757600080fd5b8063715018a6146104e15780638b83209b146104f65780638da5cb5b1461051657806395d89b411461053457600080fd5b80633a98ef39116101a65780634f6ccce7116101755780634f6ccce71461044c57806355f804b31461046c5780636352211e1461048c5780636c0360eb146104ac57806370a08231146104c157600080fd5b80633a98ef39146103b1578063406072a9146103c657806342842e0e1461040c57806348b750441461042c57600080fd5b806318160ddd116101ed57806318160ddd1461031d578063191655871461033c57806323b872dd1461035c5780632f2770db1461037c5780632f745c591461039157600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb57600080fd5b36610267577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561027857600080fd5b5061028c61028736600461246a565b61074d565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107ba565b60405161029891906124df565b3480156102cf57600080fd5b506102e36102de3660046124f2565b61084c565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612520565b6108dc565b005b34801561032957600080fd5b506000545b604051908152602001610298565b34801561034857600080fd5b5061031b61035736600461254c565b6109f4565b34801561036857600080fd5b5061031b610377366004612569565b610b22565b34801561038857600080fd5b5061031b610b2d565b34801561039d57600080fd5b5061032e6103ac366004612520565b610b63565b3480156103bd57600080fd5b5060095461032e565b3480156103d257600080fd5b5061032e6103e13660046125aa565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b34801561041857600080fd5b5061031b610427366004612569565b610cd1565b34801561043857600080fd5b5061031b6104473660046125aa565b610cec565b34801561045857600080fd5b5061032e6104673660046124f2565b610ec5565b34801561047857600080fd5b5061031b6104873660046125e3565b610f27565b34801561049857600080fd5b506102e36104a73660046124f2565b610f5d565b3480156104b857600080fd5b506102b6610f6f565b3480156104cd57600080fd5b5061032e6104dc36600461254c565b610ffd565b3480156104ed57600080fd5b5061031b61108e565b34801561050257600080fd5b506102e36105113660046124f2565b6110c4565b34801561052257600080fd5b506008546001600160a01b03166102e3565b34801561054057600080fd5b506102b66110f4565b34801561055557600080fd5b5061032e61056436600461254c565b6001600160a01b03166000908152600c602052604090205490565b61031b61058d3660046124f2565b611103565b34801561059e57600080fd5b5061031b6105ad366004612663565b6112b6565b3480156105be57600080fd5b5061031b61137b565b3480156105d357600080fd5b5061032e60115481565b3480156105e957600080fd5b5060135461028c9060ff1681565b34801561060357600080fd5b5061031b6106123660046126a7565b6113b4565b34801561062357600080fd5b5061032e60105481565b34801561063957600080fd5b506102b66106483660046124f2565b6113ed565b34801561065957600080fd5b5061032e61066836600461254c565b6001600160a01b03166000908152600b602052604090205490565b34801561068f57600080fd5b5061032e60075481565b3480156106a557600080fd5b5061032e6106b436600461254c565b6001600160a01b03166000908152600e602052604090205490565b3480156106db57600080fd5b50600a5461032e565b3480156106f057600080fd5b5061028c6106ff3660046125aa565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561073957600080fd5b5061031b61074836600461254c565b6114ba565b60006001600160e01b031982166380ac58cd60e01b148061077e57506001600160e01b03198216635b5e139f60e01b145b8061079957506001600160e01b0319821663780e9d6360e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107c990612787565b80601f01602080910402602001604051908101604052809291908181526020018280546107f590612787565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b6000610859826000541190565b6108c05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108e782610f5d565b9050806001600160a01b0316836001600160a01b031614156109565760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016108b7565b336001600160a01b0382161480610972575061097281336106ff565b6109e45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016108b7565b6109ef838383611552565b505050565b6001600160a01b0381166000908152600b6020526040902054610a295760405162461bcd60e51b81526004016108b7906127c2565b6000610a34600a5490565b610a3e904761281e565b90506000610a6b8383610a66866001600160a01b03166000908152600c602052604090205490565b6115ae565b905080610a8a5760405162461bcd60e51b81526004016108b790612836565b6001600160a01b0383166000908152600c602052604081208054839290610ab290849061281e565b9250508190555080600a6000828254610acb919061281e565b90915550610adb905083826115f4565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6109ef83838361170d565b6008546001600160a01b03163314610b575760405162461bcd60e51b81526004016108b790612881565b6013805460ff19169055565b6000610b6e83610ffd565b8210610bc75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016108b7565b600080549080805b83811015610c71576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2257805192505b876001600160a01b0316836001600160a01b03161415610c5e5786841415610c50575093506107b492505050565b83610c5a816128b6565b9450505b5080610c69816128b6565b915050610bcf565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016108b7565b6109ef838383604051806020016040528060008152506113b4565b6001600160a01b0381166000908152600b6020526040902054610d215760405162461bcd60e51b81526004016108b7906127c2565b6001600160a01b0382166000908152600e60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da291906128d1565b610dac919061281e565b90506000610de58383610a6687876001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b905080610e045760405162461bcd60e51b81526004016108b790612836565b6001600160a01b038085166000908152600f6020908152604080832093871683529290529081208054839290610e3b90849061281e565b90915550506001600160a01b0384166000908152600e602052604081208054839290610e6890849061281e565b90915550610e799050848483611a95565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b600080548210610f235760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016108b7565b5090565b6008546001600160a01b03163314610f515760405162461bcd60e51b81526004016108b790612881565b6109ef601283836123c4565b6000610f6882611ae7565b5192915050565b60128054610f7c90612787565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa890612787565b8015610ff55780601f10610fca57610100808354040283529160200191610ff5565b820191906000526020600020905b815481529060010190602001808311610fd857829003601f168201915b505050505081565b60006001600160a01b0382166110695760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016108b7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b031633146110b85760405162461bcd60e51b81526004016108b790612881565b6110c26000611c91565b565b6000600d82815481106110d9576110d96128ea565b6000918252602090912001546001600160a01b031692915050565b6060600280546107c990612787565b60135460ff166111455760405162461bcd60e51b815260206004820152600d60248201526c1b5a5b9d08191a5cd8589b1959609a1b60448201526064016108b7565b600081116111835760405162461bcd60e51b815260206004820152600b60248201526a1e995c9bc8185b5bdd5b9d60aa1b60448201526064016108b7565b6011548111156111d55760405162461bcd60e51b815260206004820152601960248201527f63616e2774206d696e7420736f206d75636820746f6b656e730000000000000060448201526064016108b7565b601054816111e260005490565b6111ec919061281e565b11156112305760405162461bcd60e51b81526020600482015260136024820152721b585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108b7565b61125a817f000000000000000000000000000000000000000000000000016345785d8a0000612900565b3410156112a95760405162461bcd60e51b815260206004820152601960248201527f76616c75652073656e74206973206e6f7420636f72726563740000000000000060448201526064016108b7565b6112b33382611ce3565b50565b6001600160a01b03821633141561130f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016108b7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146113a55760405162461bcd60e51b81526004016108b790612881565b6013805460ff19166001179055565b6113bf84848461170d565b6113cb84848484611d01565b6113e75760405162461bcd60e51b81526004016108b79061291f565b50505050565b60606113fa826000541190565b61145e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108b7565b6000611468611dff565b9050600081511161148857604051806020016040528060008152506114b3565b8061149284611e0e565b6040516020016114a3929190612972565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114e45760405162461bcd60e51b81526004016108b790612881565b6001600160a01b0381166115495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b7565b6112b381611c91565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6009546001600160a01b0384166000908152600b6020526040812054909183916115d89086612900565b6115e291906129c7565b6115ec91906129db565b949350505050565b804710156116445760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016108b7565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611691576040519150601f19603f3d011682016040523d82523d6000602084013e611696565b606091505b50509050806109ef5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016108b7565b600061171882611ae7565b80519091506000906001600160a01b0316336001600160a01b0316148061174f5750336117448461084c565b6001600160a01b0316145b806117615750815161176190336106ff565b9050806117cb5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016108b7565b846001600160a01b031682600001516001600160a01b03161461183f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016108b7565b6001600160a01b0384166118a35760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016108b7565b6118b36000848460000151611552565b6001600160a01b03851660009081526004602052604081208054600192906118e59084906001600160801b03166129f2565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261193191859116612a1a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556119b984600161281e565b6000818152600360205260409020549091506001600160a01b0316611a4b576119e3816000541190565b15611a4b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526109ef908490611f0c565b6040805180820190915260008082526020820152611b06826000541190565b611b655760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108b7565b60007f000000000000000000000000000000000000000000000000000000000000001e8310611bc657611bb87f000000000000000000000000000000000000000000000000000000000000001e846129db565b611bc390600161281e565b90505b825b818110611c30576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c1d57949350505050565b5080611c2881612a45565b915050611bc8565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016108b7565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cfd828260405180602001604052806000815250611fde565b5050565b60006001600160a01b0384163b15611df457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d45903390899088908890600401612a5c565b6020604051808303816000875af1925050508015611d80575060408051601f3d908101601f19168201909252611d7d91810190612a99565b60015b611dda573d808015611dae576040519150601f19603f3d011682016040523d82523d6000602084013e611db3565b606091505b508051611dd25760405162461bcd60e51b81526004016108b79061291f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ec565b506001949350505050565b6060601280546107c990612787565b606081611e325750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5c5780611e46816128b6565b9150611e559050600a836129c7565b9150611e36565b60008167ffffffffffffffff811115611e7757611e77612691565b6040519080825280601f01601f191660200182016040528015611ea1576020820181803683370190505b5090505b84156115ec57611eb66001836129db565b9150611ec3600a86612ab6565b611ece90603061281e565b60f81b818381518110611ee357611ee36128ea565b60200101906001600160f81b031916908160001a905350611f05600a866129c7565b9450611ea5565b6000611f61826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166122b99092919063ffffffff16565b8051909150156109ef5780806020019051810190611f7f9190612aca565b6109ef5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016108b7565b6000546001600160a01b0384166120415760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016108b7565b61204c816000541190565b156120995760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016108b7565b7f000000000000000000000000000000000000000000000000000000000000001e8311156121145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016108b7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612170908790612a1a565b6001600160801b0316815260200185836020015161218e9190612a1a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156122ae5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46122726000888488611d01565b61228e5760405162461bcd60e51b81526004016108b79061291f565b81612298816128b6565b92505080806122a6906128b6565b915050612225565b506000819055611a8d565b60606115ec848460008585843b6123125760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016108b7565b600080866001600160a01b0316858760405161232e9190612ae7565b60006040518083038185875af1925050503d806000811461236b576040519150601f19603f3d011682016040523d82523d6000602084013e612370565b606091505b509150915061238082828661238b565b979650505050505050565b6060831561239a5750816114b3565b8251156123aa5782518084602001fd5b8160405162461bcd60e51b81526004016108b791906124df565b8280546123d090612787565b90600052602060002090601f0160209004810192826123f25760008555612438565b82601f1061240b5782800160ff19823516178555612438565b82800160010185558215612438579182015b8281111561243857823582559160200191906001019061241d565b50610f239291505b80821115610f235760008155600101612440565b6001600160e01b0319811681146112b357600080fd5b60006020828403121561247c57600080fd5b81356114b381612454565b60005b838110156124a257818101518382015260200161248a565b838111156113e75750506000910152565b600081518084526124cb816020860160208601612487565b601f01601f19169290920160200192915050565b6020815260006114b360208301846124b3565b60006020828403121561250457600080fd5b5035919050565b6001600160a01b03811681146112b357600080fd5b6000806040838503121561253357600080fd5b823561253e8161250b565b946020939093013593505050565b60006020828403121561255e57600080fd5b81356114b38161250b565b60008060006060848603121561257e57600080fd5b83356125898161250b565b925060208401356125998161250b565b929592945050506040919091013590565b600080604083850312156125bd57600080fd5b82356125c88161250b565b915060208301356125d88161250b565b809150509250929050565b600080602083850312156125f657600080fd5b823567ffffffffffffffff8082111561260e57600080fd5b818501915085601f83011261262257600080fd5b81358181111561263157600080fd5b86602082850101111561264357600080fd5b60209290920196919550909350505050565b80151581146112b357600080fd5b6000806040838503121561267657600080fd5b82356126818161250b565b915060208301356125d881612655565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156126bd57600080fd5b84356126c88161250b565b935060208501356126d88161250b565b925060408501359150606085013567ffffffffffffffff808211156126fc57600080fd5b818701915087601f83011261271057600080fd5b81358181111561272257612722612691565b604051601f8201601f19908116603f0116810190838211818310171561274a5761274a612691565b816040528281528a602084870101111561276357600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600181811c9082168061279b57607f821691505b602082108114156127bc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561283157612831612808565b500190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006000198214156128ca576128ca612808565b5060010190565b6000602082840312156128e357600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600081600019048311821515161561291a5761291a612808565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612984818460208801612487565b835190830190612998818360208801612487565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826129d6576129d66129b1565b500490565b6000828210156129ed576129ed612808565b500390565b60006001600160801b0383811690831681811015612a1257612a12612808565b039392505050565b60006001600160801b03808316818516808303821115612a3c57612a3c612808565b01949350505050565b600081612a5457612a54612808565b506000190190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a8f908301846124b3565b9695505050505050565b600060208284031215612aab57600080fd5b81516114b381612454565b600082612ac557612ac56129b1565b500690565b600060208284031215612adc57600080fd5b81516114b381612655565b60008251612af9818460208701612487565b919091019291505056fea264697066735822122060ee93d1d5db999682d282f86331029dddda84071da7f9b77c25e6c09e292a1a64736f6c634300080b0033
Deployed Bytecode Sourcemap
163:1631:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:15;719:10:2;3216:40:15;;;-1:-1:-1;;;;;206:32:18;;;188:51;;3246:9:15;270:2:18;255:18;;248:34;161:18;3216:40:15;;;;;;;163:1631:1;;;;;3826:358:6;;;;;;;;;;-1:-1:-1;3826:358:6;;;;;:::i;:::-;;:::i;:::-;;;844:14:18;;837:22;819:41;;807:2;792:18;3826:358:6;;;;;;;;5490:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6964:200::-;;;;;;;;;;-1:-1:-1;6964:200:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1971:32:18;;;1953:51;;1941:2;1926:18;6964:200:6;1807:203:18;6542:369:6;;;;;;;;;;-1:-1:-1;6542:369:6;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;-1:-1:-1;2485:7:6;2507:12;2432:92;;;2617:25:18;;;2605:2;2590:18;2432:92:6;2471:177:18;4944:553:15;;;;;;;;;;-1:-1:-1;4944:553:15;;;;;:::i;:::-;;:::i;7782:136:6:-;;;;;;;;;;-1:-1:-1;7782:136:6;;;;;:::i;:::-;;:::i;1070:72:1:-;;;;;;;;;;;;;:::i;3046:721:6:-;;;;;;;;;;-1:-1:-1;3046:721:6;;;;;:::i;:::-;;:::i;3341:89:15:-;;;;;;;;;;-1:-1:-1;3411:12:15;;3341:89;;4433:133;;;;;;;;;;-1:-1:-1;4433:133:15;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:15;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;7976:151:6;;;;;;;;;;-1:-1:-1;7976:151:6;;;;;:::i;:::-;;:::i;5758:628:15:-;;;;;;;;;;-1:-1:-1;5758:628:15;;;;;:::i;:::-;;:::i;2588:174:6:-;;;;;;;;;;-1:-1:-1;2588:174:6;;;;;:::i;:::-;;:::i;1577:110:1:-;;;;;;;;;;-1:-1:-1;1577:110:1;;;;;:::i;:::-;;:::i;5320:116:6:-;;;;;;;;;;-1:-1:-1;5320:116:6;;;;;:::i;:::-;;:::i;385:21:1:-;;;;;;;;;;;;;:::i;4235:208:6:-;;;;;;;;;;-1:-1:-1;4235:208:6;;;;;:::i;:::-;;:::i;1661:101:14:-;;;;;;;;;;;;;:::i;4652:98:15:-;;;;;;;;;;-1:-1:-1;4652:98:15;;;;;:::i;:::-;;:::i;1029:85:14:-;;;;;;;;;;-1:-1:-1;1101:6:14;;-1:-1:-1;;;;;1101:6:14;1029:85;;5638:96:6;;;;;;;;;;;;;:::i;4163:107:15:-;;;;;;;;;;-1:-1:-1;4163:107:15;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:15;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;1148:422:1;;;;;;:::i;:::-;;:::i;7223:269:6:-;;;;;;;;;;-1:-1:-1;7223:269:6;;;;;:::i;:::-;;:::i;994:70:1:-;;;;;;;;;;;;;:::i;344:34::-;;;;;;;;;;;;;;;;413:30;;;;;;;;;;-1:-1:-1;413:30:1;;;;;;;;8185:300:6;;;;;;;;;;-1:-1:-1;8185:300:6;;;;;:::i;:::-;;:::i;302:36:1:-;;;;;;;;;;;;;;;;5792:386:6;;;;;;;;;;-1:-1:-1;5792:386:6;;;;;:::i;:::-;;:::i;3966:103:15:-;;;;;;;;;;-1:-1:-1;3966:103:15;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:15;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;12455:43:6;;;;;;;;;;;;;;;;3763:117:15;;;;;;;;;;-1:-1:-1;3763:117:15;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:15;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;3519:93;;;;;;;;;;-1:-1:-1;3591:14:15;;3519:93;;7550:178:6;;;;;;;;;;-1:-1:-1;7550:178:6;;;;;:::i;:::-;-1:-1:-1;;;;;7688:25:6;;;7667:4;7688:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7550:178;1911:198:14;;;;;;;;;;-1:-1:-1;1911:198:14;;;;;:::i;:::-;;:::i;3826:358:6:-;3948:4;-1:-1:-1;;;;;;3975:40:6;;-1:-1:-1;;;3975:40:6;;:98;;-1:-1:-1;;;;;;;4025:48:6;;-1:-1:-1;;;4025:48:6;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:6;;-1:-1:-1;;;4083:50:6;3975:158;:204;;;-1:-1:-1;;;;;;;;;;937:40:4;;;4143:36:6;3962:217;3826:358;-1:-1:-1;;3826:358:6:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6964:200::-;7032:7;7055:16;7063:7;8772:4;8801:12;-1:-1:-1;8791:22:6;8715:103;7055:16;7047:74;;;;-1:-1:-1;;;7047:74:6;;7791:2:18;7047:74:6;;;7773:21:18;7830:2;7810:18;;;7803:30;7869:34;7849:18;;;7842:62;-1:-1:-1;;;7920:18:18;;;7913:43;7973:19;;7047:74:6;;;;;;;;;-1:-1:-1;7135:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;7135:24:6;;6964:200::o;6542:369::-;6610:13;6626:24;6642:7;6626:15;:24::i;:::-;6610:40;;6670:5;-1:-1:-1;;;;;6664:11:6;:2;-1:-1:-1;;;;;6664:11:6;;;6656:58;;;;-1:-1:-1;;;6656:58:6;;8205:2:18;6656:58:6;;;8187:21:18;8244:2;8224:18;;;8217:30;8283:34;8263:18;;;8256:62;-1:-1:-1;;;8334:18:18;;;8327:32;8376:19;;6656:58:6;8003:398:18;6656:58:6;719:10:2;-1:-1:-1;;;;;6736:21:6;;;;:62;;-1:-1:-1;6761:37:6;6778:5;719:10:2;7550:178:6;:::i;6761:37::-;6721:150;;;;-1:-1:-1;;;6721:150:6;;8608:2:18;6721:150:6;;;8590:21:18;8647:2;8627:18;;;8620:30;8686:34;8666:18;;;8659:62;8757:27;8737:18;;;8730:55;8802:19;;6721:150:6;8406:421:18;6721:150:6;6878:28;6887:2;6891:7;6900:5;6878:8;:28::i;:::-;6604:307;6542:369;;:::o;4944:553:15:-;-1:-1:-1;;;;;5019:16:15;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:15;;;;;;;:::i;:::-;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:15;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:15;5253:68;;;;-1:-1:-1;;;5253:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:15;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:15;;-1:-1:-1;5425:7:15;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;206:32:18;;188:51;;270:2;255:18;;248:34;;;5457:33:15;;161:18:18;5457:33:15;;;;;;;5001:496;;4944:553;:::o;7782:136:6:-;7885:28;7895:4;7901:2;7905:7;7885:9;:28::i;1070:72:1:-;1101:6:14;;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1116:11:1::1;:19:::0;;-1:-1:-1;;1116:19:1::1;::::0;;1070:72::o;3046:721:6:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:6;;10766:2:18;3168:71:6;;;10748:21:18;10805:2;10785:18;;;10778:30;10844:34;10824:18;;;10817:62;-1:-1:-1;;;10895:18:18;;;10888:32;10937:19;;3168:71:6;10564:398:18;3168:71:6;3245:22;2507:12;;;3245:22;;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:6;;;;;-1:-1:-1;;;3415:48:6;;;;;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:6;3590:5;-1:-1:-1;;;;;3569:26:6;:17;-1:-1:-1;;;;;3569:26:6;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:6;-1:-1:-1;3645:8:6;;-1:-1:-1;;;3645:8:6;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:6;;;;:::i;:::-;;;;3362:339;;;-1:-1:-1;3706:56:6;;-1:-1:-1;;;3706:56:6;;11309:2:18;3706:56:6;;;11291:21:18;11348:2;11328:18;;;11321:30;11387:34;11367:18;;;11360:62;-1:-1:-1;;;11438:18:18;;;11431:44;11492:19;;3706:56:6;11107:410:18;7976:151:6;8083:39;8100:4;8106:2;8110:7;8083:39;;;;;;;;;;;;:16;:39::i;5758:628:15:-;-1:-1:-1;;;;;5839:16:15;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:15;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:15;;5961:4;5937:30;;;1953:51:18;-1:-1:-1;;;;;5937:15:15;;;;;1926:18:18;;5937:30:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:15;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:15;6094:68;;;;-1:-1:-1;;;6094:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:15;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:15;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:15;;-1:-1:-1;6295:5:15;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;206:32:18;;;188:51;;270:2;255:18;;248:34;;;6334:45:15;;;;;161:18:18;6334:45:15;;;;;;;5821:565;;5758:628;;:::o;2588:174:6:-;2655:7;2507:12;;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:6;;11913:2:18;2670:69:6;;;11895:21:18;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;-1:-1:-1;;;12042:18:18;;;12035:33;12085:19;;2670:69:6;11711:399:18;2670:69:6;-1:-1:-1;2752:5:6;2588:174::o;1577:110:1:-;1101:6:14;;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1657:23:1::1;:7;1667:13:::0;;1657:23:::1;:::i;5320:116:6:-:0;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:6:o;385:21:1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4235:208:6:-;4299:7;-1:-1:-1;;;;;4322:19:6;;4314:75;;;;-1:-1:-1;;;4314:75:6;;12317:2:18;4314:75:6;;;12299:21:18;12356:2;12336:18;;;12329:30;12395:34;12375:18;;;12368:62;-1:-1:-1;;;12446:18:18;;;12439:41;12497:19;;4314:75:6;12115:407:18;4314:75:6;-1:-1:-1;;;;;;4410:19:6;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:6;;4235:208::o;1661:101:14:-;1101:6;;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4652:98:15:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:15;;4652:98;-1:-1:-1;;4652:98:15:o;5638:96:6:-;5694:13;5722:7;5715:14;;;;;:::i;1148:422:1:-;1214:11;;;;1206:37;;;;-1:-1:-1;;;1206:37:1;;12861:2:18;1206:37:1;;;12843:21:18;12900:2;12880:18;;;12873:30;-1:-1:-1;;;12919:18:18;;;12912:43;12972:18;;1206:37:1;12659:337:18;1206:37:1;1271:1;1261:7;:11;1253:35;;;;-1:-1:-1;;;1253:35:1;;13203:2:18;1253:35:1;;;13185:21:18;13242:2;13222:18;;;13215:30;-1:-1:-1;;;13261:18:18;;;13254:41;13312:18;;1253:35:1;13001:335:18;1253:35:1;1317:14;;1306:7;:25;;1298:63;;;;-1:-1:-1;;;1298:63:1;;13543:2:18;1298:63:1;;;13525:21:18;13582:2;13562:18;;;13555:30;13621:27;13601:18;;;13594:55;13666:18;;1298:63:1;13341:349:18;1298:63:1;1406:13;;1395:7;1379:13;2485:7:6;2507:12;;2432:92;1379:13:1;:23;;;;:::i;:::-;:40;;1371:72;;;;-1:-1:-1;;;1371:72:1;;13897:2:18;1371:72:1;;;13879:21:18;13936:2;13916:18;;;13909:30;-1:-1:-1;;;13955:18:18;;;13948:49;14014:18;;1371:72:1;13695:343:18;1371:72:1;1474:15;1482:7;1474:5;:15;:::i;:::-;1461:9;:28;;1453:67;;;;-1:-1:-1;;;1453:67:1;;14418:2:18;1453:67:1;;;14400:21:18;14457:2;14437:18;;;14430:30;14496:27;14476:18;;;14469:55;14541:18;;1453:67:1;14216:349:18;1453:67:1;1531:32;719:10:2;1555:7:1;1531:9;:32::i;:::-;1148:422;:::o;7223:269:6:-;-1:-1:-1;;;;;7313:24:6;;719:10:2;7313:24:6;;7305:63;;;;-1:-1:-1;;;7305:63:6;;14772:2:18;7305:63:6;;;14754:21:18;14811:2;14791:18;;;14784:30;14850:28;14830:18;;;14823:56;14896:18;;7305:63:6;14570:350:18;7305:63:6;719:10:2;7375:32:6;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7375:42:6;;;;;;;;;;;;:53;;-1:-1:-1;;7375:53:6;;;;;;;;;;7439:48;;819:41:18;;;7375:42:6;;719:10:2;7439:48:6;;792:18:18;7439:48:6;;;;;;;7223:269;;:::o;994:70:1:-;1101:6:14;;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;1039:11:1::1;:18:::0;;-1:-1:-1;;1039:18:1::1;1053:4;1039:18;::::0;;994:70::o;8185:300:6:-;8316:28;8326:4;8332:2;8336:7;8316:9;:28::i;:::-;8365:48;8388:4;8394:2;8398:7;8407:5;8365:22;:48::i;:::-;8350:130;;;;-1:-1:-1;;;8350:130:6;;;;;;;:::i;:::-;8185:300;;;;:::o;5792:386::-;5885:13;5923:16;5931:7;8772:4;8801:12;-1:-1:-1;8791:22:6;8715:103;5923:16;5908:94;;;;-1:-1:-1;;;5908:94:6;;15547:2:18;5908:94:6;;;15529:21:18;15586:2;15566:18;;;15559:30;15625:34;15605:18;;;15598:62;-1:-1:-1;;;15676:18:18;;;15669:45;15731:19;;5908:94:6;15345:411:18;5908:94:6;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:111;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:111;6049:124;5792:386;-1:-1:-1;;;5792:386:6:o;1911:198:14:-;1101:6;;-1:-1:-1;;;;;1101:6:14;719:10:2;1241:23:14;1233:68;;;;-1:-1:-1;;;1233:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:14;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:14;;16605:2:18;1991:73:14::1;::::0;::::1;16587:21:18::0;16644:2;16624:18;;;16617:30;16683:34;16663:18;;;16656:62;-1:-1:-1;;;16734:18:18;;;16727:36;16780:19;;1991:73:14::1;16403:402:18::0;1991:73:14::1;2074:28;2093:8;2074:18;:28::i;12286:165:6:-:0;12378:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12378:29:6;-1:-1:-1;;;;;12378:29:6;;;;;;;;;12418:28;;12378:24;;12418:28;;;;;;;12286:165;;;:::o;6558:242:15:-;6763:12;;-1:-1:-1;;;;;6743:16:15;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;:::-;6719:74;6558:242;-1:-1:-1;;;;6558:242:15:o;2065:312:0:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:0;;17399:2:18;2146:73:0;;;17381:21:18;17438:2;17418:18;;;17411:30;17477:31;17457:18;;;17450:59;17526:18;;2146:73:0;17197:353:18;2146:73:0;2231:12;2249:9;-1:-1:-1;;;;;2249:14:0;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:0;;17967:2:18;2292:78:0;;;17949:21:18;18006:2;17986:18;;;17979:30;18045:34;18025:18;;;18018:62;18116:28;18096:18;;;18089:56;18162:19;;2292:78:0;17765:422:18;10703:1484:6;10795:35;10833:20;10845:7;10833:11;:20::i;:::-;10902:18;;10795:58;;-1:-1:-1;10860:22:6;;-1:-1:-1;;;;;10886:34:6;719:10:2;-1:-1:-1;;;;;10886:34:6;;:80;;;-1:-1:-1;719:10:2;10930:20:6;10942:7;10930:11;:20::i;:::-;-1:-1:-1;;;;;10930:36:6;;10886:80;:140;;;-1:-1:-1;10993:18:6;;10976:50;;719:10:2;7550:178:6;:::i;10976:50::-;10860:167;;11049:17;11034:98;;;;-1:-1:-1;;;11034:98:6;;18394:2:18;11034:98:6;;;18376:21:18;18433:2;18413:18;;;18406:30;18472:34;18452:18;;;18445:62;-1:-1:-1;;;18523:18:18;;;18516:48;18581:19;;11034:98:6;18192:414:18;11034:98:6;11176:4;-1:-1:-1;;;;;11154:26:6;:13;:18;;;-1:-1:-1;;;;;11154:26:6;;11139:95;;;;-1:-1:-1;;;11139:95:6;;18813:2:18;11139:95:6;;;18795:21:18;18852:2;18832:18;;;18825:30;18891:34;18871:18;;;18864:62;-1:-1:-1;;;18942:18:18;;;18935:36;18988:19;;11139:95:6;18611:402:18;11139:95:6;-1:-1:-1;;;;;11248:16:6;;11240:66;;;;-1:-1:-1;;;11240:66:6;;19220:2:18;11240:66:6;;;19202:21:18;19259:2;19239:18;;;19232:30;19298:34;19278:18;;;19271:62;-1:-1:-1;;;19349:18:18;;;19342:35;19394:19;;11240:66:6;19018:401:18;11240:66:6;11410:49;11427:1;11431:7;11440:13;:18;;;11410:8;:49::i;:::-;-1:-1:-1;;;;;11466:18:6;;;;;;:12;:18;;;;;:31;;11496:1;;11466:18;:31;;11496:1;;-1:-1:-1;;;;;11466:31:6;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11466:31:6;;;;;;;;;;;;;;;-1:-1:-1;;;;;11503:16:6;;-1:-1:-1;11503:16:6;;;:12;:16;;;;;:29;;-1:-1:-1;;;11503:16:6;;:29;;-1:-1:-1;;11503:29:6;;:::i;:::-;;;-1:-1:-1;;;;;11503:29:6;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11561:43:6;;;;;;;;-1:-1:-1;;;;;11561:43:6;;;;;;11587:15;11561:43;;;;;;;;;-1:-1:-1;11538:20:6;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11538:66:6;-1:-1:-1;;;;;;11538:66:6;;;;;;;;;;;11850:11;11550:7;-1:-1:-1;11850:11:6;:::i;:::-;11912:1;11871:24;;;:11;:24;;;;;:29;11828:33;;-1:-1:-1;;;;;;11871:29:6;11867:229;;11928:20;11936:11;8772:4;8801:12;-1:-1:-1;8791:22:6;8715:103;11928:20;11924:166;;;11987:94;;;;;;;;12013:18;;-1:-1:-1;;;;;11987:94:6;;;;;;12043:28;;;;11987:94;;;;;;;;;;-1:-1:-1;11960:24:6;;;:11;:24;;;;;;;:121;;;;;;;;;-1:-1:-1;;;11960:121:6;-1:-1:-1;;;;;;11960:121:6;;;;;;;;;;;;11924:166;12126:7;12122:2;-1:-1:-1;;;;;12107:27:6;12116:4;-1:-1:-1;;;;;12107:27:6;;;;;;;;;;;12140:42;10789:1398;;;10703:1484;;;:::o;707:211:16:-;851:58;;;-1:-1:-1;;;;;206:32:18;;851:58:16;;;188:51:18;255:18;;;;248:34;;;851:58:16;;;;;;;;;;161:18:18;;;;851:58:16;;;;;;;;-1:-1:-1;;;;;851:58:16;-1:-1:-1;;;851:58:16;;;824:86;;844:5;;824:19;:86::i;4685:586:6:-;-1:-1:-1;;;;;;;;;;;;;;;;;4797:16:6;4805:7;8772:4;8801:12;-1:-1:-1;8791:22:6;8715:103;4797:16;4789:71;;;;-1:-1:-1;;;4789:71:6;;20135:2:18;4789:71:6;;;20117:21:18;20174:2;20154:18;;;20147:30;20213:34;20193:18;;;20186:62;-1:-1:-1;;;20264:18:18;;;20257:40;20314:19;;4789:71:6;19933:406:18;4789:71:6;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:6;;;;;-1:-1:-1;;;5069:51:6;;;;;;;;;;;;5132:28;5128:69;;5179:9;4685:586;-1:-1:-1;;;;4685:586:6:o;5128:69::-;-1:-1:-1;5053:6:6;;;;:::i;:::-;;;;4996:207;;;-1:-1:-1;5209:57:6;;-1:-1:-1;;;5209:57:6;;20687:2:18;5209:57:6;;;20669:21:18;20726:2;20706:18;;;20699:30;20765:34;20745:18;;;20738:62;-1:-1:-1;;;20816:18:18;;;20809:45;20871:19;;5209:57:6;20485:411:18;2263:187:14;2355:6;;;-1:-1:-1;;;;;2371:17:14;;;-1:-1:-1;;;;;;2371:17:14;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;8822:96:6:-;8886:27;8896:2;8900:8;8886:27;;;;;;;;;;;;:9;:27::i;:::-;8822:96;;:::o;13956:667::-;14088:4;-1:-1:-1;;;;;14104:13:6;;1087:20:0;1133:8;14100:519:6;;14141:72;;-1:-1:-1;;;14141:72:6;;-1:-1:-1;;;;;14141:36:6;;;;;:72;;719:10:2;;14192:4:6;;14198:7;;14207:5;;14141:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14141:72:6;;;;;;;;-1:-1:-1;;14141:72:6;;;;;;;;;;;;:::i;:::-;;;14129:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14368:13:6;;14364:209;;14400:61;;-1:-1:-1;;;14400:61:6;;;;;;;:::i;14364:209::-;14543:6;14537:13;14528:6;14524:2;14520:15;14513:38;14129:452;-1:-1:-1;;;;;;14261:55:6;-1:-1:-1;;;14261:55:6;;-1:-1:-1;14254:62:6;;14100:519;-1:-1:-1;14608:4:6;13956:667;;;;;;:::o;1693:98:1:-;1745:13;1777:7;1770:14;;;;;:::i;328:703:17:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:17;;;;;;;;;;;;-1:-1:-1;;;627:10:17;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:17;;-1:-1:-1;773:2:17;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:17;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:17;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:17;;;;;;;;-1:-1:-1;972:11:17;981:2;972:11;;:::i;:::-;;;844:150;;3280:716:16;3704:23;3730:69;3758:4;3730:69;;;;;;;;;;;;;;;;;3738:5;-1:-1:-1;;;;;3730:27:16;;;:69;;;;;:::i;:::-;3814:17;;3704:95;;-1:-1:-1;3814:21:16;3810:179;;3911:10;3900:30;;;;;;;;;;;;:::i;:::-;3892:85;;;;-1:-1:-1;;;3892:85:16;;22218:2:18;3892:85:16;;;22200:21:18;22257:2;22237:18;;;22230:30;22296:34;22276:18;;;22269:62;-1:-1:-1;;;22347:18:18;;;22340:40;22397:19;;3892:85:16;22016:406:18;9244:1239:6;9344:20;9367:12;-1:-1:-1;;;;;9393:16:6;;9385:62;;;;-1:-1:-1;;;9385:62:6;;22629:2:18;9385:62:6;;;22611:21:18;22668:2;22648:18;;;22641:30;22707:34;22687:18;;;22680:62;-1:-1:-1;;;22758:18:18;;;22751:31;22799:19;;9385:62:6;22427:397:18;9385:62:6;9582:21;9590:12;8772:4;8801:12;-1:-1:-1;8791:22:6;8715:103;9582:21;9581:22;9573:64;;;;-1:-1:-1;;;9573:64:6;;23031:2:18;9573:64:6;;;23013:21:18;23070:2;23050:18;;;23043:30;23109:31;23089:18;;;23082:59;23158:18;;9573:64:6;22829:353:18;9573:64:6;9663:12;9651:8;:24;;9643:71;;;;-1:-1:-1;;;9643:71:6;;23389:2:18;9643:71:6;;;23371:21:18;23428:2;23408:18;;;23401:30;23467:34;23447:18;;;23440:62;-1:-1:-1;;;23518:18:18;;;23511:32;23560:19;;9643:71:6;23187:398:18;9643:71:6;-1:-1:-1;;;;;9822:16:6;;9789:30;9822:16;;;:12;:16;;;;;;;;;9789:49;;;;;;;;;-1:-1:-1;;;;;9789:49:6;;;;;-1:-1:-1;;;9789:49:6;;;;;;;;;;;9863:116;;;;;;;;9882:19;;9789:49;;9863:116;;;9882:39;;9912:8;;9882:39;:::i;:::-;-1:-1:-1;;;;;9863:116:6;;;;;9964:8;9929:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9863:116:6;;;;;;-1:-1:-1;;;;;9844:16:6;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;-1:-1:-1;;;9844:135:6;;;;;;;;;;;;10013:43;;;;;;;;;;;10039:15;10013:43;;;;;;;;9985:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9985:71:6;-1:-1:-1;;;;;;9985:71:6;;;;;;;;;;;;;;;;;;9997:12;;10105:274;10129:8;10125:1;:12;10105:274;;;10157:38;;10182:12;;-1:-1:-1;;;;;10157:38:6;;;10174:1;;10157:38;;10174:1;;10157:38;10220:59;10251:1;10255:2;10259:12;10273:5;10220:22;:59::i;:::-;10203:147;;;;-1:-1:-1;;;10203:147:6;;;;;;;:::i;:::-;10358:14;;;;:::i;:::-;;;;10139:3;;;;;:::i;:::-;;;;10105:274;;;-1:-1:-1;10385:12:6;:27;;;10418:60;8185:300;3514:223:0;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3647;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:0;;24199:2:18;4881:60:0;;;24181:21:18;24238:2;24218:18;;;24211:30;24277:31;24257:18;;;24250:59;24326:18;;4881:60:0;23997:353:18;4881:60:0;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:0;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:0:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:0;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:18;-1:-1:-1;;;;;;367:32:18;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:258::-;943:1;953:113;967:6;964:1;961:13;953:113;;;1043:11;;;1037:18;1024:11;;;1017:39;989:2;982:10;953:113;;;1084:6;1081:1;1078:13;1075:48;;;-1:-1:-1;;1119:1:18;1101:16;;1094:27;871:258::o;1134:::-;1176:3;1214:5;1208:12;1241:6;1236:3;1229:19;1257:63;1313:6;1306:4;1301:3;1297:14;1290:4;1283:5;1279:16;1257:63;:::i;:::-;1374:2;1353:15;-1:-1:-1;;1349:29:18;1340:39;;;;1381:4;1336:50;;1134:258;-1:-1:-1;;1134:258:18:o;1397:220::-;1546:2;1535:9;1528:21;1509:4;1566:45;1607:2;1596:9;1592:18;1584:6;1566:45;:::i;1622:180::-;1681:6;1734:2;1722:9;1713:7;1709:23;1705:32;1702:52;;;1750:1;1747;1740:12;1702:52;-1:-1:-1;1773:23:18;;1622:180;-1:-1:-1;1622:180:18:o;2015:131::-;-1:-1:-1;;;;;2090:31:18;;2080:42;;2070:70;;2136:1;2133;2126:12;2151:315;2219:6;2227;2280:2;2268:9;2259:7;2255:23;2251:32;2248:52;;;2296:1;2293;2286:12;2248:52;2335:9;2322:23;2354:31;2379:5;2354:31;:::i;:::-;2404:5;2456:2;2441:18;;;;2428:32;;-1:-1:-1;;;2151:315:18:o;2653:255::-;2720:6;2773:2;2761:9;2752:7;2748:23;2744:32;2741:52;;;2789:1;2786;2779:12;2741:52;2828:9;2815:23;2847:31;2872:5;2847:31;:::i;2913:456::-;2990:6;2998;3006;3059:2;3047:9;3038:7;3034:23;3030:32;3027:52;;;3075:1;3072;3065:12;3027:52;3114:9;3101:23;3133:31;3158:5;3133:31;:::i;:::-;3183:5;-1:-1:-1;3240:2:18;3225:18;;3212:32;3253:33;3212:32;3253:33;:::i;:::-;2913:456;;3305:7;;-1:-1:-1;;;3359:2:18;3344:18;;;;3331:32;;2913:456::o;3374:403::-;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3573:9;3560:23;3592:31;3617:5;3592:31;:::i;:::-;3642:5;-1:-1:-1;3699:2:18;3684:18;;3671:32;3712:33;3671:32;3712:33;:::i;:::-;3764:7;3754:17;;;3374:403;;;;;:::o;3782:592::-;3853:6;3861;3914:2;3902:9;3893:7;3889:23;3885:32;3882:52;;;3930:1;3927;3920:12;3882:52;3970:9;3957:23;3999:18;4040:2;4032:6;4029:14;4026:34;;;4056:1;4053;4046:12;4026:34;4094:6;4083:9;4079:22;4069:32;;4139:7;4132:4;4128:2;4124:13;4120:27;4110:55;;4161:1;4158;4151:12;4110:55;4201:2;4188:16;4227:2;4219:6;4216:14;4213:34;;;4243:1;4240;4233:12;4213:34;4288:7;4283:2;4274:6;4270:2;4266:15;4262:24;4259:37;4256:57;;;4309:1;4306;4299:12;4256:57;4340:2;4332:11;;;;;4362:6;;-1:-1:-1;3782:592:18;;-1:-1:-1;;;;3782:592:18:o;4631:118::-;4717:5;4710:13;4703:21;4696:5;4693:32;4683:60;;4739:1;4736;4729:12;4754:382;4819:6;4827;4880:2;4868:9;4859:7;4855:23;4851:32;4848:52;;;4896:1;4893;4886:12;4848:52;4935:9;4922:23;4954:31;4979:5;4954:31;:::i;:::-;5004:5;-1:-1:-1;5061:2:18;5046:18;;5033:32;5074:30;5033:32;5074:30;:::i;5141:127::-;5202:10;5197:3;5193:20;5190:1;5183:31;5233:4;5230:1;5223:15;5257:4;5254:1;5247:15;5273:1266;5368:6;5376;5384;5392;5445:3;5433:9;5424:7;5420:23;5416:33;5413:53;;;5462:1;5459;5452:12;5413:53;5501:9;5488:23;5520:31;5545:5;5520:31;:::i;:::-;5570:5;-1:-1:-1;5627:2:18;5612:18;;5599:32;5640:33;5599:32;5640:33;:::i;:::-;5692:7;-1:-1:-1;5746:2:18;5731:18;;5718:32;;-1:-1:-1;5801:2:18;5786:18;;5773:32;5824:18;5854:14;;;5851:34;;;5881:1;5878;5871:12;5851:34;5919:6;5908:9;5904:22;5894:32;;5964:7;5957:4;5953:2;5949:13;5945:27;5935:55;;5986:1;5983;5976:12;5935:55;6022:2;6009:16;6044:2;6040;6037:10;6034:36;;;6050:18;;:::i;:::-;6125:2;6119:9;6093:2;6179:13;;-1:-1:-1;;6175:22:18;;;6199:2;6171:31;6167:40;6155:53;;;6223:18;;;6243:22;;;6220:46;6217:72;;;6269:18;;:::i;:::-;6309:10;6305:2;6298:22;6344:2;6336:6;6329:18;6384:7;6379:2;6374;6370;6366:11;6362:20;6359:33;6356:53;;;6405:1;6402;6395:12;6356:53;6461:2;6456;6452;6448:11;6443:2;6435:6;6431:15;6418:46;6506:1;6501:2;6496;6488:6;6484:15;6480:24;6473:35;6527:6;6517:16;;;;;;;5273:1266;;;;;;;:::o;7204:380::-;7283:1;7279:12;;;;7326;;;7347:61;;7401:4;7393:6;7389:17;7379:27;;7347:61;7454:2;7446:6;7443:14;7423:18;7420:38;7417:161;;;7500:10;7495:3;7491:20;7488:1;7481:31;7535:4;7532:1;7525:15;7563:4;7560:1;7553:15;7417:161;;7204:380;;;:::o;8832:402::-;9034:2;9016:21;;;9073:2;9053:18;;;9046:30;9112:34;9107:2;9092:18;;9085:62;-1:-1:-1;;;9178:2:18;9163:18;;9156:36;9224:3;9209:19;;8832:402::o;9239:127::-;9300:10;9295:3;9291:20;9288:1;9281:31;9331:4;9328:1;9321:15;9355:4;9352:1;9345:15;9371:128;9411:3;9442:1;9438:6;9435:1;9432:13;9429:39;;;9448:18;;:::i;:::-;-1:-1:-1;9484:9:18;;9371:128::o;9504:407::-;9706:2;9688:21;;;9745:2;9725:18;;;9718:30;9784:34;9779:2;9764:18;;9757:62;-1:-1:-1;;;9850:2:18;9835:18;;9828:41;9901:3;9886:19;;9504:407::o;10203:356::-;10405:2;10387:21;;;10424:18;;;10417:30;10483:34;10478:2;10463:18;;10456:62;10550:2;10535:18;;10203:356::o;10967:135::-;11006:3;-1:-1:-1;;11027:17:18;;11024:43;;;11047:18;;:::i;:::-;-1:-1:-1;11094:1:18;11083:13;;10967:135::o;11522:184::-;11592:6;11645:2;11633:9;11624:7;11620:23;11616:32;11613:52;;;11661:1;11658;11651:12;11613:52;-1:-1:-1;11684:16:18;;11522:184;-1:-1:-1;11522:184:18:o;12527:127::-;12588:10;12583:3;12579:20;12576:1;12569:31;12619:4;12616:1;12609:15;12643:4;12640:1;12633:15;14043:168;14083:7;14149:1;14145;14141:6;14137:14;14134:1;14131:21;14126:1;14119:9;14112:17;14108:45;14105:71;;;14156:18;;:::i;:::-;-1:-1:-1;14196:9:18;;14043:168::o;14925:415::-;15127:2;15109:21;;;15166:2;15146:18;;;15139:30;15205:34;15200:2;15185:18;;15178:62;-1:-1:-1;;;15271:2:18;15256:18;;15249:49;15330:3;15315:19;;14925:415::o;15761:637::-;16041:3;16079:6;16073:13;16095:53;16141:6;16136:3;16129:4;16121:6;16117:17;16095:53;:::i;:::-;16211:13;;16170:16;;;;16233:57;16211:13;16170:16;16267:4;16255:17;;16233:57;:::i;:::-;-1:-1:-1;;;16312:20:18;;16341:22;;;16390:1;16379:13;;15761:637;-1:-1:-1;;;;15761:637:18:o;16810:127::-;16871:10;16866:3;16862:20;16859:1;16852:31;16902:4;16899:1;16892:15;16926:4;16923:1;16916:15;16942:120;16982:1;17008;16998:35;;17013:18;;:::i;:::-;-1:-1:-1;17047:9:18;;16942:120::o;17067:125::-;17107:4;17135:1;17132;17129:8;17126:34;;;17140:18;;:::i;:::-;-1:-1:-1;17177:9:18;;17067:125::o;19424:246::-;19464:4;-1:-1:-1;;;;;19577:10:18;;;;19547;;19599:12;;;19596:38;;;19614:18;;:::i;:::-;19651:13;;19424:246;-1:-1:-1;;;19424:246:18:o;19675:253::-;19715:3;-1:-1:-1;;;;;19804:2:18;19801:1;19797:10;19834:2;19831:1;19827:10;19865:3;19861:2;19857:12;19852:3;19849:21;19846:47;;;19873:18;;:::i;:::-;19909:13;;19675:253;-1:-1:-1;;;;19675:253:18:o;20344:136::-;20383:3;20411:5;20401:39;;20420:18;;:::i;:::-;-1:-1:-1;;;20456:18:18;;20344:136::o;20901:489::-;-1:-1:-1;;;;;21170:15:18;;;21152:34;;21222:15;;21217:2;21202:18;;21195:43;21269:2;21254:18;;21247:34;;;21317:3;21312:2;21297:18;;21290:31;;;21095:4;;21338:46;;21364:19;;21356:6;21338:46;:::i;:::-;21330:54;20901:489;-1:-1:-1;;;;;;20901:489:18:o;21395:249::-;21464:6;21517:2;21505:9;21496:7;21492:23;21488:32;21485:52;;;21533:1;21530;21523:12;21485:52;21565:9;21559:16;21584:30;21608:5;21584:30;:::i;21649:112::-;21681:1;21707;21697:35;;21712:18;;:::i;:::-;-1:-1:-1;21746:9:18;;21649:112::o;21766:245::-;21833:6;21886:2;21874:9;21865:7;21861:23;21857:32;21854:52;;;21902:1;21899;21892:12;21854:52;21934:9;21928:16;21953:28;21975:5;21953:28;:::i;24355:274::-;24484:3;24522:6;24516:13;24538:53;24584:6;24579:3;24572:4;24564:6;24560:17;24538:53;:::i;:::-;24607:16;;;;;24355:274;-1:-1:-1;;24355:274:18:o
Swarm Source
ipfs://60ee93d1d5db999682d282f86331029dddda84071da7f9b77c25e6c09e292a1a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,497.59 | 1.177 | $4,116.66 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.