ERC-721
NFT
Overview
Max Total Supply
4,037 BBEASTS
Holders
860
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Filtered by Token Holder
Signature Series by mendezmendez: DeployerBalance
1 BBEASTSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BunkerBeasts
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-26 */ /** *Submitted for verification at Etherscan.io on 2021-08-26 */ // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // SPDX-License-Identifier: MIT 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); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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}. 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 { require(operator != _msgSender(), "ERC721: 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 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 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("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @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(); } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/BunkerBeasts.sol pragma solidity ^0.8.0; abstract contract GONS { function ownerOf(uint256 tokenId) public virtual view returns (address); function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256); function balanceOf(address owner) external virtual view returns (uint256 balance); } contract BunkerBeasts is ERC721Enumerable, Ownable { GONS private gons; uint constant public MAX_BEAST_MINT = 50; uint constant public MAX_BEASTS = 5000; address private gonsContract = 0x984EEA281Bf65638ac6ed30C4FF7977EA7fe0433; bool public saleIsActive = false; uint256 public maxBeasts; string private baseURI; constructor() ERC721("BunkerBeasts", "BBEASTS") { maxBeasts = MAX_BEASTS; gons = GONS(gonsContract); } function isMinted(uint256 tokenId) external view returns (bool) { require(tokenId < maxBeasts, "tokenId outside collection bounds"); return _exists(tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } // Shows if a gons can claim a beast function canClaim(uint256 tokenId) view public returns (bool) { return !_exists(tokenId); } // Returns amount of BunkerBeasts available for claim function getMintableTokenNumber(address user) view public returns (uint256 mintableTokenNumber) { mintableTokenNumber = 0; for (uint256 i = 0; i < gons.balanceOf(user); i++) { uint256 tokenId = gons.tokenOfOwnerByIndex(user, i); if (canClaim(tokenId)) mintableTokenNumber++; } return mintableTokenNumber; } /** * Claim a single Bunker Beast */ function claimBeast(uint256 gonsTokenId) public { require(saleIsActive, "Sale must be active to mint a Beast"); require(totalSupply() < maxBeasts, "Purchase would exceed max supply of Beasts"); require(gonsTokenId < maxBeasts, "Requested tokenId exceeds upper bound"); require(gons.ownerOf(gonsTokenId) == msg.sender, "Must own the Gorilla Nemesis for requested tokenId to mint a Beast"); _safeMint(msg.sender, gonsTokenId); } /** * Claim N Bunker Beasts */ function claimNBeasts(uint256 numBeasts) public { require(saleIsActive, "Sale must be active to mint a Beast"); require(numBeasts > 0, "Must mint at least one Beast"); require(numBeasts <= MAX_BEAST_MINT, "Cannot claim more than 50 Beasts at once"); uint balanceGons = gons.balanceOf(msg.sender); require(balanceGons > 0, "Must hold at least one Gorilla Nemesis to mint a Beast"); uint256 claimed = 0; for (uint256 i = 0; i < balanceGons; i++) { uint256 tokenId = gons.tokenOfOwnerByIndex(msg.sender, i); if (canClaim(tokenId)) { _safeMint(msg.sender, tokenId); claimed++; } if (claimed == numBeasts) { break; } } } }
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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BEASTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BEAST_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gonsTokenId","type":"uint256"}],"name":"claimBeast","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numBeasts","type":"uint256"}],"name":"claimNBeasts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":"user","type":"address"}],"name":"getMintableTokenNumber","outputs":[{"internalType":"uint256","name":"mintableTokenNumber","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBeasts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600c80546001600160a81b03191673984eea281bf65638ac6ed30c4ff7977ea7fe04331790553480156200003757600080fd5b50604080518082018252600c81526b42756e6b657242656173747360a01b6020808301918252835180850190945260078452664242454153545360c81b9084015281519192916200008b9160009162000136565b508051620000a190600190602084019062000136565b5050506000620000b66200013260201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350611388600d55600c54600b80546001600160a01b0319166001600160a01b0390921691909117905562000219565b3390565b8280546200014490620001dc565b90600052602060002090601f016020900481019282620001685760008555620001b3565b82601f106200018357805160ff1916838001178555620001b3565b82800160010185558215620001b3579182015b82811115620001b357825182559160200191906001019062000196565b50620001c1929150620001c5565b5090565b5b80821115620001c15760008155600101620001c6565b600181811c90821680620001f157607f821691505b602082108114156200021357634e487b7160e01b600052602260045260246000fd5b50919050565b61237080620002296000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636d5d5fdc11610104578063b88d4fde116100a2578063cd38470b11610071578063cd38470b146103c5578063e985e9c5146103ce578063eb8d24441461040a578063f2fde38b1461041e57600080fd5b8063b88d4fde14610379578063bf10bd9a1461038c578063c87b56dd1461039f578063c95c0d89146103b257600080fd5b80638da5cb5b116100de5780638da5cb5b1461034557806395d89b4114610356578063a1cd9d9d1461035e578063a22cb4651461036657600080fd5b80636d5d5fdc1461031757806370a082311461032a578063715018a61461033d57600080fd5b806333c41a901161017c5780634947d7441161014b5780634947d744146102cb5780634f6ccce7146102de57806355f804b3146102f15780636352211e1461030457600080fd5b806333c41a901461029457806334918dfd146102a757806342842e0e146102af578063490d4fc0146102c257600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632f745c591461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611f53565b610431565b60405190151581526020015b60405180910390f35b61020f61045c565b6040516101fe91906120a0565b61022f61022a366004611fd6565b6104ee565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611f27565b61057b565b005b6008545b6040519081526020016101fe565b61025a61027c366004611e33565b610691565b61026061028f366004611f27565b6106c2565b6101f26102a2366004611fd6565b610758565b61025a6107be565b61025a6102bd366004611e33565b610809565b61026061138881565b6102606102d9366004611dc0565b610824565b6102606102ec366004611fd6565b610968565b61025a6102ff366004611f8d565b6109fb565b61022f610312366004611fd6565b610a3c565b61025a610325366004611fd6565b610ab3565b610260610338366004611dc0565b610d59565b61025a610de0565b600a546001600160a01b031661022f565b61020f610e54565b610260603281565b61025a610374366004611ef4565b610e63565b61025a610387366004611e74565b610f28565b61025a61039a366004611fd6565b610f5a565b61020f6103ad366004611fd6565b611158565b6101f26103c0366004611fd6565b611223565b610260600d5481565b6101f26103dc366004611dfa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c546101f290600160a01b900460ff1681565b61025a61042c366004611dc0565b611235565b60006001600160e01b0319821663780e9d6360e01b1480610456575061045682611320565b92915050565b60606000805461046b9061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546104979061223d565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b60006104f982611370565b61055f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058682610a3c565b9050806001600160a01b0316836001600160a01b031614156105f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610556565b336001600160a01b0382161480610610575061061081336103dc565b6106825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610556565b61068c838361138d565b505050565b61069b33826113fb565b6106b75760405162461bcd60e51b81526004016105569061217d565b61068c8383836114e5565b60006106cd83610d59565b821061072f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610556565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600d5482106107b55760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e646044820152607360f81b6064820152608401610556565b61045682611370565b600a546001600160a01b031633146107e85760405162461bcd60e51b815260040161055690612148565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61068c83838360405180602001604052806000815250610f28565b6000805b600b546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b15801561086d57600080fd5b505afa158015610881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a59190611fef565b81101561096257600b54604051632f745c5960e01b81526001600160a01b038581166004830152602482018490526000921690632f745c599060440160206040518083038186803b1580156108f957600080fd5b505afa15801561090d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109319190611fef565b905061093c81611223565b1561094f578261094b81612272565b9350505b508061095a81612272565b915050610828565b50919050565b600061097360085490565b82106109d65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610556565b600882815481106109e9576109e96122e3565b90600052602060002001549050919050565b600a546001600160a01b03163314610a255760405162461bcd60e51b815260040161055690612148565b8051610a3890600e906020840190611cb1565b5050565b6000818152600260205260408120546001600160a01b0316806104565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610556565b600c54600160a01b900460ff16610adc5760405162461bcd60e51b815260040161055690612105565b60008111610b2c5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e65204265617374000000006044820152606401610556565b6032811115610b8e5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420636c61696d206d6f7265207468616e20353020426561737473604482015267206174206f6e636560c01b6064820152608401610556565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610bd257600080fd5b505afa158015610be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190611fef565b905060008111610c7b5760405162461bcd60e51b815260206004820152603660248201527f4d75737420686f6c64206174206c65617374206f6e6520476f72696c6c61204e604482015275195b595cda5cc81d1bc81b5a5b9d0818481099585cdd60521b6064820152608401610556565b6000805b82811015610d5357600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015610cd257600080fd5b505afa158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190611fef565b9050610d1581611223565b15610d3257610d243382611690565b82610d2e81612272565b9350505b84831415610d405750610d53565b5080610d4b81612272565b915050610c7f565b50505050565b60006001600160a01b038216610dc45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610556565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161055690612148565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461046b9061223d565b6001600160a01b038216331415610ebc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610556565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f3233836113fb565b610f4e5760405162461bcd60e51b81526004016105569061217d565b610d53848484846116aa565b600c54600160a01b900460ff16610f835760405162461bcd60e51b815260040161055690612105565b600d5460085410610fe95760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f662042656173747360b01b6064820152608401610556565b600d5481106110485760405162461bcd60e51b815260206004820152602560248201527f52657175657374656420746f6b656e4964206578636565647320757070657220604482015264189bdd5b9960da1b6064820152608401610556565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c49190611ddd565b6001600160a01b03161461114b5760405162461bcd60e51b815260206004820152604260248201527f4d757374206f776e2074686520476f72696c6c61204e656d6573697320666f7260448201527f2072657175657374656420746f6b656e496420746f206d696e742061204265616064820152611cdd60f21b608482015260a401610556565b6111553382611690565b50565b606061116382611370565b6111c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610556565b60006111d16116dd565b905060008151116111f1576040518060200160405280600081525061121c565b806111fb846116ec565b60405160200161120c929190612034565b6040516020818303038152906040525b9392505050565b600061122e82611370565b1592915050565b600a546001600160a01b0316331461125f5760405162461bcd60e51b815260040161055690612148565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061135157506001600160e01b03198216635b5e139f60e01b145b8061045657506301ffc9a760e01b6001600160e01b0319831614610456565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c282610a3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061140682611370565b6114675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610556565b600061147283610a3c565b9050806001600160a01b0316846001600160a01b031614806114ad5750836001600160a01b03166114a2846104ee565b6001600160a01b0316145b806114dd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f882610a3c565b6001600160a01b0316146115605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610556565b6001600160a01b0382166115c25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6115cd8383836117ea565b6115d860008261138d565b6001600160a01b03831660009081526003602052604081208054600192906116019084906121fa565b90915550506001600160a01b038216600090815260036020526040812080546001929061162f9084906121ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a388282604051806020016040528060008152506118a2565b6116b58484846114e5565b6116c1848484846118d5565b610d535760405162461bcd60e51b8152600401610556906120b3565b6060600e805461046b9061223d565b6060816117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a578061172481612272565b91506117339050600a836121e6565b9150611714565b60008167ffffffffffffffff811115611755576117556122f9565b6040519080825280601f01601f19166020018201604052801561177f576020820181803683370190505b5090505b84156114dd576117946001836121fa565b91506117a1600a8661228d565b6117ac9060306121ce565b60f81b8183815181106117c1576117c16122e3565b60200101906001600160f81b031916908160001a9053506117e3600a866121e6565b9450611783565b6001600160a01b0383166118455761184081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611868565b816001600160a01b0316836001600160a01b0316146118685761186883826119e2565b6001600160a01b03821661187f5761068c81611a7f565b826001600160a01b0316826001600160a01b03161461068c5761068c8282611b2e565b6118ac8383611b72565b6118b960008484846118d5565b61068c5760405162461bcd60e51b8152600401610556906120b3565b60006001600160a01b0384163b156119d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611919903390899088908890600401612063565b602060405180830381600087803b15801561193357600080fd5b505af1925050508015611963575060408051601f3d908101601f1916820190925261196091810190611f70565b60015b6119bd573d808015611991576040519150601f19603f3d011682016040523d82523d6000602084013e611996565b606091505b5080516119b55760405162461bcd60e51b8152600401610556906120b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114dd565b506001949350505050565b600060016119ef84610d59565b6119f991906121fa565b600083815260076020526040902054909150808214611a4c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a91906001906121fa565b60008381526009602052604081205460088054939450909284908110611ab957611ab96122e3565b906000526020600020015490508060088381548110611ada57611ada6122e3565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1257611b126122cd565b6001900381819060005260206000200160009055905550505050565b6000611b3983610d59565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610556565b611bd181611370565b15611c1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610556565b611c2a600083836117ea565b6001600160a01b0382166000908152600360205260408120805460019290611c539084906121ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cbd9061223d565b90600052602060002090601f016020900481019282611cdf5760008555611d25565b82601f10611cf857805160ff1916838001178555611d25565b82800160010185558215611d25579182015b82811115611d25578251825591602001919060010190611d0a565b50611d31929150611d35565b5090565b5b80821115611d315760008155600101611d36565b600067ffffffffffffffff80841115611d6557611d656122f9565b604051601f8501601f19908116603f01168101908282118183101715611d8d57611d8d6122f9565b81604052809350858152868686011115611da657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd257600080fd5b813561121c8161230f565b600060208284031215611def57600080fd5b815161121c8161230f565b60008060408385031215611e0d57600080fd5b8235611e188161230f565b91506020830135611e288161230f565b809150509250929050565b600080600060608486031215611e4857600080fd5b8335611e538161230f565b92506020840135611e638161230f565b929592945050506040919091013590565b60008060008060808587031215611e8a57600080fd5b8435611e958161230f565b93506020850135611ea58161230f565b925060408501359150606085013567ffffffffffffffff811115611ec857600080fd5b8501601f81018713611ed957600080fd5b611ee887823560208401611d4a565b91505092959194509250565b60008060408385031215611f0757600080fd5b8235611f128161230f565b915060208301358015158114611e2857600080fd5b60008060408385031215611f3a57600080fd5b8235611f458161230f565b946020939093013593505050565b600060208284031215611f6557600080fd5b813561121c81612324565b600060208284031215611f8257600080fd5b815161121c81612324565b600060208284031215611f9f57600080fd5b813567ffffffffffffffff811115611fb657600080fd5b8201601f81018413611fc757600080fd5b6114dd84823560208401611d4a565b600060208284031215611fe857600080fd5b5035919050565b60006020828403121561200157600080fd5b5051919050565b60008151808452612020816020860160208601612211565b601f01601f19169290920160200192915050565b60008351612046818460208801612211565b83519083019061205a818360208801612211565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209690830184612008565b9695505050505050565b60208152600061121c6020830184612008565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f53616c65206d7573742062652061637469766520746f206d696e742061204265604082015262185cdd60ea1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121e1576121e16122a1565b500190565b6000826121f5576121f56122b7565b500490565b60008282101561220c5761220c6122a1565b500390565b60005b8381101561222c578181015183820152602001612214565b83811115610d535750506000910152565b600181811c9082168061225157607f821691505b6020821081141561096257634e487b7160e01b600052602260045260246000fd5b6000600019821415612286576122866122a1565b5060010190565b60008261229c5761229c6122b7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115557600080fd5b6001600160e01b03198116811461115557600080fdfea2646970667358221220d9cdba8a9d98f4dc2c7ec1e1be451177e2770d35e1d843d0040e7824b2d13fa664736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636d5d5fdc11610104578063b88d4fde116100a2578063cd38470b11610071578063cd38470b146103c5578063e985e9c5146103ce578063eb8d24441461040a578063f2fde38b1461041e57600080fd5b8063b88d4fde14610379578063bf10bd9a1461038c578063c87b56dd1461039f578063c95c0d89146103b257600080fd5b80638da5cb5b116100de5780638da5cb5b1461034557806395d89b4114610356578063a1cd9d9d1461035e578063a22cb4651461036657600080fd5b80636d5d5fdc1461031757806370a082311461032a578063715018a61461033d57600080fd5b806333c41a901161017c5780634947d7441161014b5780634947d744146102cb5780634f6ccce7146102de57806355f804b3146102f15780636352211e1461030457600080fd5b806333c41a901461029457806334918dfd146102a757806342842e0e146102af578063490d4fc0146102c257600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461026e5780632f745c591461028157600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611f53565b610431565b60405190151581526020015b60405180910390f35b61020f61045c565b6040516101fe91906120a0565b61022f61022a366004611fd6565b6104ee565b6040516001600160a01b0390911681526020016101fe565b61025a610255366004611f27565b61057b565b005b6008545b6040519081526020016101fe565b61025a61027c366004611e33565b610691565b61026061028f366004611f27565b6106c2565b6101f26102a2366004611fd6565b610758565b61025a6107be565b61025a6102bd366004611e33565b610809565b61026061138881565b6102606102d9366004611dc0565b610824565b6102606102ec366004611fd6565b610968565b61025a6102ff366004611f8d565b6109fb565b61022f610312366004611fd6565b610a3c565b61025a610325366004611fd6565b610ab3565b610260610338366004611dc0565b610d59565b61025a610de0565b600a546001600160a01b031661022f565b61020f610e54565b610260603281565b61025a610374366004611ef4565b610e63565b61025a610387366004611e74565b610f28565b61025a61039a366004611fd6565b610f5a565b61020f6103ad366004611fd6565b611158565b6101f26103c0366004611fd6565b611223565b610260600d5481565b6101f26103dc366004611dfa565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600c546101f290600160a01b900460ff1681565b61025a61042c366004611dc0565b611235565b60006001600160e01b0319821663780e9d6360e01b1480610456575061045682611320565b92915050565b60606000805461046b9061223d565b80601f01602080910402602001604051908101604052809291908181526020018280546104979061223d565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b60006104f982611370565b61055f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061058682610a3c565b9050806001600160a01b0316836001600160a01b031614156105f45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610556565b336001600160a01b0382161480610610575061061081336103dc565b6106825760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610556565b61068c838361138d565b505050565b61069b33826113fb565b6106b75760405162461bcd60e51b81526004016105569061217d565b61068c8383836114e5565b60006106cd83610d59565b821061072f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610556565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000600d5482106107b55760405162461bcd60e51b815260206004820152602160248201527f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e646044820152607360f81b6064820152608401610556565b61045682611370565b600a546001600160a01b031633146107e85760405162461bcd60e51b815260040161055690612148565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b61068c83838360405180602001604052806000815250610f28565b6000805b600b546040516370a0823160e01b81526001600160a01b038581166004830152909116906370a082319060240160206040518083038186803b15801561086d57600080fd5b505afa158015610881573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a59190611fef565b81101561096257600b54604051632f745c5960e01b81526001600160a01b038581166004830152602482018490526000921690632f745c599060440160206040518083038186803b1580156108f957600080fd5b505afa15801561090d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109319190611fef565b905061093c81611223565b1561094f578261094b81612272565b9350505b508061095a81612272565b915050610828565b50919050565b600061097360085490565b82106109d65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610556565b600882815481106109e9576109e96122e3565b90600052602060002001549050919050565b600a546001600160a01b03163314610a255760405162461bcd60e51b815260040161055690612148565b8051610a3890600e906020840190611cb1565b5050565b6000818152600260205260408120546001600160a01b0316806104565760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610556565b600c54600160a01b900460ff16610adc5760405162461bcd60e51b815260040161055690612105565b60008111610b2c5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206d696e74206174206c65617374206f6e65204265617374000000006044820152606401610556565b6032811115610b8e5760405162461bcd60e51b815260206004820152602860248201527f43616e6e6f7420636c61696d206d6f7265207468616e20353020426561737473604482015267206174206f6e636560c01b6064820152608401610556565b600b546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b158015610bd257600080fd5b505afa158015610be6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c0a9190611fef565b905060008111610c7b5760405162461bcd60e51b815260206004820152603660248201527f4d75737420686f6c64206174206c65617374206f6e6520476f72696c6c61204e604482015275195b595cda5cc81d1bc81b5a5b9d0818481099585cdd60521b6064820152608401610556565b6000805b82811015610d5357600b54604051632f745c5960e01b8152336004820152602481018390526000916001600160a01b031690632f745c599060440160206040518083038186803b158015610cd257600080fd5b505afa158015610ce6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0a9190611fef565b9050610d1581611223565b15610d3257610d243382611690565b82610d2e81612272565b9350505b84831415610d405750610d53565b5080610d4b81612272565b915050610c7f565b50505050565b60006001600160a01b038216610dc45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610556565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e0a5760405162461bcd60e51b815260040161055690612148565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606001805461046b9061223d565b6001600160a01b038216331415610ebc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610556565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f3233836113fb565b610f4e5760405162461bcd60e51b81526004016105569061217d565b610d53848484846116aa565b600c54600160a01b900460ff16610f835760405162461bcd60e51b815260040161055690612105565b600d5460085410610fe95760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f662042656173747360b01b6064820152608401610556565b600d5481106110485760405162461bcd60e51b815260206004820152602560248201527f52657175657374656420746f6b656e4964206578636565647320757070657220604482015264189bdd5b9960da1b6064820152608401610556565b600b546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b15801561108c57600080fd5b505afa1580156110a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110c49190611ddd565b6001600160a01b03161461114b5760405162461bcd60e51b815260206004820152604260248201527f4d757374206f776e2074686520476f72696c6c61204e656d6573697320666f7260448201527f2072657175657374656420746f6b656e496420746f206d696e742061204265616064820152611cdd60f21b608482015260a401610556565b6111553382611690565b50565b606061116382611370565b6111c75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610556565b60006111d16116dd565b905060008151116111f1576040518060200160405280600081525061121c565b806111fb846116ec565b60405160200161120c929190612034565b6040516020818303038152906040525b9392505050565b600061122e82611370565b1592915050565b600a546001600160a01b0316331461125f5760405162461bcd60e51b815260040161055690612148565b6001600160a01b0381166112c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061135157506001600160e01b03198216635b5e139f60e01b145b8061045657506301ffc9a760e01b6001600160e01b0319831614610456565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113c282610a3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061140682611370565b6114675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610556565b600061147283610a3c565b9050806001600160a01b0316846001600160a01b031614806114ad5750836001600160a01b03166114a2846104ee565b6001600160a01b0316145b806114dd57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166114f882610a3c565b6001600160a01b0316146115605760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610556565b6001600160a01b0382166115c25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6115cd8383836117ea565b6115d860008261138d565b6001600160a01b03831660009081526003602052604081208054600192906116019084906121fa565b90915550506001600160a01b038216600090815260036020526040812080546001929061162f9084906121ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a388282604051806020016040528060008152506118a2565b6116b58484846114e5565b6116c1848484846118d5565b610d535760405162461bcd60e51b8152600401610556906120b3565b6060600e805461046b9061223d565b6060816117105750506040805180820190915260018152600360fc1b602082015290565b8160005b811561173a578061172481612272565b91506117339050600a836121e6565b9150611714565b60008167ffffffffffffffff811115611755576117556122f9565b6040519080825280601f01601f19166020018201604052801561177f576020820181803683370190505b5090505b84156114dd576117946001836121fa565b91506117a1600a8661228d565b6117ac9060306121ce565b60f81b8183815181106117c1576117c16122e3565b60200101906001600160f81b031916908160001a9053506117e3600a866121e6565b9450611783565b6001600160a01b0383166118455761184081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611868565b816001600160a01b0316836001600160a01b0316146118685761186883826119e2565b6001600160a01b03821661187f5761068c81611a7f565b826001600160a01b0316826001600160a01b03161461068c5761068c8282611b2e565b6118ac8383611b72565b6118b960008484846118d5565b61068c5760405162461bcd60e51b8152600401610556906120b3565b60006001600160a01b0384163b156119d757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611919903390899088908890600401612063565b602060405180830381600087803b15801561193357600080fd5b505af1925050508015611963575060408051601f3d908101601f1916820190925261196091810190611f70565b60015b6119bd573d808015611991576040519150601f19603f3d011682016040523d82523d6000602084013e611996565b606091505b5080516119b55760405162461bcd60e51b8152600401610556906120b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506114dd565b506001949350505050565b600060016119ef84610d59565b6119f991906121fa565b600083815260076020526040902054909150808214611a4c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611a91906001906121fa565b60008381526009602052604081205460088054939450909284908110611ab957611ab96122e3565b906000526020600020015490508060088381548110611ada57611ada6122e3565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611b1257611b126122cd565b6001900381819060005260206000200160009055905550505050565b6000611b3983610d59565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611bc85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610556565b611bd181611370565b15611c1e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610556565b611c2a600083836117ea565b6001600160a01b0382166000908152600360205260408120805460019290611c539084906121ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cbd9061223d565b90600052602060002090601f016020900481019282611cdf5760008555611d25565b82601f10611cf857805160ff1916838001178555611d25565b82800160010185558215611d25579182015b82811115611d25578251825591602001919060010190611d0a565b50611d31929150611d35565b5090565b5b80821115611d315760008155600101611d36565b600067ffffffffffffffff80841115611d6557611d656122f9565b604051601f8501601f19908116603f01168101908282118183101715611d8d57611d8d6122f9565b81604052809350858152868686011115611da657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611dd257600080fd5b813561121c8161230f565b600060208284031215611def57600080fd5b815161121c8161230f565b60008060408385031215611e0d57600080fd5b8235611e188161230f565b91506020830135611e288161230f565b809150509250929050565b600080600060608486031215611e4857600080fd5b8335611e538161230f565b92506020840135611e638161230f565b929592945050506040919091013590565b60008060008060808587031215611e8a57600080fd5b8435611e958161230f565b93506020850135611ea58161230f565b925060408501359150606085013567ffffffffffffffff811115611ec857600080fd5b8501601f81018713611ed957600080fd5b611ee887823560208401611d4a565b91505092959194509250565b60008060408385031215611f0757600080fd5b8235611f128161230f565b915060208301358015158114611e2857600080fd5b60008060408385031215611f3a57600080fd5b8235611f458161230f565b946020939093013593505050565b600060208284031215611f6557600080fd5b813561121c81612324565b600060208284031215611f8257600080fd5b815161121c81612324565b600060208284031215611f9f57600080fd5b813567ffffffffffffffff811115611fb657600080fd5b8201601f81018413611fc757600080fd5b6114dd84823560208401611d4a565b600060208284031215611fe857600080fd5b5035919050565b60006020828403121561200157600080fd5b5051919050565b60008151808452612020816020860160208601612211565b601f01601f19169290920160200192915050565b60008351612046818460208801612211565b83519083019061205a818360208801612211565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061209690830184612008565b9695505050505050565b60208152600061121c6020830184612008565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f53616c65206d7573742062652061637469766520746f206d696e742061204265604082015262185cdd60ea1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156121e1576121e16122a1565b500190565b6000826121f5576121f56122b7565b500490565b60008282101561220c5761220c6122a1565b500390565b60005b8381101561222c578181015183820152602001612214565b83811115610d535750506000910152565b600181811c9082168061225157607f821691505b6020821081141561096257634e487b7160e01b600052602260045260246000fd5b6000600019821415612286576122866122a1565b5060010190565b60008261229c5761229c6122b7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461115557600080fd5b6001600160e01b03198116811461115557600080fdfea2646970667358221220d9cdba8a9d98f4dc2c7ec1e1be451177e2770d35e1d843d0040e7824b2d13fa664736f6c63430008060033
Deployed Bytecode Sourcemap
43185:2857:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34395:237;;;;;;:::i;:::-;;:::i;:::-;;;6767:14:1;;6760:22;6742:41;;6730:2;6715:18;34395:237:0;;;;;;;;21600:100;;;:::i;:::-;;;;;;;:::i;23060:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5786:32:1;;;5768:51;;5756:2;5741:18;23060:221:0;5723:102:1;22597:397:0;;;;;;:::i;:::-;;:::i;:::-;;35048:113;35136:10;:17;35048:113;;;17658:25:1;;;17646:2;17631:18;35048:113:0;17613:76:1;23950:305:0;;;;;;:::i;:::-;;:::i;34716:256::-;;;;;;:::i;:::-;;:::i;43656:174::-;;;;;;:::i;:::-;;:::i;44026:83::-;;;:::i;24326:151::-;;;;;;:::i;:::-;;:::i;43312:38::-;;43346:4;43312:38;;44321:374;;;;;;:::i;:::-;;:::i;35238:233::-;;;;;;:::i;:::-;;:::i;43938:82::-;;;;;;:::i;:::-;;:::i;21294:239::-;;;;;;:::i;:::-;;:::i;45261:776::-;;;;;;:::i;:::-;;:::i;21024:208::-;;;;;;:::i;:::-;;:::i;42267:148::-;;;:::i;41616:87::-;41689:6;;-1:-1:-1;;;;;41689:6:0;41616:87;;21769:104;;;:::i;43267:40::-;;43305:2;43267:40;;23353:295;;;;;;:::i;:::-;;:::i;24548:285::-;;;;;;:::i;:::-;;:::i;44753:460::-;;;;;;:::i;:::-;;:::i;21944:360::-;;;;;;:::i;:::-;;:::i;44157:101::-;;;;;;:::i;:::-;;:::i;43472:24::-;;;;;;23719:164;;;;;;:::i;:::-;-1:-1:-1;;;;;23840:25:0;;;23816:4;23840:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23719:164;43435:32;;;;;-1:-1:-1;;;43435:32:0;;;;;;42570:244;;;;;;:::i;:::-;;:::i;34395:237::-;34497:4;-1:-1:-1;;;;;;34521:50:0;;-1:-1:-1;;;34521:50:0;;:103;;;34588:36;34612:11;34588:23;:36::i;:::-;34514:110;34395:237;-1:-1:-1;;34395:237:0:o;21600:100::-;21654:13;21687:5;21680:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21600:100;:::o;23060:221::-;23136:7;23164:16;23172:7;23164;:16::i;:::-;23156:73;;;;-1:-1:-1;;;23156:73:0;;13172:2:1;23156:73:0;;;13154:21:1;13211:2;13191:18;;;13184:30;13250:34;13230:18;;;13223:62;-1:-1:-1;;;13301:18:1;;;13294:42;13353:19;;23156:73:0;;;;;;;;;-1:-1:-1;23249:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23249:24:0;;23060:221::o;22597:397::-;22678:13;22694:23;22709:7;22694:14;:23::i;:::-;22678:39;;22742:5;-1:-1:-1;;;;;22736:11:0;:2;-1:-1:-1;;;;;22736:11:0;;;22728:57;;;;-1:-1:-1;;;22728:57:0;;16006:2:1;22728:57:0;;;15988:21:1;16045:2;16025:18;;;16018:30;16084:34;16064:18;;;16057:62;-1:-1:-1;;;16135:18:1;;;16128:31;16176:19;;22728:57:0;15978:223:1;22728:57:0;16036:10;-1:-1:-1;;;;;22806:21:0;;;;:62;;-1:-1:-1;22831:37:0;22848:5;16036:10;23719:164;:::i;22831:37::-;22798:154;;;;-1:-1:-1;;;22798:154:0;;11154:2:1;22798:154:0;;;11136:21:1;11193:2;11173:18;;;11166:30;11232:34;11212:18;;;11205:62;11303:26;11283:18;;;11276:54;11347:19;;22798:154:0;11126:246:1;22798:154:0;22965:21;22974:2;22978:7;22965:8;:21::i;:::-;22667:327;22597:397;;:::o;23950:305::-;24111:41;16036:10;24144:7;24111:18;:41::i;:::-;24103:103;;;;-1:-1:-1;;;24103:103:0;;;;;;;:::i;:::-;24219:28;24229:4;24235:2;24239:7;24219:9;:28::i;34716:256::-;34813:7;34849:23;34866:5;34849:16;:23::i;:::-;34841:5;:31;34833:87;;;;-1:-1:-1;;;34833:87:0;;7220:2:1;34833:87:0;;;7202:21:1;7259:2;7239:18;;;7232:30;7298:34;7278:18;;;7271:62;-1:-1:-1;;;7349:18:1;;;7342:41;7400:19;;34833:87:0;7192:233:1;34833:87:0;-1:-1:-1;;;;;;34938:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34716:256::o;43656:174::-;43714:4;43745:9;;43735:7;:19;43727:65;;;;-1:-1:-1;;;43727:65:0;;15604:2:1;43727:65:0;;;15586:21:1;15643:2;15623:18;;;15616:30;15682:34;15662:18;;;15655:62;-1:-1:-1;;;15733:18:1;;;15726:31;15774:19;;43727:65:0;15576:223:1;43727:65:0;43808:16;43816:7;43808;:16::i;44026:83::-;41689:6;;-1:-1:-1;;;;;41689:6:0;16036:10;41836:23;41828:68;;;;-1:-1:-1;;;41828:68:0;;;;;;;:::i;:::-;44091:12:::1;::::0;;-1:-1:-1;;;;44075:28:0;::::1;-1:-1:-1::0;;;44091:12:0;;;::::1;;;44090:13;44075:28:::0;;::::1;;::::0;;44026:83::o;24326:151::-;24430:39;24447:4;24453:2;24457:7;24430:39;;;;;;;;;;;;:16;:39::i;44321:374::-;44388:27;44463:9;44458:197;44482:4;;:20;;-1:-1:-1;;;44482:20:0;;-1:-1:-1;;;;;5786:32:1;;;44482:20:0;;;5768:51:1;44482:4:0;;;;:14;;5741:18:1;;44482:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44478:1;:24;44458:197;;;44540:4;;:33;;-1:-1:-1;;;44540:33:0;;-1:-1:-1;;;;;6515:32:1;;;44540:33:0;;;6497:51:1;6564:18;;;6557:34;;;44522:15:0;;44540:4;;:24;;6470:18:1;;44540:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44522:51;;44590:17;44599:7;44590:8;:17::i;:::-;44586:59;;;44624:21;;;;:::i;:::-;;;;44586:59;-1:-1:-1;44504:3:0;;;;:::i;:::-;;;;44458:197;;;;44321:374;;;:::o;35238:233::-;35313:7;35349:30;35136:10;:17;;35048:113;35349:30;35341:5;:38;35333:95;;;;-1:-1:-1;;;35333:95:0;;16826:2:1;35333:95:0;;;16808:21:1;16865:2;16845:18;;;16838:30;16904:34;16884:18;;;16877:62;-1:-1:-1;;;16955:18:1;;;16948:42;17007:19;;35333:95:0;16798:234:1;35333:95:0;35446:10;35457:5;35446:17;;;;;;;;:::i;:::-;;;;;;;;;35439:24;;35238:233;;;:::o;43938:82::-;41689:6;;-1:-1:-1;;;;;41689:6:0;16036:10;41836:23;41828:68;;;;-1:-1:-1;;;41828:68:0;;;;;;;:::i;:::-;44001:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43938:82:::0;:::o;21294:239::-;21366:7;21402:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21402:16:0;21437:19;21429:73;;;;-1:-1:-1;;;21429:73:0;;12401:2:1;21429:73:0;;;12383:21:1;12440:2;12420:18;;;12413:30;12479:34;12459:18;;;12452:62;-1:-1:-1;;;12530:18:1;;;12523:39;12579:19;;21429:73:0;12373:231:1;45261:776:0;45326:12;;-1:-1:-1;;;45326:12:0;;;;45318:60;;;;-1:-1:-1;;;45318:60:0;;;;;;;:::i;:::-;45407:1;45395:9;:13;45387:54;;;;-1:-1:-1;;;45387:54:0;;9978:2:1;45387:54:0;;;9960:21:1;10017:2;9997:18;;;9990:30;10056;10036:18;;;10029:58;10104:18;;45387:54:0;9950:178:1;45387:54:0;43305:2;45458:9;:27;;45450:80;;;;-1:-1:-1;;;45450:80:0;;13946:2:1;45450:80:0;;;13928:21:1;13985:2;13965:18;;;13958:30;14024:34;14004:18;;;13997:62;-1:-1:-1;;;14075:18:1;;;14068:38;14123:19;;45450:80:0;13918:230:1;45450:80:0;45558:4;;:26;;-1:-1:-1;;;45558:26:0;;45573:10;45558:26;;;5768:51:1;45539:16:0;;-1:-1:-1;;;;;45558:4:0;;:14;;5741:18:1;;45558:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45539:45;;45615:1;45601:11;:15;45593:82;;;;-1:-1:-1;;;45593:82:0;;15181:2:1;45593:82:0;;;15163:21:1;15220:2;15200:18;;;15193:30;15259:34;15239:18;;;15232:62;-1:-1:-1;;;15310:18:1;;;15303:52;15372:19;;45593:82:0;15153:244:1;45593:82:0;45686:15;45719:9;45714:318;45738:11;45734:1;:15;45714:318;;;45787:4;;:39;;-1:-1:-1;;;45787:39:0;;45812:10;45787:39;;;6497:51:1;6564:18;;;6557:34;;;45769:15:0;;-1:-1:-1;;;;;45787:4:0;;:24;;6470:18:1;;45787:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45769:57;;45843:17;45852:7;45843:8;:17::i;:::-;45839:110;;;45879:30;45889:10;45901:7;45879:9;:30::i;:::-;45926:9;;;;:::i;:::-;;;;45839:110;45976:9;45965:7;:20;45961:62;;;46004:5;;;45961:62;-1:-1:-1;45751:3:0;;;;:::i;:::-;;;;45714:318;;;;45309:728;;45261:776;:::o;21024:208::-;21096:7;-1:-1:-1;;;;;21124:19:0;;21116:74;;;;-1:-1:-1;;;21116:74:0;;11990:2:1;21116:74:0;;;11972:21:1;12029:2;12009:18;;;12002:30;12068:34;12048:18;;;12041:62;-1:-1:-1;;;12119:18:1;;;12112:40;12169:19;;21116:74:0;11962:232:1;21116:74:0;-1:-1:-1;;;;;;21208:16:0;;;;;:9;:16;;;;;;;21024:208::o;42267:148::-;41689:6;;-1:-1:-1;;;;;41689:6:0;16036:10;41836:23;41828:68;;;;-1:-1:-1;;;41828:68:0;;;;;;;:::i;:::-;42358:6:::1;::::0;42337:40:::1;::::0;42374:1:::1;::::0;-1:-1:-1;;;;;42358:6:0::1;::::0;42337:40:::1;::::0;42374:1;;42337:40:::1;42388:6;:19:::0;;-1:-1:-1;;;;;;42388:19:0::1;::::0;;42267:148::o;21769:104::-;21825:13;21858:7;21851:14;;;;;:::i;23353:295::-;-1:-1:-1;;;;;23456:24:0;;16036:10;23456:24;;23448:62;;;;-1:-1:-1;;;23448:62:0;;9624:2:1;23448:62:0;;;9606:21:1;9663:2;9643:18;;;9636:30;9702:27;9682:18;;;9675:55;9747:18;;23448:62:0;9596:175:1;23448:62:0;16036:10;23523:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23523:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23523:53:0;;;;;;;;;;23592:48;;6742:41:1;;;23523:42:0;;16036:10;23592:48;;6715:18:1;23592:48:0;;;;;;;23353:295;;:::o;24548:285::-;24680:41;16036:10;24713:7;24680:18;:41::i;:::-;24672:103;;;;-1:-1:-1;;;24672:103:0;;;;;;;:::i;:::-;24786:39;24800:4;24806:2;24810:7;24819:5;24786:13;:39::i;44753:460::-;44816:12;;-1:-1:-1;;;44816:12:0;;;;44808:60;;;;-1:-1:-1;;;44808:60:0;;;;;;;:::i;:::-;44899:9;;35136:10;:17;44883:25;44875:80;;;;-1:-1:-1;;;44875:80:0;;11579:2:1;44875:80:0;;;11561:21:1;11618:2;11598:18;;;11591:30;11657:34;11637:18;;;11630:62;-1:-1:-1;;;11708:18:1;;;11701:40;11758:19;;44875:80:0;11551:232:1;44875:80:0;44984:9;;44970:11;:23;44962:73;;;;-1:-1:-1;;;44962:73:0;;10748:2:1;44962:73:0;;;10730:21:1;10787:2;10767:18;;;10760:30;10826:34;10806:18;;;10799:62;-1:-1:-1;;;10877:18:1;;;10870:35;10922:19;;44962:73:0;10720:227:1;44962:73:0;45050:4;;:25;;-1:-1:-1;;;45050:25:0;;;;;17658::1;;;45079:10:0;;-1:-1:-1;;;;;45050:4:0;;:12;;17631:18:1;;45050:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;45050:39:0;;45042:118;;;;-1:-1:-1;;;45042:118:0;;17239:2:1;45042:118:0;;;17221:21:1;17278:2;17258:18;;;17251:30;17317:34;17297:18;;;17290:62;17388:34;17368:18;;;17361:62;-1:-1:-1;;;17439:19:1;;;17432:33;17482:19;;45042:118:0;17211:296:1;45042:118:0;45173:34;45183:10;45195:11;45173:9;:34::i;:::-;44753:460;:::o;21944:360::-;22017:13;22051:16;22059:7;22051;:16::i;:::-;22043:76;;;;-1:-1:-1;;;22043:76:0;;14765:2:1;22043:76:0;;;14747:21:1;14804:2;14784:18;;;14777:30;14843:34;14823:18;;;14816:62;-1:-1:-1;;;14894:18:1;;;14887:45;14949:19;;22043:76:0;14737:237:1;22043:76:0;22132:21;22156:10;:8;:10::i;:::-;22132:34;;22208:1;22190:7;22184:21;:25;:112;;;;;;;;;;;;;;;;;22249:7;22258:18;:7;:16;:18::i;:::-;22232:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22184:112;22177:119;21944:360;-1:-1:-1;;;21944:360:0:o;44157:101::-;44213:4;44236:16;44244:7;44236;:16::i;:::-;44235:17;;44157:101;-1:-1:-1;;44157:101:0:o;42570:244::-;41689:6;;-1:-1:-1;;;;;41689:6:0;16036:10;41836:23;41828:68;;;;-1:-1:-1;;;41828:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42659:22:0;::::1;42651:73;;;::::0;-1:-1:-1;;;42651:73:0;;8051:2:1;42651:73:0::1;::::0;::::1;8033:21:1::0;8090:2;8070:18;;;8063:30;8129:34;8109:18;;;8102:62;-1:-1:-1;;;8180:18:1;;;8173:36;8226:19;;42651:73:0::1;8023:228:1::0;42651:73:0::1;42761:6;::::0;42740:38:::1;::::0;-1:-1:-1;;;;;42740:38:0;;::::1;::::0;42761:6:::1;::::0;42740:38:::1;::::0;42761:6:::1;::::0;42740:38:::1;42789:6;:17:::0;;-1:-1:-1;;;;;;42789:17:0::1;-1:-1:-1::0;;;;;42789:17:0;;;::::1;::::0;;;::::1;::::0;;42570:244::o;20668:292::-;20770:4;-1:-1:-1;;;;;;20794:40:0;;-1:-1:-1;;;20794:40:0;;:105;;-1:-1:-1;;;;;;;20851:48:0;;-1:-1:-1;;;20851:48:0;20794:105;:158;;;-1:-1:-1;;;;;;;;;;19275:40:0;;;20916:36;19166:157;26300:127;26365:4;26389:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26389:16:0;:30;;;26300:127::o;30177:174::-;30252:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30252:29:0;-1:-1:-1;;;;;30252:29:0;;;;;;;;:24;;30306:23;30252:24;30306:14;:23::i;:::-;-1:-1:-1;;;;;30297:46:0;;;;;;;;;;;30177:174;;:::o;26594:348::-;26687:4;26712:16;26720:7;26712;:16::i;:::-;26704:73;;;;-1:-1:-1;;;26704:73:0;;10335:2:1;26704:73:0;;;10317:21:1;10374:2;10354:18;;;10347:30;10413:34;10393:18;;;10386:62;-1:-1:-1;;;10464:18:1;;;10457:42;10516:19;;26704:73:0;10307:234:1;26704:73:0;26788:13;26804:23;26819:7;26804:14;:23::i;:::-;26788:39;;26857:5;-1:-1:-1;;;;;26846:16:0;:7;-1:-1:-1;;;;;26846:16:0;;:51;;;;26890:7;-1:-1:-1;;;;;26866:31:0;:20;26878:7;26866:11;:20::i;:::-;-1:-1:-1;;;;;26866:31:0;;26846:51;:87;;;-1:-1:-1;;;;;;23840:25:0;;;23816:4;23840:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26901:32;26838:96;26594:348;-1:-1:-1;;;;26594:348:0:o;29515:544::-;29640:4;-1:-1:-1;;;;;29613:31:0;:23;29628:7;29613:14;:23::i;:::-;-1:-1:-1;;;;;29613:31:0;;29605:85;;;;-1:-1:-1;;;29605:85:0;;14355:2:1;29605:85:0;;;14337:21:1;14394:2;14374:18;;;14367:30;14433:34;14413:18;;;14406:62;-1:-1:-1;;;14484:18:1;;;14477:39;14533:19;;29605:85:0;14327:231:1;29605:85:0;-1:-1:-1;;;;;29709:16:0;;29701:65;;;;-1:-1:-1;;;29701:65:0;;9219:2:1;29701:65:0;;;9201:21:1;9258:2;9238:18;;;9231:30;9297:34;9277:18;;;9270:62;-1:-1:-1;;;9348:18:1;;;9341:34;9392:19;;29701:65:0;9191:226:1;29701:65:0;29779:39;29800:4;29806:2;29810:7;29779:20;:39::i;:::-;29883:29;29900:1;29904:7;29883:8;:29::i;:::-;-1:-1:-1;;;;;29925:15:0;;;;;;:9;:15;;;;;:20;;29944:1;;29925:15;:20;;29944:1;;29925:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29956:13:0;;;;;;:9;:13;;;;;:18;;29973:1;;29956:13;:18;;29973:1;;29956:18;:::i;:::-;;;;-1:-1:-1;;29985:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29985:21:0;-1:-1:-1;;;;;29985:21:0;;;;;;;;;30024:27;;29985:16;;30024:27;;;;;;;29515:544;;;:::o;27284:110::-;27360:26;27370:2;27374:7;27360:26;;;;;;;;;;;;:9;:26::i;25715:272::-;25829:28;25839:4;25845:2;25849:7;25829:9;:28::i;:::-;25876:48;25899:4;25905:2;25909:7;25918:5;25876:22;:48::i;:::-;25868:111;;;;-1:-1:-1;;;25868:111:0;;;;;;;:::i;43836:94::-;43888:13;43917:7;43910:14;;;;;:::i;16611:723::-;16667:13;16888:10;16884:53;;-1:-1:-1;;16915:10:0;;;;;;;;;;;;-1:-1:-1;;;16915:10:0;;;;;16611:723::o;16884:53::-;16962:5;16947:12;17003:78;17010:9;;17003:78;;17036:8;;;;:::i;:::-;;-1:-1:-1;17059:10:0;;-1:-1:-1;17067:2:0;17059:10;;:::i;:::-;;;17003:78;;;17091:19;17123:6;17113:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17113:17:0;;17091:39;;17141:154;17148:10;;17141:154;;17175:11;17185:1;17175:11;;:::i;:::-;;-1:-1:-1;17244:10:0;17252:2;17244:5;:10;:::i;:::-;17231:24;;:2;:24;:::i;:::-;17218:39;;17201:6;17208;17201:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17201:56:0;;;;;;;;-1:-1:-1;17272:11:0;17281:2;17272:11;;:::i;:::-;;;17141:154;;36084:555;-1:-1:-1;;;;;36256:18:0;;36252:187;;36291:40;36323:7;37466:10;:17;;37439:24;;;;:15;:24;;;;;:44;;;37494:24;;;;;;;;;;;;37362:164;36291:40;36252:187;;;36361:2;-1:-1:-1;;;;;36353:10:0;:4;-1:-1:-1;;;;;36353:10:0;;36349:90;;36380:47;36413:4;36419:7;36380:32;:47::i;:::-;-1:-1:-1;;;;;36453:16:0;;36449:183;;36486:45;36523:7;36486:36;:45::i;36449:183::-;36559:4;-1:-1:-1;;;;;36553:10:0;:2;-1:-1:-1;;;;;36553:10:0;;36549:83;;36580:40;36608:2;36612:7;36580:27;:40::i;27621:250::-;27717:18;27723:2;27727:7;27717:5;:18::i;:::-;27754:54;27785:1;27789:2;27793:7;27802:5;27754:22;:54::i;:::-;27746:117;;;;-1:-1:-1;;;27746:117:0;;;;;;;:::i;30916:843::-;31037:4;-1:-1:-1;;;;;31063:13:0;;8440:20;8479:8;31059:693;;31099:72;;-1:-1:-1;;;31099:72:0;;-1:-1:-1;;;;;31099:36:0;;;;;:72;;16036:10;;31150:4;;31156:7;;31165:5;;31099:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31099:72:0;;;;;;;;-1:-1:-1;;31099:72:0;;;;;;;;;;;;:::i;:::-;;;31095:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31345:13:0;;31341:341;;31388:60;;-1:-1:-1;;;31388:60:0;;;;;;;:::i;31341:341::-;31632:6;31626:13;31617:6;31613:2;31609:15;31602:38;31095:602;-1:-1:-1;;;;;;31222:55:0;-1:-1:-1;;;31222:55:0;;-1:-1:-1;31215:62:0;;31059:693;-1:-1:-1;31736:4:0;30916:843;;;;;;:::o;38153:988::-;38419:22;38469:1;38444:22;38461:4;38444:16;:22::i;:::-;:26;;;;:::i;:::-;38481:18;38502:26;;;:17;:26;;;;;;38419:51;;-1:-1:-1;38635:28:0;;;38631:328;;-1:-1:-1;;;;;38702:18:0;;38680:19;38702:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38753:30;;;;;;:44;;;38870:30;;:17;:30;;;;;:43;;;38631:328;-1:-1:-1;39055:26:0;;;;:17;:26;;;;;;;;39048:33;;;-1:-1:-1;;;;;39099:18:0;;;;;:12;:18;;;;;:34;;;;;;;39092:41;38153:988::o;39436:1079::-;39714:10;:17;39689:22;;39714:21;;39734:1;;39714:21;:::i;:::-;39746:18;39767:24;;;:15;:24;;;;;;40140:10;:26;;39689:46;;-1:-1:-1;39767:24:0;;39689:46;;40140:26;;;;;;:::i;:::-;;;;;;;;;40118:48;;40204:11;40179:10;40190;40179:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40284:28;;;:15;:28;;;;;;;:41;;;40456:24;;;;;40449:31;40491:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39507:1008;;;39436:1079;:::o;36940:221::-;37025:14;37042:20;37059:2;37042:16;:20::i;:::-;-1:-1:-1;;;;;37073:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37118:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36940:221:0:o;28207:382::-;-1:-1:-1;;;;;28287:16:0;;28279:61;;;;-1:-1:-1;;;28279:61:0;;12811:2:1;28279:61:0;;;12793:21:1;;;12830:18;;;12823:30;12889:34;12869:18;;;12862:62;12941:18;;28279:61:0;12783:182:1;28279:61:0;28360:16;28368:7;28360;:16::i;:::-;28359:17;28351:58;;;;-1:-1:-1;;;28351:58:0;;8862:2:1;28351:58:0;;;8844:21:1;8901:2;8881:18;;;8874:30;8940;8920:18;;;8913:58;8988:18;;28351:58:0;8834:178:1;28351:58:0;28422:45;28451:1;28455:2;28459:7;28422:20;:45::i;:::-;-1:-1:-1;;;;;28480:13:0;;;;;;:9;:13;;;;;:18;;28497:1;;28480:13;:18;;28497:1;;28480:18;:::i;:::-;;;;-1:-1:-1;;28509:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28509:21:0;-1:-1:-1;;;;;28509:21:0;;;;;;;;28548:33;;28509:16;;;28548:33;;28509:16;;28548:33;28207:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:2;;;778:1;775;768:12;730:2;817:9;804:23;836:31;861:5;836:31;:::i;902:251::-;972:6;1025:2;1013:9;1004:7;1000:23;996:32;993:2;;;1041:1;1038;1031:12;993:2;1073:9;1067:16;1092:31;1117:5;1092:31;:::i;1158:388::-;1226:6;1234;1287:2;1275:9;1266:7;1262:23;1258:32;1255:2;;;1303:1;1300;1293:12;1255:2;1342:9;1329:23;1361:31;1386:5;1361:31;:::i;:::-;1411:5;-1:-1:-1;1468:2:1;1453:18;;1440:32;1481:33;1440:32;1481:33;:::i;:::-;1533:7;1523:17;;;1245:301;;;;;:::o;1551:456::-;1628:6;1636;1644;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1713:1;1710;1703:12;1665:2;1752:9;1739:23;1771:31;1796:5;1771:31;:::i;:::-;1821:5;-1:-1:-1;1878:2:1;1863:18;;1850:32;1891:33;1850:32;1891:33;:::i;:::-;1655:352;;1943:7;;-1:-1:-1;;;1997:2:1;1982:18;;;;1969:32;;1655:352::o;2012:794::-;2107:6;2115;2123;2131;2184:3;2172:9;2163:7;2159:23;2155:33;2152:2;;;2201:1;2198;2191:12;2152:2;2240:9;2227:23;2259:31;2284:5;2259:31;:::i;:::-;2309:5;-1:-1:-1;2366:2:1;2351:18;;2338:32;2379:33;2338:32;2379:33;:::i;:::-;2431:7;-1:-1:-1;2485:2:1;2470:18;;2457:32;;-1:-1:-1;2540:2:1;2525:18;;2512:32;2567:18;2556:30;;2553:2;;;2599:1;2596;2589:12;2553:2;2622:22;;2675:4;2667:13;;2663:27;-1:-1:-1;2653:2:1;;2704:1;2701;2694:12;2653:2;2727:73;2792:7;2787:2;2774:16;2769:2;2765;2761:11;2727:73;:::i;:::-;2717:83;;;2142:664;;;;;;;:::o;2811:416::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2992:9;2979:23;3011:31;3036:5;3011:31;:::i;:::-;3061:5;-1:-1:-1;3118:2:1;3103:18;;3090:32;3160:15;;3153:23;3141:36;;3131:2;;3191:1;3188;3181:12;3232:315;3300:6;3308;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3377:1;3374;3367:12;3329:2;3416:9;3403:23;3435:31;3460:5;3435:31;:::i;:::-;3485:5;3537:2;3522:18;;;;3509:32;;-1:-1:-1;;;3319:228:1:o;3552:245::-;3610:6;3663:2;3651:9;3642:7;3638:23;3634:32;3631:2;;;3679:1;3676;3669:12;3631:2;3718:9;3705:23;3737:30;3761:5;3737:30;:::i;3802:249::-;3871:6;3924:2;3912:9;3903:7;3899:23;3895:32;3892:2;;;3940:1;3937;3930:12;3892:2;3972:9;3966:16;3991:30;4015:5;3991:30;:::i;4056:450::-;4125:6;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4194:1;4191;4184:12;4146:2;4234:9;4221:23;4267:18;4259:6;4256:30;4253:2;;;4299:1;4296;4289:12;4253:2;4322:22;;4375:4;4367:13;;4363:27;-1:-1:-1;4353:2:1;;4404:1;4401;4394:12;4353:2;4427:73;4492:7;4487:2;4474:16;4469:2;4465;4461:11;4427:73;:::i;4511:180::-;4570:6;4623:2;4611:9;4602:7;4598:23;4594:32;4591:2;;;4639:1;4636;4629:12;4591:2;-1:-1:-1;4662:23:1;;4581:110;-1:-1:-1;4581:110:1:o;4696:184::-;4766:6;4819:2;4807:9;4798:7;4794:23;4790:32;4787:2;;;4835:1;4832;4825:12;4787:2;-1:-1:-1;4858:16:1;;4777:103;-1:-1:-1;4777:103:1:o;4885:257::-;4926:3;4964:5;4958:12;4991:6;4986:3;4979:19;5007:63;5063:6;5056:4;5051:3;5047:14;5040:4;5033:5;5029:16;5007:63;:::i;:::-;5124:2;5103:15;-1:-1:-1;;5099:29:1;5090:39;;;;5131:4;5086:50;;4934:208;-1:-1:-1;;4934:208:1:o;5147:470::-;5326:3;5364:6;5358:13;5380:53;5426:6;5421:3;5414:4;5406:6;5402:17;5380:53;:::i;:::-;5496:13;;5455:16;;;;5518:57;5496:13;5455:16;5552:4;5540:17;;5518:57;:::i;:::-;5591:20;;5334:283;-1:-1:-1;;;;5334:283:1:o;5830:488::-;-1:-1:-1;;;;;6099:15:1;;;6081:34;;6151:15;;6146:2;6131:18;;6124:43;6198:2;6183:18;;6176:34;;;6246:3;6241:2;6226:18;;6219:31;;;6024:4;;6267:45;;6292:19;;6284:6;6267:45;:::i;:::-;6259:53;6033:285;-1:-1:-1;;;;;;6033:285:1:o;6794:219::-;6943:2;6932:9;6925:21;6906:4;6963:44;7003:2;6992:9;6988:18;6980:6;6963:44;:::i;7430:414::-;7632:2;7614:21;;;7671:2;7651:18;;;7644:30;7710:34;7705:2;7690:18;;7683:62;-1:-1:-1;;;7776:2:1;7761:18;;7754:48;7834:3;7819:19;;7604:240::o;8256:399::-;8458:2;8440:21;;;8497:2;8477:18;;;8470:30;8536:34;8531:2;8516:18;;8509:62;-1:-1:-1;;;8602:2:1;8587:18;;8580:33;8645:3;8630:19;;8430:225::o;13383:356::-;13585:2;13567:21;;;13604:18;;;13597:30;13663:34;13658:2;13643:18;;13636:62;13730:2;13715:18;;13557:182::o;16206:413::-;16408:2;16390:21;;;16447:2;16427:18;;;16420:30;16486:34;16481:2;16466:18;;16459:62;-1:-1:-1;;;16552:2:1;16537:18;;16530:47;16609:3;16594:19;;16380:239::o;17694:128::-;17734:3;17765:1;17761:6;17758:1;17755:13;17752:2;;;17771:18;;:::i;:::-;-1:-1:-1;17807:9:1;;17742:80::o;17827:120::-;17867:1;17893;17883:2;;17898:18;;:::i;:::-;-1:-1:-1;17932:9:1;;17873:74::o;17952:125::-;17992:4;18020:1;18017;18014:8;18011:2;;;18025:18;;:::i;:::-;-1:-1:-1;18062:9:1;;18001:76::o;18082:258::-;18154:1;18164:113;18178:6;18175:1;18172:13;18164:113;;;18254:11;;;18248:18;18235:11;;;18228:39;18200:2;18193:10;18164:113;;;18295:6;18292:1;18289:13;18286:2;;;-1:-1:-1;;18330:1:1;18312:16;;18305:27;18135:205::o;18345:380::-;18424:1;18420:12;;;;18467;;;18488:2;;18542:4;18534:6;18530:17;18520:27;;18488:2;18595;18587:6;18584:14;18564:18;18561:38;18558:2;;;18641:10;18636:3;18632:20;18629:1;18622:31;18676:4;18673:1;18666:15;18704:4;18701:1;18694:15;18730:135;18769:3;-1:-1:-1;;18790:17:1;;18787:2;;;18810:18;;:::i;:::-;-1:-1:-1;18857:1:1;18846:13;;18777:88::o;18870:112::-;18902:1;18928;18918:2;;18933:18;;:::i;:::-;-1:-1:-1;18967:9:1;;18908:74::o;18987:127::-;19048:10;19043:3;19039:20;19036:1;19029:31;19079:4;19076:1;19069:15;19103:4;19100:1;19093:15;19119:127;19180:10;19175:3;19171:20;19168:1;19161:31;19211:4;19208:1;19201:15;19235:4;19232:1;19225:15;19251:127;19312:10;19307:3;19303:20;19300:1;19293:31;19343:4;19340:1;19333:15;19367:4;19364:1;19357:15;19383:127;19444:10;19439:3;19435:20;19432:1;19425:31;19475:4;19472:1;19465:15;19499:4;19496:1;19489:15;19515:127;19576:10;19571:3;19567:20;19564:1;19557:31;19607:4;19604:1;19597:15;19631:4;19628:1;19621:15;19647:131;-1:-1:-1;;;;;19722:31:1;;19712:42;;19702:2;;19768:1;19765;19758:12;19783:131;-1:-1:-1;;;;;;19857:32:1;;19847:43;;19837:2;;19904:1;19901;19894:12
Swarm Source
ipfs://d9cdba8a9d98f4dc2c7ec1e1be451177e2770d35e1d843d0040e7824b2d13fa6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.