Overview
MOVR Balance
MOVR Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 155 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 13948252 | 70 days ago | IN | 0 MOVR | 0.00032028 | ||||
| Set Approval For... | 13884492 | 75 days ago | IN | 0 MOVR | 0.00032028 | ||||
| Set Approval For... | 6594605 | 643 days ago | IN | 0 MOVR | 0.00015587 | ||||
| Set Approval For... | 5126126 | 861 days ago | IN | 0 MOVR | 0.0001138 | ||||
| Set Approval For... | 4817157 | 905 days ago | IN | 0 MOVR | 0.00005964 | ||||
| Set Approval For... | 4028462 | 1017 days ago | IN | 0 MOVR | 0.00005798 | ||||
| Set Approval For... | 3841068 | 1044 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Transfer From | 3614800 | 1076 days ago | IN | 0 MOVR | 0.00021944 | ||||
| Set Approval For... | 3565599 | 1083 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 3511423 | 1091 days ago | IN | 0 MOVR | 0.00006118 | ||||
| Set Approval For... | 3199531 | 1136 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2997863 | 1166 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Transfer From | 2996577 | 1166 days ago | IN | 0 MOVR | 0.00021946 | ||||
| Set Approval For... | 2996148 | 1166 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2884422 | 1182 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2725326 | 1205 days ago | IN | 0 MOVR | 0.00004638 | ||||
| Set Approval For... | 2529091 | 1234 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2514304 | 1236 days ago | IN | 0 MOVR | 0.00011596 | ||||
| Set Approval For... | 2503799 | 1238 days ago | IN | 0 MOVR | 0.00002117 | ||||
| Set Approval For... | 2491625 | 1240 days ago | IN | 0 MOVR | 0.00011596 | ||||
| Set Approval For... | 2407135 | 1254 days ago | IN | 0 MOVR | 0.00005294 | ||||
| Set Approval For... | 2349193 | 1264 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2348873 | 1264 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2337907 | 1266 days ago | IN | 0 MOVR | 0.00009277 | ||||
| Set Approval For... | 2337256 | 1266 days ago | IN | 0 MOVR | 0.00011596 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BeanieBuds
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/**
*Submitted for verification at moonriver.moonscan.io on 2022-01-28
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity >=0.6.0 <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 GSN 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 payable) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/introspection/IERC165.sol
pragma solidity >=0.6.0 <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.6.2 <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/IERC721Metadata.sol
pragma solidity >=0.6.2 <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/token/ERC721/IERC721Enumerable.sol
pragma solidity >=0.6.2 <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/IERC721Receiver.sol
pragma solidity >=0.6.0 <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/introspection/ERC165.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts may inherit from this and call {_registerInterface} to declare
* their support of an interface.
*/
abstract contract ERC165 is IERC165 {
/*
* bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
*/
bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;
/**
* @dev Mapping of interface ids to whether or not it's supported.
*/
mapping(bytes4 => bool) private _supportedInterfaces;
constructor () {
// Derived contracts need only register support for their own interfaces,
// we register support for ERC165 itself here
_registerInterface(_INTERFACE_ID_ERC165);
}
/**
* @dev See {IERC165-supportsInterface}.
*
* Time complexity O(1), guaranteed to always use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return _supportedInterfaces[interfaceId];
}
/**
* @dev Registers the contract as an implementer of the interface defined by
* `interfaceId`. Support of the actual ERC165 interface is automatic and
* registering its interface id is not required.
*
* See {IERC165-supportsInterface}.
*
* Requirements:
*
* - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
*/
function _registerInterface(bytes4 interfaceId) internal virtual {
require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
_supportedInterfaces[interfaceId] = true;
}
}
// File: @openzeppelin/contracts/math/SafeMath.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b > a) return (false, 0);
return (true, a - b);
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a / b);
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
if (b == 0) return (false, 0);
return (true, a % b);
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "SafeMath: subtraction overflow");
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) return 0;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: division by zero");
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
require(b > 0, "SafeMath: modulo by zero");
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
return a - b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryDiv}.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
return a % b;
}
}
// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity >=0.6.2 <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/EnumerableSet.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
// When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
require(set._values.length > index, "EnumerableSet: index out of bounds");
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}
// File: @openzeppelin/contracts/utils/EnumerableMap.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Library for managing an enumerable variant of Solidity's
* https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
* type.
*
* Maps have the following properties:
*
* - Entries are added, removed, and checked for existence in constant time
* (O(1)).
* - Entries are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableMap for EnumerableMap.UintToAddressMap;
*
* // Declare a set state variable
* EnumerableMap.UintToAddressMap private myMap;
* }
* ```
*
* As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
* supported.
*/
library EnumerableMap {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Map type with
// bytes32 keys and values.
// The Map implementation uses private functions, and user-facing
// implementations (such as Uint256ToAddressMap) are just wrappers around
// the underlying Map.
// This means that we can only create new EnumerableMaps for types that fit
// in bytes32.
struct MapEntry {
bytes32 _key;
bytes32 _value;
}
struct Map {
// Storage of map keys and values
MapEntry[] _entries;
// Position of the entry defined by a key in the `entries` array, plus 1
// because index 0 means a key is not in the map.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
// We read and store the key's index to prevent multiple reads from the same storage slot
uint256 keyIndex = map._indexes[key];
if (keyIndex == 0) { // Equivalent to !contains(map, key)
map._entries.push(MapEntry({ _key: key, _value: value }));
// The entry is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
map._indexes[key] = map._entries.length;
return true;
} else {
map._entries[keyIndex - 1]._value = value;
return false;
}
}
/**
* @dev Removes a key-value pair from a map. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function _remove(Map storage map, bytes32 key) private returns (bool) {
// We read and store the key's index to prevent multiple reads from the same storage slot
uint256 keyIndex = map._indexes[key];
if (keyIndex != 0) { // Equivalent to contains(map, key)
// To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
// in the array, and then remove the last entry (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = keyIndex - 1;
uint256 lastIndex = map._entries.length - 1;
// When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
// so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.
MapEntry storage lastEntry = map._entries[lastIndex];
// Move the last entry to the index where the entry to delete is
map._entries[toDeleteIndex] = lastEntry;
// Update the index for the moved entry
map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based
// Delete the slot where the moved entry was stored
map._entries.pop();
// Delete the index for the deleted slot
delete map._indexes[key];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function _contains(Map storage map, bytes32 key) private view returns (bool) {
return map._indexes[key] != 0;
}
/**
* @dev Returns the number of key-value pairs in the map. O(1).
*/
function _length(Map storage map) private view returns (uint256) {
return map._entries.length;
}
/**
* @dev Returns the key-value pair stored at position `index` in the map. O(1).
*
* Note that there are no guarantees on the ordering of entries inside the
* array, and it may change when more entries are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
require(map._entries.length > index, "EnumerableMap: index out of bounds");
MapEntry storage entry = map._entries[index];
return (entry._key, entry._value);
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*/
function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
uint256 keyIndex = map._indexes[key];
if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function _get(Map storage map, bytes32 key) private view returns (bytes32) {
uint256 keyIndex = map._indexes[key];
require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
return map._entries[keyIndex - 1]._value; // All indexes are 1-based
}
/**
* @dev Same as {_get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {_tryGet}.
*/
function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
uint256 keyIndex = map._indexes[key];
require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
return map._entries[keyIndex - 1]._value; // All indexes are 1-based
}
// UintToAddressMap
struct UintToAddressMap {
Map _inner;
}
/**
* @dev Adds a key-value pair to a map, or updates the value for an existing
* key. O(1).
*
* Returns true if the key was added to the map, that is if it was not
* already present.
*/
function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the key was removed from the map, that is if it was present.
*/
function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
return _remove(map._inner, bytes32(key));
}
/**
* @dev Returns true if the key is in the map. O(1).
*/
function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
return _contains(map._inner, bytes32(key));
}
/**
* @dev Returns the number of elements in the map. O(1).
*/
function length(UintToAddressMap storage map) internal view returns (uint256) {
return _length(map._inner);
}
/**
* @dev Returns the element stored at position `index` in the set. O(1).
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
(bytes32 key, bytes32 value) = _at(map._inner, index);
return (uint256(key), address(uint160(uint256(value))));
}
/**
* @dev Tries to returns the value associated with `key`. O(1).
* Does not revert if `key` is not in the map.
*
* _Available since v3.4._
*/
function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
(bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
return (success, address(uint160(uint256(value))));
}
/**
* @dev Returns the value associated with `key`. O(1).
*
* Requirements:
*
* - `key` must be in the map.
*/
function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
return address(uint160(uint256(_get(map._inner, bytes32(key)))));
}
/**
* @dev Same as {get}, with a custom error message when `key` is not in the map.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryGet}.
*/
function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev String operations.
*/
library Strings {
/**
* @dev Converts a `uint256` to its ASCII `string` 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);
uint256 index = digits - 1;
temp = value;
while (temp != 0) {
buffer[index--] = bytes1(uint8(48 + temp % 10));
temp /= 10;
}
return string(buffer);
}
}
// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @title ERC721 Non-Fungible Token Standard basic implementation
* @dev see https://eips.ethereum.org/EIPS/eip-721
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using SafeMath for uint256;
using Address for address;
using EnumerableSet for EnumerableSet.UintSet;
using EnumerableMap for EnumerableMap.UintToAddressMap;
using Strings for uint256;
// Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
// which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;
// Mapping from holder address to their (enumerable) set of owned tokens
mapping (address => EnumerableSet.UintSet) private _holderTokens;
// Enumerable mapping from token ids to their owners
EnumerableMap.UintToAddressMap private _tokenOwners;
// 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;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Optional mapping for token URIs
mapping (uint256 => string) private _tokenURIs;
// Base URI
string private _baseURI;
/*
* bytes4(keccak256('balanceOf(address)')) == 0x70a08231
* bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
* bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
* bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
* bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
* bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
* bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
* bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
* bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
*
* => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
* 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
*/
bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;
/*
* bytes4(keccak256('name()')) == 0x06fdde03
* bytes4(keccak256('symbol()')) == 0x95d89b41
* bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
*
* => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
*/
bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;
/*
* bytes4(keccak256('totalSupply()')) == 0x18160ddd
* bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
* bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
*
* => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
*/
bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;
/**
* @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_;
// register the supported interfaces to conform to ERC721 via ERC165
_registerInterface(_INTERFACE_ID_ERC721);
_registerInterface(_INTERFACE_ID_ERC721_METADATA);
_registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
}
/**
* @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 _holderTokens[owner].length();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
}
/**
* @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 _tokenURI = _tokenURIs[tokenId];
string memory base = baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
// If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
return string(abi.encodePacked(base, tokenId.toString()));
}
/**
* @dev Returns the base URI set via {_setBaseURI}. This will be
* automatically added as a prefix in {tokenURI} to each token's URI, or
* to the token ID if no specific URI is set for that token ID.
*/
function baseURI() public view virtual returns (string memory) {
return _baseURI;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
return _holderTokens[owner].at(index);
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
// _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
return _tokenOwners.length();
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
(uint256 tokenId, ) = _tokenOwners.at(index);
return tokenId;
}
/**
* @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 || ERC721.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 _tokenOwners.contains(tokenId);
}
/**
* @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 || ERC721.isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
d*
* - `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);
_holderTokens[to].add(tokenId);
_tokenOwners.set(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); // internal owner
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
// Clear metadata (if any)
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
_holderTokens[owner].remove(tokenId);
_tokenOwners.remove(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"); // internal owner
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_holderTokens[from].remove(tokenId);
_holderTokens[to].add(tokenId);
_tokenOwners.set(tokenId, to);
emit Transfer(from, to, tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Internal function to set the base URI for all token IDs. It is
* automatically added as a prefix to the value returned in {tokenURI},
* or to the token ID if {tokenURI} is empty.
*/
function _setBaseURI(string memory baseURI_) internal virtual {
_baseURI = baseURI_;
}
/**
* @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()) {
return true;
}
bytes memory returndata = to.functionCall(abi.encodeWithSelector(
IERC721Receiver(to).onERC721Received.selector,
_msgSender(),
from,
tokenId,
_data
), "ERC721: transfer to non ERC721Receiver implementer");
bytes4 retval = abi.decode(returndata, (bytes4));
return (retval == _ERC721_RECEIVED);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
}
/**
* @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/access/Ownable.sol
pragma solidity >=0.6.0 <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: @openzeppelin/contracts/token/ERC20/IERC.sol
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
function mint(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
pragma solidity ^0.7.0;
pragma abicoder v2;
contract BeanieBuds is ERC721, Ownable {
using SafeMath for uint256;
using Strings for uint256;
bool public whitelistActive = false;
mapping(address => bool) public whitelisted;
uint256 public whitelistPrice = 0 ether;
uint256 public tokenPrice = 0 ether;
uint256 public maxTokenPurchase = 1;
uint256 public MAX_TOKENS = 50;
bool public hidden = false;
bool public saleIsActive = false;
event tokenCreated(uint tokenIndex);
// Base URI
string private _baseURI;
// Hidden Base URI
string private _hiddenBaseURI;
// Optional mapping for token URIs
mapping (uint256 => string) private _tokenURIs;
constructor() ERC721("BeanieBuds", "BUDS") { }
function withdraw() public onlyOwner {
uint balance = address(this).balance;
msg.sender.transfer(balance);
}
function admin_setBaseURI(string memory baseURI) external onlyOwner {
_setBaseURI(baseURI);
}
function admin_setHiddenBaseURI(string memory newHiddenBaseURI) external onlyOwner {
_hiddenBaseURI = newHiddenBaseURI;
}
function admin_flipHidden() external onlyOwner {
hidden = !hidden;
}
function admin_setPrice(uint256 price) external onlyOwner {
tokenPrice = price;
}
function admin_setWhitelistPrice(uint256 price) external onlyOwner {
whitelistPrice = price;
}
function admin_setMaxTokenPurchase(uint256 count) external onlyOwner {
maxTokenPurchase = count;
}
function admin_setMaxTokens(uint256 count) external onlyOwner {
MAX_TOKENS = count;
}
function admin_whitelistMany(address[] memory wallets, bool value) external onlyOwner {
for (uint i = 0; i < wallets.length; i++) {
_whitelistAddress(wallets[i], value);
}
}
function admin_whitelistOne(address _address, bool value) external onlyOwner {
_whitelistAddress(_address, value);
}
function admin_flipSaleState() external onlyOwner {
saleIsActive = !saleIsActive;
}
function admin_flipWhitelistStatus() external onlyOwner {
whitelistActive = !whitelistActive;
}
function hiddenBaseURI() public view virtual returns (string memory) {
return _hiddenBaseURI;
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory base = baseURI();
string memory hiddenBase = hiddenBaseURI();
// If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
if (hidden) {
return string(abi.encodePacked(hiddenBase));
} else {
return string(abi.encodePacked(base, tokenId.toString(), ".json"));
}
}
function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
uint256 tokenCount = balanceOf(_owner);
if (tokenCount == 0) {
// Return an empty array
return new uint256[](0);
} else {
uint256[] memory result = new uint256[](tokenCount);
uint256 index;
for (index = 0; index < tokenCount; index++) {
result[index] = tokenOfOwnerByIndex(_owner, index);
}
return result;
}
}
function _whitelistAddress(address _address, bool value) private {
whitelisted[_address] = value;
}
function mintToken(uint numberOfTokens) public payable {
require(saleIsActive || msg.sender == owner(), "Only owner can mint unless opened up in the future.");
uint256 _tokenPrice = tokenPrice;
if (msg.sender == owner() || msg.sender == address(this)) {
_tokenPrice = 0;
} else {
require(numberOfTokens > 0 && numberOfTokens <= maxTokenPurchase, "Can only mint x tokens at a time");
if (whitelistActive) {
require ((whitelisted[msg.sender] == true), "Address is not whitelisted");
_tokenPrice = whitelistPrice;
}
}
require(msg.value >= _tokenPrice.mul(numberOfTokens), "Ether value sent is not correct");
require(totalSupply().add(numberOfTokens) <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
for(uint i = 0; i < numberOfTokens; i++) {
uint mintIndex = totalSupply() + 1;
if (totalSupply() < MAX_TOKENS) {
_safeMint(msg.sender, mintIndex);
emit tokenCreated(mintIndex);
}
}
}
// just an alias
function mint(uint numTokens) public payable {
mintToken(numTokens);
}
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT license
// 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);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"tokenCreated","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin_flipHidden","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin_flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"admin_flipWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"admin_setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newHiddenBaseURI","type":"string"}],"name":"admin_setHiddenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"admin_setMaxTokenPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"admin_setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"admin_setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"admin_setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"admin_whitelistMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"admin_whitelistOne","outputs":[],"stateMutability":"nonpayable","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hidden","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052600a805460ff60a01b191690556000600c819055600d556001600e556032600f556010805461ffff191690553480156200003d57600080fd5b50604080518082018252600a8152694265616e69654275647360b01b602080830191909152825180840190935260048352634255445360e01b90830152906200008d6301ffc9a760e01b62000152565b8151620000a2906006906020850190620001b1565b508051620000b8906007906020840190620001b1565b50620000cb6380ac58cd60e01b62000152565b620000dd635b5e139f60e01b62000152565b620000ef63780e9d6360e01b62000152565b5060009050620000fe620001ad565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000294565b6001600160e01b03198082161415620001885760405162461bcd60e51b81526004016200017f906200025d565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b612bdc80620002a46000396000f3fe6080604052600436106102675760003560e01c80638da5cb5b11610144578063c634d032116100b6578063eb8d24441161007a578063eb8d2444146106b9578063f2fde38b146106ce578063f3dfa52f146106ee578063f47c84c51461070e578063fb3239c614610723578063fc1a1c361461074357610267565b8063c634d03214610631578063c87b56dd14610644578063d936547e14610664578063e5a3b18714610684578063e985e9c51461069957610267565b8063a0712d6811610108578063a0712d6814610594578063a22cb465146105a7578063a2535f09146105c7578063aef6d4b1146105dc578063b7404d13146105f1578063b88d4fde1461061157610267565b80638da5cb5b1461050a578063911c78631461051f5780639265c3e71461053f57806395d89b411461055f5780639835fbc41461057457610267565b806342842e0e116101dd5780636c0360eb116101a15780636c0360eb1461046957806370a082311461047e578063715018a61461049e5780637ff9b596146104b35780638128f9ff146104c85780638462151c146104dd57610267565b806342842e0e146103d45780634f6ccce7146103f45780635501c6711461041457806357c89250146104295780636352211e1461044957610267565b806309aa3dcf1161022f57806309aa3dcf1461032857806318160ddd1461034a57806323b872dd1461035f5780632a9632a61461037f5780632f745c591461039f5780633ccfd60b146103bf57610267565b806301ffc9a71461026c57806302ce5813146102a257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610306575b600080fd5b34801561027857600080fd5b5061028c610287366004612236565b610758565b60405161029991906123e8565b60405180910390f35b3480156102ae57600080fd5b5061028c61077b565b3480156102c357600080fd5b506102cc61078b565b60405161029991906123f3565b3480156102e557600080fd5b506102f96102f43660046122b4565b610821565b6040516102999190612353565b34801561031257600080fd5b50610326610321366004612153565b61086d565b005b34801561033457600080fd5b5061033d610905565b6040516102999190612adc565b34801561035657600080fd5b5061033d61090b565b34801561036b57600080fd5b5061032661037a366004612076565b61091c565b34801561038b57600080fd5b5061032661039a3660046122b4565b610954565b3480156103ab57600080fd5b5061033d6103ba366004612153565b610998565b3480156103cb57600080fd5b506103266109c3565b3480156103e057600080fd5b506103266103ef366004612076565b610a35565b34801561040057600080fd5b5061033d61040f3660046122b4565b610a50565b34801561042057600080fd5b50610326610a66565b34801561043557600080fd5b506103266104443660046122b4565b610ac2565b34801561045557600080fd5b506102f96104643660046122b4565b610b06565b34801561047557600080fd5b506102cc610b2e565b34801561048a57600080fd5b5061033d61049936600461202a565b610b8f565b3480156104aa57600080fd5b50610326610bd8565b3480156104bf57600080fd5b5061033d610c61565b3480156104d457600080fd5b506102cc610c67565b3480156104e957600080fd5b506104fd6104f836600461202a565b610cc8565b60405161029991906123a4565b34801561051657600080fd5b506102f9610d76565b34801561052b57600080fd5b5061032661053a36600461212a565b610d85565b34801561054b57600080fd5b5061032661055a36600461226e565b610dce565b34801561056b57600080fd5b506102cc610e20565b34801561058057600080fd5b5061032661058f36600461217c565b610e81565b6103266105a23660046122b4565b610ef1565b3480156105b357600080fd5b506103266105c236600461212a565b610efd565b3480156105d357600080fd5b50610326610fcb565b3480156105e857600080fd5b5061028c61101e565b3480156105fd57600080fd5b5061032661060c3660046122b4565b611027565b34801561061d57600080fd5b5061032661062c3660046120b1565b61106b565b61032661063f3660046122b4565b6110aa565b34801561065057600080fd5b506102cc61065f3660046122b4565b611275565b34801561067057600080fd5b5061028c61067f36600461202a565b611304565b34801561069057600080fd5b50610326611319565b3480156106a557600080fd5b5061028c6106b4366004612044565b611379565b3480156106c557600080fd5b5061028c6113a7565b3480156106da57600080fd5b506103266106e936600461202a565b6113b5565b3480156106fa57600080fd5b506103266107093660046122b4565b611476565b34801561071a57600080fd5b5061033d6114ba565b34801561072f57600080fd5b5061032661073e36600461226e565b6114c0565b34801561074f57600080fd5b5061033d611508565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600a54600160a01b900460ff1681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b600061082c8261150e565b6108515760405162461bcd60e51b815260040161084890612872565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087882610b06565b9050806001600160a01b0316836001600160a01b031614156108ac5760405162461bcd60e51b8152600401610848906129de565b806001600160a01b03166108be61151b565b6001600160a01b031614806108da57506108da816106b461151b565b6108f65760405162461bcd60e51b8152600401610848906126c9565b610900838361151f565b505050565b600e5481565b6000610917600261158d565b905090565b61092d61092761151b565b82611598565b6109495760405162461bcd60e51b815260040161084890612a1f565b61090083838361161d565b61095c61151b565b6001600160a01b031661096d610d76565b6001600160a01b0316146109935760405162461bcd60e51b8152600401610848906128be565b600c55565b6001600160a01b03821660009081526001602052604081206109ba908361172b565b90505b92915050565b6109cb61151b565b6001600160a01b03166109dc610d76565b6001600160a01b031614610a025760405162461bcd60e51b8152600401610848906128be565b6040514790339082156108fc029083906000818181858888f19350505050158015610a31573d6000803e3d6000fd5b5050565b6109008383836040518060200160405280600081525061106b565b600080610a5e600284611737565b509392505050565b610a6e61151b565b6001600160a01b0316610a7f610d76565b6001600160a01b031614610aa55760405162461bcd60e51b8152600401610848906128be565b6010805461ff001981166101009182900460ff1615909102179055565b610aca61151b565b6001600160a01b0316610adb610d76565b6001600160a01b031614610b015760405162461bcd60e51b8152600401610848906128be565b600d55565b60006109bd82604051806060016040528060298152602001612b7e6029913960029190611753565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b60006001600160a01b038216610bb75760405162461bcd60e51b815260040161084890612726565b6001600160a01b03821660009081526001602052604090206109bd9061158d565b610be061151b565b6001600160a01b0316610bf1610d76565b6001600160a01b031614610c175760405162461bcd60e51b8152600401610848906128be565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600d5481565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b60606000610cd583610b8f565b905080610cf2575050604080516000815260208101909152610776565b60008167ffffffffffffffff81118015610d0b57600080fd5b50604051908082528060200260200182016040528015610d35578160200160208202803683370190505b50905060005b82811015610d6c57610d4d8582610998565b828281518110610d5957fe5b6020908102919091010152600101610d3b565b5091506107769050565b600a546001600160a01b031690565b610d8d61151b565b6001600160a01b0316610d9e610d76565b6001600160a01b031614610dc45760405162461bcd60e51b8152600401610848906128be565b610a31828261176a565b610dd661151b565b6001600160a01b0316610de7610d76565b6001600160a01b031614610e0d5760405162461bcd60e51b8152600401610848906128be565b8051610a31906012906020840190611f10565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b610e8961151b565b6001600160a01b0316610e9a610d76565b6001600160a01b031614610ec05760405162461bcd60e51b8152600401610848906128be565b60005b825181101561090057610ee9838281518110610edb57fe5b60200260200101518361176a565b600101610ec3565b610efa816110aa565b50565b610f0561151b565b6001600160a01b0316826001600160a01b03161415610f365760405162461bcd60e51b815260040161084890612592565b8060056000610f4361151b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f8761151b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fbf91906123e8565b60405180910390a35050565b610fd361151b565b6001600160a01b0316610fe4610d76565b6001600160a01b03161461100a5760405162461bcd60e51b8152600401610848906128be565b6010805460ff19811660ff90911615179055565b60105460ff1681565b61102f61151b565b6001600160a01b0316611040610d76565b6001600160a01b0316146110665760405162461bcd60e51b8152600401610848906128be565b600e55565b61107c61107661151b565b83611598565b6110985760405162461bcd60e51b815260040161084890612a1f565b6110a484848484611795565b50505050565b601054610100900460ff16806110d857506110c3610d76565b6001600160a01b0316336001600160a01b0316145b6110f45760405162461bcd60e51b8152600401610848906128f3565b600d546110ff610d76565b6001600160a01b0316336001600160a01b0316148061111d57503330145b1561112a575060006111a3565b60008211801561113c5750600e548211155b6111585760405162461bcd60e51b815260040161084890612aa7565b600a54600160a01b900460ff16156111a357336000908152600b602052604090205460ff16151560011461119e5760405162461bcd60e51b8152600401610848906125c9565b50600c545b6111ad81836117c8565b3410156111cc5760405162461bcd60e51b815260040161084890612600565b600f546111e1836111db61090b565b90611802565b11156111ff5760405162461bcd60e51b815260040161084890612770565b60005b8281101561090057600061121461090b565b6001019050600f5461122461090b565b101561126c576112343382611827565b7f0a6b2a25f2764bb23ba81dc1f3c7e5885291c116a26ba73b46c15ed494831741816040516112639190612adc565b60405180910390a15b50600101611202565b60606112808261150e565b61129c5760405162461bcd60e51b81526004016108489061298f565b60006112a6610b2e565b905060006112b2610c67565b60105490915060ff16156112e957806040516020016112d191906122f8565b60405160208183030381529060405292505050610776565b816112f385611841565b6040516020016112d1929190612314565b600b6020526000908152604090205460ff1681565b61132161151b565b6001600160a01b0316611332610d76565b6001600160a01b0316146113585760405162461bcd60e51b8152600401610848906128be565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601054610100900460ff1681565b6113bd61151b565b6001600160a01b03166113ce610d76565b6001600160a01b0316146113f45760405162461bcd60e51b8152600401610848906128be565b6001600160a01b03811661141a5760405162461bcd60e51b81526004016108489061249a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61147e61151b565b6001600160a01b031661148f610d76565b6001600160a01b0316146114b55760405162461bcd60e51b8152600401610848906128be565b600f55565b600f5481565b6114c861151b565b6001600160a01b03166114d9610d76565b6001600160a01b0316146114ff5760405162461bcd60e51b8152600401610848906128be565b610efa8161191c565b600c5481565b60006109bd60028361192f565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155482610b06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109bd8261193b565b60006115a38261150e565b6115bf5760405162461bcd60e51b81526004016108489061267d565b60006115ca83610b06565b9050806001600160a01b0316846001600160a01b031614806116055750836001600160a01b03166115fa84610821565b6001600160a01b0316145b8061161557506116158185611379565b949350505050565b826001600160a01b031661163082610b06565b6001600160a01b0316146116565760405162461bcd60e51b815260040161084890612946565b6001600160a01b03821661167c5760405162461bcd60e51b81526004016108489061254e565b611687838383610900565b61169260008261151f565b6001600160a01b03831660009081526001602052604090206116b4908261193f565b506001600160a01b03821660009081526001602052604090206116d7908261194b565b506116e460028284611957565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109ba838361196d565b600080808061174686866119b2565b9097909650945050505050565b6000611760848484611a0e565b90505b9392505050565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6117a084848461161d565b6117ac84848484611a6d565b6110a45760405162461bcd60e51b815260040161084890612448565b6000826117d7575060006109bd565b828202828482816117e457fe5b04146109ba5760405162461bcd60e51b815260040161084890612831565b6000828201838110156109ba5760405162461bcd60e51b815260040161084890612517565b610a31828260405180602001604052806000815250611b4c565b60608161186657506040805180820190915260018152600360fc1b6020820152610776565b8160005b811561187e57600101600a8204915061186a565b60008167ffffffffffffffff8111801561189757600080fd5b506040519080825280601f01601f1916602001820160405280156118c2576020820181803683370190505b50859350905060001982015b831561191357600a840660300160f81b828280600190039350815181106118f157fe5b60200101906001600160f81b031916908160001a905350600a840493506118ce565b50949350505050565b8051610a31906009906020840190611f10565b60006109ba8383611b7f565b5490565b60006109ba8383611b97565b60006109ba8383611c5d565b600061176084846001600160a01b038516611ca7565b815460009082106119905760405162461bcd60e51b815260040161084890612406565b82600001828154811061199f57fe5b9060005260206000200154905092915050565b8154600090819083106119d75760405162461bcd60e51b8152600401610848906127ba565b60008460000184815481106119e857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611a3e5760405162461bcd60e51b815260040161084891906123f3565b50846000016001820381548110611a5157fe5b9060005260206000209060020201600101549150509392505050565b6000611a81846001600160a01b0316611d3e565b611a8d57506001611615565b6000611b15630a85bd0160e11b611aa261151b565b888787604051602401611ab89493929190612367565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612b4c603291396001600160a01b0388169190611d44565b9050600081806020019051810190611b2d9190612252565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b611b568383611d53565b611b636000848484611a6d565b6109005760405162461bcd60e51b815260040161084890612448565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611c535783546000198083019190810190600090879083908110611bca57fe5b9060005260206000200154905080876000018481548110611be757fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611c1757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109bd565b60009150506109bd565b6000611c698383611b7f565b611c9f575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109bd565b5060006109bd565b600082815260018401602052604081205480611d0c575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611763565b82856000016001830381548110611d1f57fe5b9060005260206000209060020201600101819055506000915050611763565b3b151590565b60606117608484600085611e17565b6001600160a01b038216611d795760405162461bcd60e51b8152600401610848906127fc565b611d828161150e565b15611d9f5760405162461bcd60e51b8152600401610848906124e0565b611dab60008383610900565b6001600160a01b0382166000908152600160205260409020611dcd908261194b565b50611dda60028284611957565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015611e395760405162461bcd60e51b815260040161084890612637565b611e4285611d3e565b611e5e5760405162461bcd60e51b815260040161084890612a70565b600080866001600160a01b03168587604051611e7a91906122f8565b60006040518083038185875af1925050503d8060008114611eb7576040519150601f19603f3d011682016040523d82523d6000602084013e611ebc565b606091505b5091509150611ecc828286611ed7565b979650505050505050565b60608315611ee6575081611763565b825115611ef65782518084602001fd5b8160405162461bcd60e51b815260040161084891906123f3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611f465760008555611f8c565b82601f10611f5f57805160ff1916838001178555611f8c565b82800160010185558215611f8c579182015b82811115611f8c578251825591602001919060010190611f71565b50611f98929150611f9c565b5090565b5b80821115611f985760008155600101611f9d565b600067ffffffffffffffff831115611fc557fe5b611fd8601f8401601f1916602001612ae5565b9050828152838383011115611fec57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077657600080fd5b8035801515811461077657600080fd5b60006020828403121561203b578081fd5b6109ba82612003565b60008060408385031215612056578081fd5b61205f83612003565b915061206d60208401612003565b90509250929050565b60008060006060848603121561208a578081fd5b61209384612003565b92506120a160208501612003565b9150604084013590509250925092565b600080600080608085870312156120c6578081fd5b6120cf85612003565b93506120dd60208601612003565b925060408501359150606085013567ffffffffffffffff8111156120ff578182fd5b8501601f8101871361210f578182fd5b61211e87823560208401611fb1565b91505092959194509250565b6000806040838503121561213c578182fd5b61214583612003565b915061206d6020840161201a565b60008060408385031215612165578182fd5b61216e83612003565b946020939093013593505050565b6000806040838503121561218e578182fd5b823567ffffffffffffffff808211156121a5578384fd5b818501915085601f8301126121b8578384fd5b81356020828211156121c657fe5b80820292506121d6818401612ae5565b8281528181019085830185870184018b10156121f0578889fd5b8896505b848710156122195761220581612003565b8352600196909601959183019183016121f4565b509650612229905087820161201a565b9450505050509250929050565b600060208284031215612247578081fd5b81356109ba81612b35565b600060208284031215612263578081fd5b81516109ba81612b35565b60006020828403121561227f578081fd5b813567ffffffffffffffff811115612295578182fd5b8201601f810184136122a5578182fd5b61161584823560208401611fb1565b6000602082840312156122c5578081fd5b5035919050565b600081518084526122e4816020860160208601612b09565b601f01601f19169290920160200192915050565b6000825161230a818460208701612b09565b9190910192915050565b60008351612326818460208801612b09565b83519083019061233a818360208801612b09565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239a908301846122cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123dc578351835292840192918401916001016123c0565b50909695505050505050565b901515815260200190565b6000602082526109ba60208301846122cc565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601a908201527f41646472657373206973206e6f742077686974656c6973746564000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f4f6e6c79206f776e65722063616e206d696e7420756e6c657373206f70656e6560408201527232103ab81034b7103a343290333aba3ab9329760691b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74207820746f6b656e7320617420612074696d65604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612b0157fe5b604052919050565b60005b83811015612b24578181015183820152602001612b0c565b838111156110a45750506000910152565b6001600160e01b031981168114610efa57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220963c9faf337a38b7382fffe697e1c256e9382b2d1e5e2260791213a3e52c3dce64736f6c63430007060033
Deployed Bytecode
0x6080604052600436106102675760003560e01c80638da5cb5b11610144578063c634d032116100b6578063eb8d24441161007a578063eb8d2444146106b9578063f2fde38b146106ce578063f3dfa52f146106ee578063f47c84c51461070e578063fb3239c614610723578063fc1a1c361461074357610267565b8063c634d03214610631578063c87b56dd14610644578063d936547e14610664578063e5a3b18714610684578063e985e9c51461069957610267565b8063a0712d6811610108578063a0712d6814610594578063a22cb465146105a7578063a2535f09146105c7578063aef6d4b1146105dc578063b7404d13146105f1578063b88d4fde1461061157610267565b80638da5cb5b1461050a578063911c78631461051f5780639265c3e71461053f57806395d89b411461055f5780639835fbc41461057457610267565b806342842e0e116101dd5780636c0360eb116101a15780636c0360eb1461046957806370a082311461047e578063715018a61461049e5780637ff9b596146104b35780638128f9ff146104c85780638462151c146104dd57610267565b806342842e0e146103d45780634f6ccce7146103f45780635501c6711461041457806357c89250146104295780636352211e1461044957610267565b806309aa3dcf1161022f57806309aa3dcf1461032857806318160ddd1461034a57806323b872dd1461035f5780632a9632a61461037f5780632f745c591461039f5780633ccfd60b146103bf57610267565b806301ffc9a71461026c57806302ce5813146102a257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610306575b600080fd5b34801561027857600080fd5b5061028c610287366004612236565b610758565b60405161029991906123e8565b60405180910390f35b3480156102ae57600080fd5b5061028c61077b565b3480156102c357600080fd5b506102cc61078b565b60405161029991906123f3565b3480156102e557600080fd5b506102f96102f43660046122b4565b610821565b6040516102999190612353565b34801561031257600080fd5b50610326610321366004612153565b61086d565b005b34801561033457600080fd5b5061033d610905565b6040516102999190612adc565b34801561035657600080fd5b5061033d61090b565b34801561036b57600080fd5b5061032661037a366004612076565b61091c565b34801561038b57600080fd5b5061032661039a3660046122b4565b610954565b3480156103ab57600080fd5b5061033d6103ba366004612153565b610998565b3480156103cb57600080fd5b506103266109c3565b3480156103e057600080fd5b506103266103ef366004612076565b610a35565b34801561040057600080fd5b5061033d61040f3660046122b4565b610a50565b34801561042057600080fd5b50610326610a66565b34801561043557600080fd5b506103266104443660046122b4565b610ac2565b34801561045557600080fd5b506102f96104643660046122b4565b610b06565b34801561047557600080fd5b506102cc610b2e565b34801561048a57600080fd5b5061033d61049936600461202a565b610b8f565b3480156104aa57600080fd5b50610326610bd8565b3480156104bf57600080fd5b5061033d610c61565b3480156104d457600080fd5b506102cc610c67565b3480156104e957600080fd5b506104fd6104f836600461202a565b610cc8565b60405161029991906123a4565b34801561051657600080fd5b506102f9610d76565b34801561052b57600080fd5b5061032661053a36600461212a565b610d85565b34801561054b57600080fd5b5061032661055a36600461226e565b610dce565b34801561056b57600080fd5b506102cc610e20565b34801561058057600080fd5b5061032661058f36600461217c565b610e81565b6103266105a23660046122b4565b610ef1565b3480156105b357600080fd5b506103266105c236600461212a565b610efd565b3480156105d357600080fd5b50610326610fcb565b3480156105e857600080fd5b5061028c61101e565b3480156105fd57600080fd5b5061032661060c3660046122b4565b611027565b34801561061d57600080fd5b5061032661062c3660046120b1565b61106b565b61032661063f3660046122b4565b6110aa565b34801561065057600080fd5b506102cc61065f3660046122b4565b611275565b34801561067057600080fd5b5061028c61067f36600461202a565b611304565b34801561069057600080fd5b50610326611319565b3480156106a557600080fd5b5061028c6106b4366004612044565b611379565b3480156106c557600080fd5b5061028c6113a7565b3480156106da57600080fd5b506103266106e936600461202a565b6113b5565b3480156106fa57600080fd5b506103266107093660046122b4565b611476565b34801561071a57600080fd5b5061033d6114ba565b34801561072f57600080fd5b5061032661073e36600461226e565b6114c0565b34801561074f57600080fd5b5061033d611508565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b600a54600160a01b900460ff1681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b820191906000526020600020905b8154815290600101906020018083116107fa57829003601f168201915b5050505050905090565b600061082c8261150e565b6108515760405162461bcd60e51b815260040161084890612872565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061087882610b06565b9050806001600160a01b0316836001600160a01b031614156108ac5760405162461bcd60e51b8152600401610848906129de565b806001600160a01b03166108be61151b565b6001600160a01b031614806108da57506108da816106b461151b565b6108f65760405162461bcd60e51b8152600401610848906126c9565b610900838361151f565b505050565b600e5481565b6000610917600261158d565b905090565b61092d61092761151b565b82611598565b6109495760405162461bcd60e51b815260040161084890612a1f565b61090083838361161d565b61095c61151b565b6001600160a01b031661096d610d76565b6001600160a01b0316146109935760405162461bcd60e51b8152600401610848906128be565b600c55565b6001600160a01b03821660009081526001602052604081206109ba908361172b565b90505b92915050565b6109cb61151b565b6001600160a01b03166109dc610d76565b6001600160a01b031614610a025760405162461bcd60e51b8152600401610848906128be565b6040514790339082156108fc029083906000818181858888f19350505050158015610a31573d6000803e3d6000fd5b5050565b6109008383836040518060200160405280600081525061106b565b600080610a5e600284611737565b509392505050565b610a6e61151b565b6001600160a01b0316610a7f610d76565b6001600160a01b031614610aa55760405162461bcd60e51b8152600401610848906128be565b6010805461ff001981166101009182900460ff1615909102179055565b610aca61151b565b6001600160a01b0316610adb610d76565b6001600160a01b031614610b015760405162461bcd60e51b8152600401610848906128be565b600d55565b60006109bd82604051806060016040528060298152602001612b7e6029913960029190611753565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b60006001600160a01b038216610bb75760405162461bcd60e51b815260040161084890612726565b6001600160a01b03821660009081526001602052604090206109bd9061158d565b610be061151b565b6001600160a01b0316610bf1610d76565b6001600160a01b031614610c175760405162461bcd60e51b8152600401610848906128be565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600d5481565b60128054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b60606000610cd583610b8f565b905080610cf2575050604080516000815260208101909152610776565b60008167ffffffffffffffff81118015610d0b57600080fd5b50604051908082528060200260200182016040528015610d35578160200160208202803683370190505b50905060005b82811015610d6c57610d4d8582610998565b828281518110610d5957fe5b6020908102919091010152600101610d3b565b5091506107769050565b600a546001600160a01b031690565b610d8d61151b565b6001600160a01b0316610d9e610d76565b6001600160a01b031614610dc45760405162461bcd60e51b8152600401610848906128be565b610a31828261176a565b610dd661151b565b6001600160a01b0316610de7610d76565b6001600160a01b031614610e0d5760405162461bcd60e51b8152600401610848906128be565b8051610a31906012906020840190611f10565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108175780601f106107ec57610100808354040283529160200191610817565b610e8961151b565b6001600160a01b0316610e9a610d76565b6001600160a01b031614610ec05760405162461bcd60e51b8152600401610848906128be565b60005b825181101561090057610ee9838281518110610edb57fe5b60200260200101518361176a565b600101610ec3565b610efa816110aa565b50565b610f0561151b565b6001600160a01b0316826001600160a01b03161415610f365760405162461bcd60e51b815260040161084890612592565b8060056000610f4361151b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610f8761151b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fbf91906123e8565b60405180910390a35050565b610fd361151b565b6001600160a01b0316610fe4610d76565b6001600160a01b03161461100a5760405162461bcd60e51b8152600401610848906128be565b6010805460ff19811660ff90911615179055565b60105460ff1681565b61102f61151b565b6001600160a01b0316611040610d76565b6001600160a01b0316146110665760405162461bcd60e51b8152600401610848906128be565b600e55565b61107c61107661151b565b83611598565b6110985760405162461bcd60e51b815260040161084890612a1f565b6110a484848484611795565b50505050565b601054610100900460ff16806110d857506110c3610d76565b6001600160a01b0316336001600160a01b0316145b6110f45760405162461bcd60e51b8152600401610848906128f3565b600d546110ff610d76565b6001600160a01b0316336001600160a01b0316148061111d57503330145b1561112a575060006111a3565b60008211801561113c5750600e548211155b6111585760405162461bcd60e51b815260040161084890612aa7565b600a54600160a01b900460ff16156111a357336000908152600b602052604090205460ff16151560011461119e5760405162461bcd60e51b8152600401610848906125c9565b50600c545b6111ad81836117c8565b3410156111cc5760405162461bcd60e51b815260040161084890612600565b600f546111e1836111db61090b565b90611802565b11156111ff5760405162461bcd60e51b815260040161084890612770565b60005b8281101561090057600061121461090b565b6001019050600f5461122461090b565b101561126c576112343382611827565b7f0a6b2a25f2764bb23ba81dc1f3c7e5885291c116a26ba73b46c15ed494831741816040516112639190612adc565b60405180910390a15b50600101611202565b60606112808261150e565b61129c5760405162461bcd60e51b81526004016108489061298f565b60006112a6610b2e565b905060006112b2610c67565b60105490915060ff16156112e957806040516020016112d191906122f8565b60405160208183030381529060405292505050610776565b816112f385611841565b6040516020016112d1929190612314565b600b6020526000908152604090205460ff1681565b61132161151b565b6001600160a01b0316611332610d76565b6001600160a01b0316146113585760405162461bcd60e51b8152600401610848906128be565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601054610100900460ff1681565b6113bd61151b565b6001600160a01b03166113ce610d76565b6001600160a01b0316146113f45760405162461bcd60e51b8152600401610848906128be565b6001600160a01b03811661141a5760405162461bcd60e51b81526004016108489061249a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b61147e61151b565b6001600160a01b031661148f610d76565b6001600160a01b0316146114b55760405162461bcd60e51b8152600401610848906128be565b600f55565b600f5481565b6114c861151b565b6001600160a01b03166114d9610d76565b6001600160a01b0316146114ff5760405162461bcd60e51b8152600401610848906128be565b610efa8161191c565b600c5481565b60006109bd60028361192f565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061155482610b06565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006109bd8261193b565b60006115a38261150e565b6115bf5760405162461bcd60e51b81526004016108489061267d565b60006115ca83610b06565b9050806001600160a01b0316846001600160a01b031614806116055750836001600160a01b03166115fa84610821565b6001600160a01b0316145b8061161557506116158185611379565b949350505050565b826001600160a01b031661163082610b06565b6001600160a01b0316146116565760405162461bcd60e51b815260040161084890612946565b6001600160a01b03821661167c5760405162461bcd60e51b81526004016108489061254e565b611687838383610900565b61169260008261151f565b6001600160a01b03831660009081526001602052604090206116b4908261193f565b506001600160a01b03821660009081526001602052604090206116d7908261194b565b506116e460028284611957565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006109ba838361196d565b600080808061174686866119b2565b9097909650945050505050565b6000611760848484611a0e565b90505b9392505050565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6117a084848461161d565b6117ac84848484611a6d565b6110a45760405162461bcd60e51b815260040161084890612448565b6000826117d7575060006109bd565b828202828482816117e457fe5b04146109ba5760405162461bcd60e51b815260040161084890612831565b6000828201838110156109ba5760405162461bcd60e51b815260040161084890612517565b610a31828260405180602001604052806000815250611b4c565b60608161186657506040805180820190915260018152600360fc1b6020820152610776565b8160005b811561187e57600101600a8204915061186a565b60008167ffffffffffffffff8111801561189757600080fd5b506040519080825280601f01601f1916602001820160405280156118c2576020820181803683370190505b50859350905060001982015b831561191357600a840660300160f81b828280600190039350815181106118f157fe5b60200101906001600160f81b031916908160001a905350600a840493506118ce565b50949350505050565b8051610a31906009906020840190611f10565b60006109ba8383611b7f565b5490565b60006109ba8383611b97565b60006109ba8383611c5d565b600061176084846001600160a01b038516611ca7565b815460009082106119905760405162461bcd60e51b815260040161084890612406565b82600001828154811061199f57fe5b9060005260206000200154905092915050565b8154600090819083106119d75760405162461bcd60e51b8152600401610848906127ba565b60008460000184815481106119e857fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611a3e5760405162461bcd60e51b815260040161084891906123f3565b50846000016001820381548110611a5157fe5b9060005260206000209060020201600101549150509392505050565b6000611a81846001600160a01b0316611d3e565b611a8d57506001611615565b6000611b15630a85bd0160e11b611aa261151b565b888787604051602401611ab89493929190612367565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612b4c603291396001600160a01b0388169190611d44565b9050600081806020019051810190611b2d9190612252565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b611b568383611d53565b611b636000848484611a6d565b6109005760405162461bcd60e51b815260040161084890612448565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611c535783546000198083019190810190600090879083908110611bca57fe5b9060005260206000200154905080876000018481548110611be757fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080611c1757fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506109bd565b60009150506109bd565b6000611c698383611b7f565b611c9f575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556109bd565b5060006109bd565b600082815260018401602052604081205480611d0c575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611763565b82856000016001830381548110611d1f57fe5b9060005260206000209060020201600101819055506000915050611763565b3b151590565b60606117608484600085611e17565b6001600160a01b038216611d795760405162461bcd60e51b8152600401610848906127fc565b611d828161150e565b15611d9f5760405162461bcd60e51b8152600401610848906124e0565b611dab60008383610900565b6001600160a01b0382166000908152600160205260409020611dcd908261194b565b50611dda60028284611957565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606082471015611e395760405162461bcd60e51b815260040161084890612637565b611e4285611d3e565b611e5e5760405162461bcd60e51b815260040161084890612a70565b600080866001600160a01b03168587604051611e7a91906122f8565b60006040518083038185875af1925050503d8060008114611eb7576040519150601f19603f3d011682016040523d82523d6000602084013e611ebc565b606091505b5091509150611ecc828286611ed7565b979650505050505050565b60608315611ee6575081611763565b825115611ef65782518084602001fd5b8160405162461bcd60e51b815260040161084891906123f3565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611f465760008555611f8c565b82601f10611f5f57805160ff1916838001178555611f8c565b82800160010185558215611f8c579182015b82811115611f8c578251825591602001919060010190611f71565b50611f98929150611f9c565b5090565b5b80821115611f985760008155600101611f9d565b600067ffffffffffffffff831115611fc557fe5b611fd8601f8401601f1916602001612ae5565b9050828152838383011115611fec57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461077657600080fd5b8035801515811461077657600080fd5b60006020828403121561203b578081fd5b6109ba82612003565b60008060408385031215612056578081fd5b61205f83612003565b915061206d60208401612003565b90509250929050565b60008060006060848603121561208a578081fd5b61209384612003565b92506120a160208501612003565b9150604084013590509250925092565b600080600080608085870312156120c6578081fd5b6120cf85612003565b93506120dd60208601612003565b925060408501359150606085013567ffffffffffffffff8111156120ff578182fd5b8501601f8101871361210f578182fd5b61211e87823560208401611fb1565b91505092959194509250565b6000806040838503121561213c578182fd5b61214583612003565b915061206d6020840161201a565b60008060408385031215612165578182fd5b61216e83612003565b946020939093013593505050565b6000806040838503121561218e578182fd5b823567ffffffffffffffff808211156121a5578384fd5b818501915085601f8301126121b8578384fd5b81356020828211156121c657fe5b80820292506121d6818401612ae5565b8281528181019085830185870184018b10156121f0578889fd5b8896505b848710156122195761220581612003565b8352600196909601959183019183016121f4565b509650612229905087820161201a565b9450505050509250929050565b600060208284031215612247578081fd5b81356109ba81612b35565b600060208284031215612263578081fd5b81516109ba81612b35565b60006020828403121561227f578081fd5b813567ffffffffffffffff811115612295578182fd5b8201601f810184136122a5578182fd5b61161584823560208401611fb1565b6000602082840312156122c5578081fd5b5035919050565b600081518084526122e4816020860160208601612b09565b601f01601f19169290920160200192915050565b6000825161230a818460208701612b09565b9190910192915050565b60008351612326818460208801612b09565b83519083019061233a818360208801612b09565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061239a908301846122cc565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123dc578351835292840192918401916001016123c0565b50909695505050505050565b901515815260200190565b6000602082526109ba60208301846122cc565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601a908201527f41646472657373206973206e6f742077686974656c6973746564000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f4f6e6c79206f776e65722063616e206d696e7420756e6c657373206f70656e6560408201527232103ab81034b7103a343290333aba3ab9329760691b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252818101527f43616e206f6e6c79206d696e74207820746f6b656e7320617420612074696d65604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715612b0157fe5b604052919050565b60005b83811015612b24578181015183820152602001612b0c565b838111156110a45750506000910152565b6001600160e01b031981168114610efa57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220963c9faf337a38b7382fffe697e1c256e9382b2d1e5e2260791213a3e52c3dce64736f6c63430007060033
Deployed Bytecode Sourcemap
69698:5597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10227:150;;;;;;;;;;-1:-1:-1;10227:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69817:35;;;;;;;;;;;;;:::i;51505:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54291:221::-;;;;;;;;;;-1:-1:-1;54291:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53821:404::-;;;;;;;;;;-1:-1:-1;53821:404:0;;;;;:::i;:::-;;:::i;:::-;;69997:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53299:211::-;;;;;;;;;;;;;:::i;55181:305::-;;;;;;;;;;-1:-1:-1;55181:305:0;;;;;:::i;:::-;;:::i;71038:108::-;;;;;;;;;;-1:-1:-1;71038:108:0;;;;;:::i;:::-;;:::i;53061:162::-;;;;;;;;;;-1:-1:-1;53061:162:0;;;;;:::i;:::-;;:::i;70448:131::-;;;;;;;;;;;;;:::i;55557:151::-;;;;;;;;;;-1:-1:-1;55557:151:0;;;;;:::i;:::-;;:::i;53587:172::-;;;;;;;;;;-1:-1:-1;53587:172:0;;;;;:::i;:::-;;:::i;71736:97::-;;;;;;;;;;;;;:::i;70935:95::-;;;;;;;;;;-1:-1:-1;70935:95:0;;;;;:::i;:::-;;:::i;51261:177::-;;;;;;;;;;-1:-1:-1;51261:177:0;;;;;:::i;:::-;;:::i;52880:97::-;;;;;;;;;;;;;:::i;50978:221::-;;;;;;;;;;-1:-1:-1;50978:221:0;;;;;:::i;:::-;;:::i;66207:148::-;;;;;;;;;;;;;:::i;69955:35::-;;;;;;;;;;;;;:::i;71958:109::-;;;;;;;;;;;;;:::i;72654:540::-;;;;;;;;;;-1:-1:-1;72654:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65556:87::-;;;;;;;;;;;;;:::i;71598:130::-;;;;;;;;;;-1:-1:-1;71598:130:0;;;;;:::i;:::-;;:::i;70702:135::-;;;;;;;;;;-1:-1:-1;70702:135:0;;;;;:::i;:::-;;:::i;51674:104::-;;;;;;;;;;;;;:::i;71381:209::-;;;;;;;;;;-1:-1:-1;71381:209:0;;;;;:::i;:::-;;:::i;74481:84::-;;;;;;:::i;:::-;;:::i;54584:295::-;;;;;;;;;;-1:-1:-1;54584:295:0;;;;;:::i;:::-;;:::i;70845:82::-;;;;;;;;;;;;;:::i;70076:26::-;;;;;;;;;;;;;:::i;71154:112::-;;;;;;;;;;-1:-1:-1;71154:112:0;;;;;:::i;:::-;;:::i;55779:285::-;;;;;;;;;;-1:-1:-1;55779:285:0;;;;;:::i;:::-;;:::i;73327:1124::-;;;;;;:::i;:::-;;:::i;72079:563::-;;;;;;;;;;-1:-1:-1;72079:563:0;;;;;:::i;:::-;;:::i;69859:43::-;;;;;;;;;;-1:-1:-1;69859:43:0;;;;;:::i;:::-;;:::i;71841:109::-;;;;;;;;;;;;;:::i;54950:164::-;;;;;;;;;;-1:-1:-1;54950:164:0;;;;;:::i;:::-;;:::i;70109:32::-;;;;;;;;;;;;;:::i;66510:244::-;;;;;;;;;;-1:-1:-1;66510:244:0;;;;;:::i;:::-;;:::i;71274:99::-;;;;;;;;;;-1:-1:-1;71274:99:0;;;;;:::i;:::-;;:::i;70039:30::-;;;;;;;;;;;;;:::i;70587:107::-;;;;;;;;;;-1:-1:-1;70587:107:0;;;;;:::i;:::-;;:::i;69909:39::-;;;;;;;;;;;;;:::i;10227:150::-;-1:-1:-1;;;;;;10336:33:0;;10312:4;10336:33;;;;;;;;;;;;;10227:150;;;;:::o;69817:35::-;;;-1:-1:-1;;;69817:35:0;;;;;:::o;51505:100::-;51592:5;51585:12;;;;;;;;-1:-1:-1;;51585:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51559:13;;51585:12;;51592:5;;51585:12;;51592:5;51585:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51505:100;:::o;54291:221::-;54367:7;54395:16;54403:7;54395;:16::i;:::-;54387:73;;;;-1:-1:-1;;;54387:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54480:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54480:24:0;;54291:221::o;53821:404::-;53902:13;53918:23;53933:7;53918:14;:23::i;:::-;53902:39;;53966:5;-1:-1:-1;;;;;53960:11:0;:2;-1:-1:-1;;;;;53960:11:0;;;53952:57;;;;-1:-1:-1;;;53952:57:0;;;;;;;:::i;:::-;54046:5;-1:-1:-1;;;;;54030:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54030:21:0;;:69;;;;54055:44;54079:5;54086:12;:10;:12::i;54055:44::-;54022:161;;;;-1:-1:-1;;;54022:161:0;;;;;;;:::i;:::-;54196:21;54205:2;54209:7;54196:8;:21::i;:::-;53821:404;;;:::o;69997:35::-;;;;:::o;53299:211::-;53360:7;53481:21;:12;:19;:21::i;:::-;53474:28;;53299:211;:::o;55181:305::-;55342:41;55361:12;:10;:12::i;:::-;55375:7;55342:18;:41::i;:::-;55334:103;;;;-1:-1:-1;;;55334:103:0;;;;;;;:::i;:::-;55450:28;55460:4;55466:2;55470:7;55450:9;:28::i;71038:108::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71116:14:::1;:22:::0;71038:108::o;53061:162::-;-1:-1:-1;;;;;53185:20:0;;53158:7;53185:20;;;:13;:20;;;;;:30;;53209:5;53185:23;:30::i;:::-;53178:37;;53061:162;;;;;:::o;70448:131::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;70543:28:::1;::::0;70511:21:::1;::::0;70543:10:::1;::::0;:28;::::1;;;::::0;70511:21;;70496:12:::1;70543:28:::0;70496:12;70543:28;70511:21;70543:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;65847:1;70448:131::o:0;55557:151::-;55661:39;55678:4;55684:2;55688:7;55661:39;;;;;;;;;;;;:16;:39::i;53587:172::-;53662:7;;53704:22;:12;53720:5;53704:15;:22::i;:::-;-1:-1:-1;53682:44:0;53587:172;-1:-1:-1;;;53587:172:0:o;71736:97::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71813:12:::1;::::0;;-1:-1:-1;;71797:28:0;::::1;71813:12;::::0;;;::::1;;;71812:13;71797:28:::0;;::::1;;::::0;;71736:97::o;70935:95::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71004:10:::1;:18:::0;70935:95::o;51261:177::-;51333:7;51360:70;51377:7;51360:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52880:97::-;52961:8;52954:15;;;;;;;;-1:-1:-1;;52954:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52928:13;;52954:15;;52961:8;;52954:15;;52961:8;52954:15;;;;;;;;;;;;;;;;;;;;;;;;50978:221;51050:7;-1:-1:-1;;;;;51078:19:0;;51070:74;;;;-1:-1:-1;;;51070:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51162:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66207:148::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;66298:6:::1;::::0;66277:40:::1;::::0;66314:1:::1;::::0;-1:-1:-1;;;;;66298:6:0::1;::::0;66277:40:::1;::::0;66314:1;;66277:40:::1;66328:6;:19:::0;;-1:-1:-1;;;;;;66328:19:0::1;::::0;;66207:148::o;69955:35::-;;;;:::o;71958:109::-;72045:14;72038:21;;;;;;;;-1:-1:-1;;72038:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72012:13;;72038:21;;72045:14;;72038:21;;72045:14;72038:21;;;;;;;;;;;;;;;;;;;;;;;;72654:540;72715:16;72745:18;72766:17;72776:6;72766:9;:17::i;:::-;72745:38;-1:-1:-1;72798:15:0;72794:393;;-1:-1:-1;;72875:16:0;;;72889:1;72875:16;;;;;;;;72868:23;;72794:393;72924:23;72964:10;72950:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;72950:25:0;;72924:51;;72990:13;73018:130;73042:10;73034:5;:18;73018:130;;;73098:34;73118:6;73126:5;73098:19;:34::i;:::-;73082:6;73089:5;73082:13;;;;;;;;;;;;;;;;;:50;73054:7;;73018:130;;;-1:-1:-1;73169:6:0;-1:-1:-1;73162:13:0;;-1:-1:-1;73162:13:0;65556:87;65629:6;;-1:-1:-1;;;;;65629:6:0;65556:87;:::o;71598:130::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71686:34:::1;71704:8;71714:5;71686:17;:34::i;70702:135::-:0;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;70796:33;;::::1;::::0;:14:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51674:104::-:0;51763:7;51756:14;;;;;;;;-1:-1:-1;;51756:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51730:13;;51756:14;;51763:7;;51756:14;;51763:7;51756:14;;;;;;;;;;;;;;;;;;;;;;;;71381:209;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71483:6:::1;71478:105;71499:7;:14;71495:1;:18;71478:105;;;71535:36;71553:7;71561:1;71553:10;;;;;;;;;;;;;;71565:5;71535:17;:36::i;:::-;71515:3;;71478:105;;74481:84:::0;74537:20;74547:9;74537;:20::i;:::-;74481:84;:::o;54584:295::-;54699:12;:10;:12::i;:::-;-1:-1:-1;;;;;54687:24:0;:8;-1:-1:-1;;;;;54687:24:0;;;54679:62;;;;-1:-1:-1;;;54679:62:0;;;;;;;:::i;:::-;54799:8;54754:18;:32;54773:12;:10;:12::i;:::-;-1:-1:-1;;;;;54754:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54754:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54754:53:0;;;;;;;;;;;54838:12;:10;:12::i;:::-;-1:-1:-1;;;;;54823:48:0;;54862:8;54823:48;;;;;;:::i;:::-;;;;;;;;54584:295;;:::o;70845:82::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;70913:6:::1;::::0;;-1:-1:-1;;70903:16:0;::::1;70913:6;::::0;;::::1;70912:7;70903:16;::::0;;70845:82::o;70076:26::-;;;;;;:::o;71154:112::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71234:16:::1;:24:::0;71154:112::o;55779:285::-;55911:41;55930:12;:10;:12::i;:::-;55944:7;55911:18;:41::i;:::-;55903:103;;;;-1:-1:-1;;;55903:103:0;;;;;;;:::i;:::-;56017:39;56031:4;56037:2;56041:7;56050:5;56017:13;:39::i;:::-;55779:285;;;;:::o;73327:1124::-;73401:12;;;;;;;;:37;;;73431:7;:5;:7::i;:::-;-1:-1:-1;;;;;73417:21:0;:10;-1:-1:-1;;;;;73417:21:0;;73401:37;73393:101;;;;-1:-1:-1;;;73393:101:0;;;;;;;:::i;:::-;73527:10;;73566:7;:5;:7::i;:::-;-1:-1:-1;;;;;73552:21:0;:10;-1:-1:-1;;;;;73552:21:0;;:52;;;-1:-1:-1;73577:10:0;73599:4;73577:27;73552:52;73548:424;;;-1:-1:-1;73635:1:0;73548:424;;;73694:1;73677:14;:18;:56;;;;;73717:16;;73699:14;:34;;73677:56;73669:101;;;;-1:-1:-1;;;73669:101:0;;;;;;;:::i;:::-;73789:15;;-1:-1:-1;;;73789:15:0;;;;73785:176;;;73847:10;73835:23;;;;:11;:23;;;;;;;;:31;;:23;:31;73825:73;;;;-1:-1:-1;;;73825:73:0;;;;;;;:::i;:::-;-1:-1:-1;73931:14:0;;73785:176;74003:31;:11;74019:14;74003:15;:31::i;:::-;73990:9;:44;;73982:88;;;;-1:-1:-1;;;73982:88:0;;;;;;;:::i;:::-;74126:10;;74089:33;74107:14;74089:13;:11;:13::i;:::-;:17;;:33::i;:::-;:47;;74081:102;;;;-1:-1:-1;;;74081:102:0;;;;;;;:::i;:::-;74208:6;74204:238;74224:14;74220:1;:18;74204:238;;;74260:14;74277:13;:11;:13::i;:::-;74293:1;74277:17;74260:34;;74329:10;;74313:13;:11;:13::i;:::-;:26;74309:122;;;74348:32;74358:10;74370:9;74348;:32::i;:::-;74392:23;74405:9;74392:23;;;;;;:::i;:::-;;;;;;;;74309:122;-1:-1:-1;74240:3:0;;74204:238;;72079:563;72152:13;72186:16;72194:7;72186;:16::i;:::-;72178:76;;;;-1:-1:-1;;;72178:76:0;;;;;;;:::i;:::-;72267:18;72288:9;:7;:9::i;:::-;72267:30;;72308:24;72335:15;:13;:15::i;:::-;72458:6;;72308:42;;-1:-1:-1;72458:6:0;;72454:181;;;72512:10;72495:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;72481:43;;;;;;72454:181;72588:4;72594:18;:7;:16;:18::i;:::-;72571:51;;;;;;;;;:::i;69859:43::-;;;;;;;;;;;;;;;:::o;71841:109::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71927:15:::1;::::0;;-1:-1:-1;;;;71908:34:0;::::1;-1:-1:-1::0;;;71927:15:0;;;::::1;;;71926:16;71908:34:::0;;::::1;;::::0;;71841:109::o;54950:164::-;-1:-1:-1;;;;;55071:25:0;;;55047:4;55071:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54950:164::o;70109:32::-;;;;;;;;;:::o;66510:244::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66599:22:0;::::1;66591:73;;;;-1:-1:-1::0;;;66591:73:0::1;;;;;;;:::i;:::-;66701:6;::::0;66680:38:::1;::::0;-1:-1:-1;;;;;66680:38:0;;::::1;::::0;66701:6:::1;::::0;66680:38:::1;::::0;66701:6:::1;::::0;66680:38:::1;66729:6;:17:::0;;-1:-1:-1;;;;;;66729:17:0::1;-1:-1:-1::0;;;;;66729:17:0;;;::::1;::::0;;;::::1;::::0;;66510:244::o;71274:99::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;71347:10:::1;:18:::0;71274:99::o;70039:30::-;;;;:::o;70587:107::-;65787:12;:10;:12::i;:::-;-1:-1:-1;;;;;65776:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65776:23:0;;65768:68;;;;-1:-1:-1;;;65768:68:0;;;;;;;:::i;:::-;70666:20:::1;70678:7;70666:11;:20::i;69909:39::-:0;;;;:::o;57531:127::-;57596:4;57620:30;:12;57642:7;57620:21;:30::i;668:106::-;756:10;668:106;:::o;63549:192::-;63624:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63624:29:0;-1:-1:-1;;;;;63624:29:0;;;;;;;;:24;;63678:23;63624:24;63678:14;:23::i;:::-;-1:-1:-1;;;;;63669:46:0;;;;;;;;;;;63549:192;;:::o;44270:123::-;44339:7;44366:19;44374:3;44366:7;:19::i;57825:355::-;57918:4;57943:16;57951:7;57943;:16::i;:::-;57935:73;;;;-1:-1:-1;;;57935:73:0;;;;;;;:::i;:::-;58019:13;58035:23;58050:7;58035:14;:23::i;:::-;58019:39;;58088:5;-1:-1:-1;;;;;58077:16:0;:7;-1:-1:-1;;;;;58077:16:0;;:51;;;;58121:7;-1:-1:-1;;;;;58097:31:0;:20;58109:7;58097:11;:20::i;:::-;-1:-1:-1;;;;;58097:31:0;;58077:51;:94;;;;58132:39;58156:5;58163:7;58132:23;:39::i;:::-;58069:103;57825:355;-1:-1:-1;;;;57825:355:0:o;60961:599::-;61086:4;-1:-1:-1;;;;;61059:31:0;:23;61074:7;61059:14;:23::i;:::-;-1:-1:-1;;;;;61059:31:0;;61051:85;;;;-1:-1:-1;;;61051:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61173:16:0;;61165:65;;;;-1:-1:-1;;;61165:65:0;;;;;;;:::i;:::-;61243:39;61264:4;61270:2;61274:7;61243:20;:39::i;:::-;61347:29;61364:1;61368:7;61347:8;:29::i;:::-;-1:-1:-1;;;;;61389:19:0;;;;;;:13;:19;;;;;:35;;61416:7;61389:26;:35::i;:::-;-1:-1:-1;;;;;;61435:17:0;;;;;;:13;:17;;;;;:30;;61457:7;61435:21;:30::i;:::-;-1:-1:-1;61478:29:0;:12;61495:7;61504:2;61478:16;:29::i;:::-;;61544:7;61540:2;-1:-1:-1;;;;;61525:27:0;61534:4;-1:-1:-1;;;;;61525:27:0;;;;;;;;;;;60961:599;;;:::o;36061:137::-;36132:7;36167:22;36171:3;36183:5;36167:3;:22::i;44732:236::-;44812:7;;;;44872:22;44876:3;44888:5;44872:3;:22::i;:::-;44841:53;;;;-1:-1:-1;44732:236:0;-1:-1:-1;;;;;44732:236:0:o;46018:213::-;46125:7;46176:44;46181:3;46201;46207:12;46176:4;:44::i;:::-;46168:53;-1:-1:-1;46018:213:0;;;;;;:::o;73202:113::-;-1:-1:-1;;;;;73278:21:0;;;;;;;;:11;:21;;;;;:29;;-1:-1:-1;;73278:29:0;;;;;;;;;;73202:113::o;56946:272::-;57060:28;57070:4;57076:2;57080:7;57060:9;:28::i;:::-;57107:48;57130:4;57136:2;57140:7;57149:5;57107:22;:48::i;:::-;57099:111;;;;-1:-1:-1;;;57099:111:0;;;;;;;:::i;14668:220::-;14726:7;14750:6;14746:20;;-1:-1:-1;14765:1:0;14758:8;;14746:20;14789:5;;;14793:1;14789;:5;:1;14813:5;;;;;:10;14805:56;;;;-1:-1:-1;;;14805:56:0;;;;;;;:::i;13789:179::-;13847:7;13879:5;;;13903:6;;;;13895:46;;;;-1:-1:-1;;;13895:46:0;;;;;;;:::i;58523:110::-;58599:26;58609:2;58613:7;58599:26;;;;;;;;;;;;:9;:26::i;46482:746::-;46538:13;46759:10;46755:53;;-1:-1:-1;46786:10:0;;;;;;;;;;;;-1:-1:-1;;;46786:10:0;;;;;;46755:53;46833:5;46818:12;46874:78;46881:9;;46874:78;;46907:8;;46938:2;46930:10;;;;46874:78;;;46962:19;46994:6;46984:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46984:17:0;-1:-1:-1;47056:5:0;;-1:-1:-1;46962:39:0;-1:-1:-1;;;47028:10:0;;47072:117;47079:9;;47072:117;;47148:2;47141:4;:9;47136:2;:14;47123:29;;47105:6;47112:7;;;;;;;47105:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47105:47:0;;;;;;;;-1:-1:-1;47175:2:0;47167:10;;;;47072:117;;;-1:-1:-1;47213:6:0;46482:746;-1:-1:-1;;;;46482:746:0:o;62161:100::-;62234:19;;;;:8;;:19;;;;;:::i;44031:151::-;44115:4;44139:35;44149:3;44169;44139:9;:35::i;40849:110::-;40932:19;;40849:110::o;35148:137::-;35218:4;35242:35;35250:3;35270:5;35242:7;:35::i;34841:131::-;34908:4;34932:32;34937:3;34957:5;34932:4;:32::i;43454:185::-;43543:4;43567:64;43572:3;43592;-1:-1:-1;;;;;43606:23:0;;43567:4;:64::i;31099:204::-;31194:18;;31166:7;;31194:26;-1:-1:-1;31186:73:0;;;;-1:-1:-1;;;31186:73:0;;;;;;;:::i;:::-;31277:3;:11;;31289:5;31277:18;;;;;;;;;;;;;;;;31270:25;;31099:204;;;;:::o;41314:279::-;41418:19;;41381:7;;;;41418:27;-1:-1:-1;41410:74:0;;;;-1:-1:-1;;;41410:74:0;;;;;;;:::i;:::-;41497:22;41522:3;:12;;41535:5;41522:19;;;;;;;;;;;;;;;;;;41497:44;;41560:5;:10;;;41572:5;:12;;;41552:33;;;;;41314:279;;;;;:::o;42811:319::-;42905:7;42944:17;;;:12;;;:17;;;;;;42995:12;42980:13;42972:36;;;;-1:-1:-1;;;42972:36:0;;;;;;;;:::i;:::-;;43062:3;:12;;43086:1;43075:8;:12;43062:26;;;;;;;;;;;;;;;;;;:33;;;43055:40;;;42811:319;;;;;:::o;62826:604::-;62947:4;62974:15;:2;-1:-1:-1;;;;;62974:13:0;;:15::i;:::-;62969:60;;-1:-1:-1;63013:4:0;63006:11;;62969:60;63039:23;63065:252;-1:-1:-1;;;63178:12:0;:10;:12::i;:::-;63205:4;63224:7;63246:5;63081:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63081:181:0;;;;;;;-1:-1:-1;;;;;63081:181:0;;;;;;;;;;;63065:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63065:15:0;;;:252;:15;:252::i;:::-;63039:278;;63328:13;63355:10;63344:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63395:26:0;-1:-1:-1;;;63395:26:0;;-1:-1:-1;;;62826:604:0;;;;;;:::o;58860:250::-;58956:18;58962:2;58966:7;58956:5;:18::i;:::-;58993:54;59024:1;59028:2;59032:7;59041:5;58993:22;:54::i;:::-;58985:117;;;;-1:-1:-1;;;58985:117:0;;;;;;;:::i;40629:125::-;40700:4;40724:17;;;:12;;;;;:17;;;;;;:22;;;40629:125::o;28801:1544::-;28867:4;29006:19;;;:12;;;:19;;;;;;29042:15;;29038:1300;;29477:18;;-1:-1:-1;;29428:14:0;;;;29477:22;;;;29404:21;;29477:3;;:22;;29764;;;;;;;;;;;;;;29744:42;;29910:9;29881:3;:11;;29893:13;29881:26;;;;;;;;;;;;;;;;;;;:38;;;;29987:23;;;30029:1;29987:12;;;:23;;;;;;30013:17;;;29987:43;;30139:17;;29987:3;;30139:17;;;;;;;;;;;;;;;;;;;;;;30234:3;:12;;:19;30247:5;30234:19;;;;;;;;;;;30227:26;;;30277:4;30270:11;;;;;;;;29038:1300;30321:5;30314:12;;;;;28211:414;28274:4;28296:21;28306:3;28311:5;28296:9;:21::i;:::-;28291:327;;-1:-1:-1;28334:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28517:18;;28495:19;;;:12;;;:19;;;;;;:40;;;;28550:11;;28291:327;-1:-1:-1;28601:5:0;28594:12;;38129:692;38205:4;38340:17;;;:12;;;:17;;;;;;38374:13;38370:444;;-1:-1:-1;;38459:38:0;;;;;;;;;;;;;;;;;;38441:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38656:19;;38636:17;;;:12;;;:17;;;;;;;:39;38690:11;;38370:444;38770:5;38734:3;:12;;38758:1;38747:8;:12;38734:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38797:5;38790:12;;;;;19230:422;19597:20;19636:8;;;19230:422::o;22148:195::-;22251:12;22283:52;22305:6;22313:4;22319:1;22322:12;22283:21;:52::i;59446:404::-;-1:-1:-1;;;;;59526:16:0;;59518:61;;;;-1:-1:-1;;;59518:61:0;;;;;;;:::i;:::-;59599:16;59607:7;59599;:16::i;:::-;59598:17;59590:58;;;;-1:-1:-1;;;59590:58:0;;;;;;;:::i;:::-;59661:45;59690:1;59694:2;59698:7;59661:20;:45::i;:::-;-1:-1:-1;;;;;59719:17:0;;;;;;:13;:17;;;;;:30;;59741:7;59719:21;:30::i;:::-;-1:-1:-1;59762:29:0;:12;59779:7;59788:2;59762:16;:29::i;:::-;-1:-1:-1;59809:33:0;;59834:7;;-1:-1:-1;;;;;59809:33:0;;;59826:1;;59809:33;;59826:1;;59809:33;59446:404;;:::o;23200:530::-;23327:12;23385:5;23360:21;:30;;23352:81;;;;-1:-1:-1;;;23352:81:0;;;;;;;:::i;:::-;23452:18;23463:6;23452:10;:18::i;:::-;23444:60;;;;-1:-1:-1;;;23444:60:0;;;;;;;:::i;:::-;23578:12;23592:23;23619:6;-1:-1:-1;;;;;23619:11:0;23639:5;23647:4;23619:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23577:75;;;;23670:52;23688:7;23697:10;23709:12;23670:17;:52::i;:::-;23663:59;23200:530;-1:-1:-1;;;;;;;23200:530:0:o;25740:742::-;25855:12;25884:7;25880:595;;;-1:-1:-1;25915:10:0;25908:17;;25880:595;26029:17;;:21;26025:439;;26292:10;26286:17;26353:15;26340:10;26336:2;26332:19;26325:44;26240:148;26435:12;26428:20;;-1:-1:-1;;;26428:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:400:1;;114:18;106:6;103:30;100:2;;;136:9;100:2;165:58;211:2;188:17;;-1:-1:-1;;184:31:1;217:4;180:42;165:58;:::i;:::-;156:67;;246:6;239:5;232:21;286:3;277:6;272:3;268:16;265:25;262:2;;;303:1;300;293:12;262:2;352:6;347:3;340:4;333:5;329:16;316:43;406:1;399:4;390:6;383:5;379:18;375:29;368:40;90:324;;;;;:::o;419:175::-;489:20;;-1:-1:-1;;;;;538:31:1;;528:42;;518:2;;584:1;581;574:12;599:162;666:20;;722:13;;715:21;705:32;;695:2;;751:1;748;741:12;766:198;;878:2;866:9;857:7;853:23;849:32;846:2;;;899:6;891;884:22;846:2;927:31;948:9;927:31;:::i;969:274::-;;;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:31;1168:9;1147:31;:::i;:::-;1137:41;;1197:40;1233:2;1222:9;1218:18;1197:40;:::i;:::-;1187:50;;1056:187;;;;;:::o;1248:342::-;;;;1394:2;1382:9;1373:7;1369:23;1365:32;1362:2;;;1415:6;1407;1400:22;1362:2;1443:31;1464:9;1443:31;:::i;:::-;1433:41;;1493:40;1529:2;1518:9;1514:18;1493:40;:::i;:::-;1483:50;;1580:2;1569:9;1565:18;1552:32;1542:42;;1352:238;;;;;:::o;1595:702::-;;;;;1767:3;1755:9;1746:7;1742:23;1738:33;1735:2;;;1789:6;1781;1774:22;1735:2;1817:31;1838:9;1817:31;:::i;:::-;1807:41;;1867:40;1903:2;1892:9;1888:18;1867:40;:::i;:::-;1857:50;;1954:2;1943:9;1939:18;1926:32;1916:42;;2009:2;1998:9;1994:18;1981:32;2036:18;2028:6;2025:30;2022:2;;;2073:6;2065;2058:22;2022:2;2101:22;;2154:4;2146:13;;2142:27;-1:-1:-1;2132:2:1;;2188:6;2180;2173:22;2132:2;2216:75;2283:7;2278:2;2265:16;2260:2;2256;2252:11;2216:75;:::i;:::-;2206:85;;;1725:572;;;;;;;:::o;2302:268::-;;;2428:2;2416:9;2407:7;2403:23;2399:32;2396:2;;;2449:6;2441;2434:22;2396:2;2477:31;2498:9;2477:31;:::i;:::-;2467:41;;2527:37;2560:2;2549:9;2545:18;2527:37;:::i;2575:266::-;;;2704:2;2692:9;2683:7;2679:23;2675:32;2672:2;;;2725:6;2717;2710:22;2672:2;2753:31;2774:9;2753:31;:::i;:::-;2743:41;2831:2;2816:18;;;;2803:32;;-1:-1:-1;;;2662:179:1:o;2846:1073::-;;;2997:2;2985:9;2976:7;2972:23;2968:32;2965:2;;;3018:6;3010;3003:22;2965:2;3063:9;3050:23;3092:18;3133:2;3125:6;3122:14;3119:2;;;3154:6;3146;3139:22;3119:2;3197:6;3186:9;3182:22;3172:32;;3242:7;3235:4;3231:2;3227:13;3223:27;3213:2;;3269:6;3261;3254:22;3213:2;3310;3297:16;3332:4;3355:2;3351;3348:10;3345:2;;;3361:9;3345:2;3399;3395;3391:11;3381:21;;3422:27;3445:2;3441;3437:11;3422:27;:::i;:::-;3483:15;;;3514:12;;;;3546:11;;;3576;;;3572:20;;3569:33;-1:-1:-1;3566:2:1;;;3620:6;3612;3605:22;3566:2;3647:6;3638:15;;3662:171;3676:2;3673:1;3670:9;3662:171;;;3733:25;3754:3;3733:25;:::i;:::-;3721:38;;3694:1;3687:9;;;;;3779:12;;;;3811;;3662:171;;;-1:-1:-1;3852:5:1;-1:-1:-1;3876:37:1;;-1:-1:-1;3894:18:1;;;3876:37;:::i;:::-;3866:47;;;;;;2955:964;;;;;:::o;3924:257::-;;4035:2;4023:9;4014:7;4010:23;4006:32;4003:2;;;4056:6;4048;4041:22;4003:2;4100:9;4087:23;4119:32;4145:5;4119:32;:::i;4186:261::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4366:9;4360:16;4385:32;4411:5;4385:32;:::i;4452:482::-;;4574:2;4562:9;4553:7;4549:23;4545:32;4542:2;;;4595:6;4587;4580:22;4542:2;4640:9;4627:23;4673:18;4665:6;4662:30;4659:2;;;4710:6;4702;4695:22;4659:2;4738:22;;4791:4;4783:13;;4779:27;-1:-1:-1;4769:2:1;;4825:6;4817;4810:22;4769:2;4853:75;4920:7;4915:2;4902:16;4897:2;4893;4889:11;4853:75;:::i;4939:190::-;;5051:2;5039:9;5030:7;5026:23;5022:32;5019:2;;;5072:6;5064;5057:22;5019:2;-1:-1:-1;5100:23:1;;5009:120;-1:-1:-1;5009:120:1:o;5134:259::-;;5215:5;5209:12;5242:6;5237:3;5230:19;5258:63;5314:6;5307:4;5302:3;5298:14;5291:4;5284:5;5280:16;5258:63;:::i;:::-;5375:2;5354:15;-1:-1:-1;;5350:29:1;5341:39;;;;5382:4;5337:50;;5185:208;-1:-1:-1;;5185:208:1:o;5398:274::-;;5565:6;5559:13;5581:53;5627:6;5622:3;5615:4;5607:6;5603:17;5581:53;:::i;:::-;5650:16;;;;;5535:137;-1:-1:-1;;5535:137:1:o;5958:637::-;;6276:6;6270:13;6292:53;6338:6;6333:3;6326:4;6318:6;6314:17;6292:53;:::i;:::-;6408:13;;6367:16;;;;6430:57;6408:13;6367:16;6464:4;6452:17;;6430:57;:::i;:::-;-1:-1:-1;;;6509:20:1;;6538:22;;;6587:1;6576:13;;6246:349;-1:-1:-1;;;;6246:349:1:o;6600:203::-;-1:-1:-1;;;;;6764:32:1;;;;6746:51;;6734:2;6719:18;;6701:102::o;6808:506::-;-1:-1:-1;;;;;7093:15:1;;;7075:34;;7145:15;;7140:2;7125:18;;7118:43;7192:2;7177:18;;7170:34;;;7240:3;7235:2;7220:18;;7213:31;;;6808:506;;7261:47;;7288:19;;7280:6;7261:47;:::i;:::-;7253:55;7027:287;-1:-1:-1;;;;;;7027:287:1:o;7319:635::-;7490:2;7542:21;;;7612:13;;7515:18;;;7634:22;;;7319:635;;7490:2;7713:15;;;;7687:2;7672:18;;;7319:635;7759:169;7773:6;7770:1;7767:13;7759:169;;;7834:13;;7822:26;;7903:15;;;;7868:12;;;;7795:1;7788:9;7759:169;;;-1:-1:-1;7945:3:1;;7470:484;-1:-1:-1;;;;;;7470:484:1:o;7959:187::-;8124:14;;8117:22;8099:41;;8087:2;8072:18;;8054:92::o;8151:221::-;;8300:2;8289:9;8282:21;8320:46;8362:2;8351:9;8347:18;8339:6;8320:46;:::i;8377:398::-;8579:2;8561:21;;;8618:2;8598:18;;;8591:30;8657:34;8652:2;8637:18;;8630:62;-1:-1:-1;;;8723:2:1;8708:18;;8701:32;8765:3;8750:19;;8551:224::o;8780:414::-;8982:2;8964:21;;;9021:2;9001:18;;;8994:30;9060:34;9055:2;9040:18;;9033:62;-1:-1:-1;;;9126:2:1;9111:18;;9104:48;9184:3;9169:19;;8954:240::o;9199:402::-;9401:2;9383:21;;;9440:2;9420:18;;;9413:30;9479:34;9474:2;9459:18;;9452:62;-1:-1:-1;;;9545:2:1;9530:18;;9523:36;9591:3;9576:19;;9373:228::o;9606:352::-;9808:2;9790:21;;;9847:2;9827:18;;;9820:30;9886;9881:2;9866:18;;9859:58;9949:2;9934:18;;9780:178::o;9963:351::-;10165:2;10147:21;;;10204:2;10184:18;;;10177:30;10243:29;10238:2;10223:18;;10216:57;10305:2;10290:18;;10137:177::o;10319:400::-;10521:2;10503:21;;;10560:2;10540:18;;;10533:30;10599:34;10594:2;10579:18;;10572:62;-1:-1:-1;;;10665:2:1;10650:18;;10643:34;10709:3;10694:19;;10493:226::o;10724:349::-;10926:2;10908:21;;;10965:2;10945:18;;;10938:30;11004:27;10999:2;10984:18;;10977:55;11064:2;11049:18;;10898:175::o;11078:350::-;11280:2;11262:21;;;11319:2;11299:18;;;11292:30;11358:28;11353:2;11338:18;;11331:56;11419:2;11404:18;;11252:176::o;11433:355::-;11635:2;11617:21;;;11674:2;11654:18;;;11647:30;11713:33;11708:2;11693:18;;11686:61;11779:2;11764:18;;11607:181::o;11793:402::-;11995:2;11977:21;;;12034:2;12014:18;;;12007:30;12073:34;12068:2;12053:18;;12046:62;-1:-1:-1;;;12139:2:1;12124:18;;12117:36;12185:3;12170:19;;11967:228::o;12200:408::-;12402:2;12384:21;;;12441:2;12421:18;;;12414:30;12480:34;12475:2;12460:18;;12453:62;-1:-1:-1;;;12546:2:1;12531:18;;12524:42;12598:3;12583:19;;12374:234::o;12613:420::-;12815:2;12797:21;;;12854:2;12834:18;;;12827:30;12893:34;12888:2;12873:18;;12866:62;12964:26;12959:2;12944:18;;12937:54;13023:3;13008:19;;12787:246::o;13038:406::-;13240:2;13222:21;;;13279:2;13259:18;;;13252:30;13318:34;13313:2;13298:18;;13291:62;-1:-1:-1;;;13384:2:1;13369:18;;13362:40;13434:3;13419:19;;13212:232::o;13449:406::-;13651:2;13633:21;;;13690:2;13670:18;;;13663:30;13729:34;13724:2;13709:18;;13702:62;-1:-1:-1;;;13795:2:1;13780:18;;13773:40;13845:3;13830:19;;13623:232::o;13860:398::-;14062:2;14044:21;;;14101:2;14081:18;;;14074:30;14140:34;14135:2;14120:18;;14113:62;-1:-1:-1;;;14206:2:1;14191:18;;14184:32;14248:3;14233:19;;14034:224::o;14263:356::-;14465:2;14447:21;;;14484:18;;;14477:30;14543:34;14538:2;14523:18;;14516:62;14610:2;14595:18;;14437:182::o;14624:397::-;14826:2;14808:21;;;14865:2;14845:18;;;14838:30;14904:34;14899:2;14884:18;;14877:62;-1:-1:-1;;;14970:2:1;14955:18;;14948:31;15011:3;14996:19;;14798:223::o;15026:408::-;15228:2;15210:21;;;15267:2;15247:18;;;15240:30;15306:34;15301:2;15286:18;;15279:62;-1:-1:-1;;;15372:2:1;15357:18;;15350:42;15424:3;15409:19;;15200:234::o;15439:356::-;15641:2;15623:21;;;15660:18;;;15653:30;15719:34;15714:2;15699:18;;15692:62;15786:2;15771:18;;15613:182::o;15800:415::-;16002:2;15984:21;;;16041:2;16021:18;;;16014:30;16080:34;16075:2;16060:18;;16053:62;-1:-1:-1;;;16146:2:1;16131:18;;16124:49;16205:3;16190:19;;15974:241::o;16220:405::-;16422:2;16404:21;;;16461:2;16441:18;;;16434:30;16500:34;16495:2;16480:18;;16473:62;-1:-1:-1;;;16566:2:1;16551:18;;16544:39;16615:3;16600:19;;16394:231::o;16630:411::-;16832:2;16814:21;;;16871:2;16851:18;;;16844:30;16910:34;16905:2;16890:18;;16883:62;-1:-1:-1;;;16976:2:1;16961:18;;16954:45;17031:3;17016:19;;16804:237::o;17046:397::-;17248:2;17230:21;;;17287:2;17267:18;;;17260:30;17326:34;17321:2;17306:18;;17299:62;-1:-1:-1;;;17392:2:1;17377:18;;17370:31;17433:3;17418:19;;17220:223::o;17448:413::-;17650:2;17632:21;;;17689:2;17669:18;;;17662:30;17728:34;17723:2;17708:18;;17701:62;-1:-1:-1;;;17794:2:1;17779:18;;17772:47;17851:3;17836:19;;17622:239::o;17866:353::-;18068:2;18050:21;;;18107:2;18087:18;;;18080:30;18146:31;18141:2;18126:18;;18119:59;18210:2;18195:18;;18040:179::o;18224:356::-;18426:2;18408:21;;;18445:18;;;18438:30;18504:34;18499:2;18484:18;;18477:62;18571:2;18556:18;;18398:182::o;18585:177::-;18731:25;;;18719:2;18704:18;;18686:76::o;18767:242::-;18837:2;18831:9;18867:17;;;18914:18;18899:34;;18935:22;;;18896:62;18893:2;;;18961:9;18893:2;18988;18981:22;18811:198;;-1:-1:-1;18811:198:1:o;19014:258::-;19086:1;19096:113;19110:6;19107:1;19104:13;19096:113;;;19186:11;;;19180:18;19167:11;;;19160:39;19132:2;19125:10;19096:113;;;19227:6;19224:1;19221:13;19218:2;;;-1:-1:-1;;19262:1:1;19244:16;;19237:27;19067:205::o;19277:133::-;-1:-1:-1;;;;;;19353:32:1;;19343:43;;19333:2;;19400:1;19397;19390:12
Swarm Source
ipfs://963c9faf337a38b7382fffe697e1c256e9382b2d1e5e2260791213a3e52c3dce
Loading...
Loading
Loading...
Loading
OVERVIEW
It is known that buds find their way toward helpful Beanies.Loading...
Loading
Net Worth in USD
$0.00
Net Worth in MOVR
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.