Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0.0198 ETH
Eth Value
$40.27 (@ $2,033.82/ETH)Latest 13 from a total of 13 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Release | 15920160 | 1211 days ago | IN | 0 ETH | 0.00089534 | ||||
| Release | 15920157 | 1211 days ago | IN | 0 ETH | 0.00088503 | ||||
| Release | 15920152 | 1211 days ago | IN | 0 ETH | 0.00091371 | ||||
| Release | 15920148 | 1211 days ago | IN | 0 ETH | 0.00096408 | ||||
| Release | 15735834 | 1236 days ago | IN | 0 ETH | 0.000977 | ||||
| Release | 15524422 | 1266 days ago | IN | 0 ETH | 0.00069072 | ||||
| Release | 15517577 | 1267 days ago | IN | 0 ETH | 0.00033178 | ||||
| Release | 15517574 | 1267 days ago | IN | 0 ETH | 0.0004254 | ||||
| _modify Payee | 15517548 | 1267 days ago | IN | 0 ETH | 0.00045491 | ||||
| Release | 15517543 | 1267 days ago | IN | 0 ETH | 0.00044214 | ||||
| Release | 15450646 | 1278 days ago | IN | 0 ETH | 0.00078463 | ||||
| Release | 15450109 | 1278 days ago | IN | 0 ETH | 0.00087633 | ||||
| Release | 15448517 | 1278 days ago | IN | 0 ETH | 0.00188101 |
Latest 15 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 15920160 | 1211 days ago | 0.018 ETH | ||||
| Transfer | 15920157 | 1211 days ago | 0.045 ETH | ||||
| Transfer | 15920152 | 1211 days ago | 0.009 ETH | ||||
| Transfer | 15920148 | 1211 days ago | 0.06 ETH | ||||
| Transfer | 15920131 | 1211 days ago | 0.15 ETH | ||||
| Transfer | 15735834 | 1236 days ago | 0.0612 ETH | ||||
| Transfer | 15524422 | 1266 days ago | 0.054 ETH | ||||
| Transfer | 15517577 | 1267 days ago | 0.072 ETH | ||||
| Transfer | 15517574 | 1267 days ago | 0.0306 ETH | ||||
| Transfer | 15517567 | 1267 days ago | 0.18 ETH | ||||
| Transfer | 15517543 | 1267 days ago | 0.0198 ETH | ||||
| Transfer | 15450646 | 1278 days ago | 0.0396 ETH | ||||
| Transfer | 15450109 | 1278 days ago | 0.099 ETH | ||||
| Transfer | 15448517 | 1278 days ago | 0.132 ETH | ||||
| Transfer | 15448491 | 1278 days ago | 0.33 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PAYMENTS_VoodooLabs
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-07-30
*/
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/draft-IERC20Permit.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @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);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
uint256 amount
) external returns (bool);
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/utils/SafeERC20.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
// File: contracts/PAYMENTS_VoodooLabs.sol
pragma solidity ^0.8.7;
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by the contract.
*
* The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
* an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the
* time of contract deployment and can't be updated thereafter.
*
* `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
* function.
*
* NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and
* tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you
* to run tests before sending real value to this contract.
*/
contract PAYMENTS_VoodooLabs is Context, Ownable {
event PayeeAdded(address account, uint256 shares);
event PaymentReleased(address to, uint256 amount);
event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount);
event PaymentReceived(address from, uint256 amount);
uint256 private _totalShares;
uint256 private _totalReleased;
mapping(address => uint256) private _shares;
mapping(address => uint256) private _released;
address[] private _payees;
mapping(IERC20 => uint256) private _erc20TotalReleased;
mapping(IERC20 => mapping(address => uint256)) private _erc20Released;
/**
* @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
* the matching position in the `shares` array.
*
* All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
* duplicates in `payees`.
*/
constructor(address[] memory payees, uint256[] memory shares_) payable {
require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
require(payees.length > 0, "PaymentSplitter: no payees");
for (uint256 i = 0; i < payees.length; i++) {
_addPayee(payees[i], shares_[i]);
}
}
/**
* @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
* reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
* reliability of the events, and not the actual splitting of Ether.
*
* To learn more about this see the Solidity documentation for
* https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
* functions].
*/
receive() external payable virtual {
emit PaymentReceived(_msgSender(), msg.value);
}
/**
* @dev Getter for the total shares held by payees.
*/
function totalShares() public view returns (uint256) {
return _totalShares;
}
/**
* @dev Getter for the total amount of Ether already released.
*/
function totalReleased() public view returns (uint256) {
return _totalReleased;
}
/**
* @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20
* contract.
*/
function totalReleased(IERC20 token) public view returns (uint256) {
return _erc20TotalReleased[token];
}
/**
* @dev Getter for the amount of shares held by an account.
*/
function shares(address account) public view returns (uint256) {
return _shares[account];
}
/**
* @dev Getter for the amount of Ether already released to a payee.
*/
function released(address account) public view returns (uint256) {
return _released[account];
}
/**
* @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an
* IERC20 contract.
*/
function released(IERC20 token, address account) public view returns (uint256) {
return _erc20Released[token][account];
}
/**
* @dev Getter for the address of the payee number `index`.
*/
function payee(uint256 index) public view returns (address) {
return _payees[index];
}
/**
* @dev Getter for the amount of payee's releasable Ether.
*/
function releasable(address account) public view returns (uint256) {
uint256 totalReceived = address(this).balance + totalReleased();
return _pendingPayment(account, totalReceived, released(account));
}
/**
* @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an
* IERC20 contract.
*/
function releasable(IERC20 token, address account) public view returns (uint256) {
uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token);
return _pendingPayment(account, totalReceived, released(token, account));
}
/**
* @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
* total shares and their previous withdrawals.
*/
function release(address payable account) public virtual {
require(_shares[account] > 0, "PaymentSplitter: account has no shares");
uint256 payment = releasable(account);
require(payment != 0, "PaymentSplitter: account is not due payment");
_released[account] += payment;
_totalReleased += payment;
Address.sendValue(account, payment);
emit PaymentReleased(account, payment);
}
/**
* @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their
* percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20
* contract.
*/
function release(IERC20 token, address account) public virtual {
require(_shares[account] > 0, "PaymentSplitter: account has no shares");
uint256 payment = releasable(token, account);
require(payment != 0, "PaymentSplitter: account is not due payment");
_erc20Released[token][account] += payment;
_erc20TotalReleased[token] += payment;
SafeERC20.safeTransfer(token, account, payment);
emit ERC20PaymentReleased(token, account, payment);
}
/**
* @dev internal logic for computing the pending payment of an `account` given the token historical balances and
* already released amounts.
*/
function _pendingPayment(
address account,
uint256 totalReceived,
uint256 alreadyReleased
) private view returns (uint256) {
return (totalReceived * _shares[account]) / _totalShares - alreadyReleased;
}
/**
* @dev Add a new payee to the contract.
* @param account The address of the payee to add.
* @param shares_ The number of shares owned by the payee.
*/
function _addPayee(address account, uint256 shares_) private {
require(account != address(0), "PaymentSplitter: account is the zero address");
require(shares_ > 0, "PaymentSplitter: shares are 0");
require(_shares[account] == 0, "PaymentSplitter: account already has shares");
_payees.push(account);
_shares[account] = shares_;
_totalShares = _totalShares + shares_;
emit PayeeAdded(account, shares_);
}
/**
* @dev Modify existing payee in the contract.
* @param addressIndex The index of the old address of the payee to modify.
* @param newAddress The new address of the payee.
*/
function _modifyPayee(uint256 addressIndex, address newAddress) public onlyOwner {
address oldAddress = _payees[addressIndex];
uint256 shareAmount = _shares[oldAddress];
_payees[addressIndex] = newAddress;
_shares[newAddress] = shareAmount;
_shares[oldAddress] = 0;
}
/**
* @dev The contract modifier / developer's website.
*/
function contractDev() public pure returns(string memory){
string memory dev = unicode"🐸 HalfSuperShop.com 🐸";
return dev;
}
}
/**
[
"0x7CE701EfD548BeCeF46fDc61091590D6d6e662Bb",
"0x98034Caab8A8B826B0667720A9F8F1b455E12B64",
"0x617c3D81F96f82636fa9688D375991F9654B8018",
"0x8bEae46f6E7bE98A8F4e5b0C312d03992EC2b5B2",
"0x5B17E6E7e290E77e9fDfeE0aAd82B570aC9a1c1A"
]
*/
/**
[
40,
6,
30,
12,
12
]
payees[0] = 0x7CE701EfD548BeCeF46fDc61091590D6d6e662Bb; //Admin 40%
payees[1] = 0x98034Caab8A8B826B0667720A9F8F1b455E12B64; //6% wallet
payees[2] = 0x617c3D81F96f82636fa9688D375991F9654B8018; //30% wallet
payees[3] = 0x8bEae46f6E7bE98A8F4e5b0C312d03992EC2b5B2; //12% wallet
payees[4] = 0x5B17E6E7e290E77e9fDfeE0aAd82B570aC9a1c1A; //12% wallet
*/Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares_","type":"uint256[]"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"inputs":[{"internalType":"uint256","name":"addressIndex","type":"uint256"},{"internalType":"address","name":"newAddress","type":"address"}],"name":"_modifyPayee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractDev","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526040516200157c3803806200157c833981016040819052620000269162000422565b62000031336200016b565b8051825114620000a35760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620000f65760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200009a565b60005b825181101562000162576200014d8382815181106200011c576200011c620005ae565b6020026020010151838381518110620001395762000139620005ae565b6020026020010151620001bb60201b60201c565b8062000159816200057a565b915050620000f9565b505050620005da565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002285760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200009a565b600081116200027a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200009a565b6001600160a01b03821660009081526003602052604090205415620002f65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200009a565b6005805460018082019092557f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319166001600160a01b0385169081179091556000908152600360205260409020829055546200035f9082906200055f565b600155604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b600082601f830112620003ba57600080fd5b81516020620003d3620003cd8362000539565b62000506565b80838252828201915082860187848660051b8901011115620003f457600080fd5b60005b858110156200041557815184529284019290840190600101620003f7565b5090979650505050505050565b600080604083850312156200043657600080fd5b82516001600160401b03808211156200044e57600080fd5b818501915085601f8301126200046357600080fd5b8151602062000476620003cd8362000539565b8083825282820191508286018a848660051b89010111156200049757600080fd5b600096505b84871015620004d25780516001600160a01b0381168114620004bd57600080fd5b8352600196909601959183019183016200049c565b5091880151919650909350505080821115620004ed57600080fd5b50620004fc85828601620003a8565b9150509250929050565b604051601f8201601f191681016001600160401b0381118282101715620005315762000531620005c4565b604052919050565b60006001600160401b03821115620005555762000555620005c4565b5060051b60200190565b6000821982111562000575576200057562000598565b500190565b600060001982141562000591576200059162000598565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610f9280620005ea6000396000f3fe6080604052600436106100f75760003560e01c80639852595c1161008a578063d79779b211610059578063d79779b214610354578063e33b7de31461038a578063f2fde38b1461039f578063ff388d4c146103bf57600080fd5b80639852595c146102a8578063a3f8eace146102de578063c45ac050146102fe578063ce7c2ac21461031e57600080fd5b8063715018a6116100c6578063715018a6146101f15780637724bad8146102065780638b83209b146102525780638da5cb5b1461028a57600080fd5b806319165587146101455780633a98ef3914610167578063406072a91461018b57806348b75044146101d157600080fd5b36610140577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561015157600080fd5b50610165610160366004610ccc565b6103df565b005b34801561017357600080fd5b506001545b6040519081526020015b60405180910390f35b34801561019757600080fd5b506101786101a6366004610d0b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156101dd57600080fd5b506101656101ec366004610d0b565b6104de565b3480156101fd57600080fd5b506101656105fe565b34801561021257600080fd5b50604080518082018252601b81527ff09f90b82048616c66537570657253686f702e636f6d20f09f90b80000000000602082015290516101829190610db7565b34801561025e57600080fd5b5061027261026d366004610d44565b610612565b6040516001600160a01b039091168152602001610182565b34801561029657600080fd5b506000546001600160a01b0316610272565b3480156102b457600080fd5b506101786102c3366004610ccc565b6001600160a01b031660009081526004602052604090205490565b3480156102ea57600080fd5b506101786102f9366004610ccc565b610642565b34801561030a57600080fd5b50610178610319366004610d0b565b61068a565b34801561032a57600080fd5b50610178610339366004610ccc565b6001600160a01b031660009081526003602052604090205490565b34801561036057600080fd5b5061017861036f366004610ccc565b6001600160a01b031660009081526006602052604090205490565b34801561039657600080fd5b50600254610178565b3480156103ab57600080fd5b506101656103ba366004610ccc565b610764565b3480156103cb57600080fd5b506101656103da366004610d76565b6107dd565b6001600160a01b03811660009081526003602052604090205461041d5760405162461bcd60e51b815260040161041490610dea565b60405180910390fd5b600061042882610642565b9050806104475760405162461bcd60e51b815260040161041490610e30565b6001600160a01b0382166000908152600460205260408120805483929061046f908490610e7b565b9250508190555080600260008282546104889190610e7b565b9091555061049890508282610882565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6001600160a01b0381166000908152600360205260409020546105135760405162461bcd60e51b815260040161041490610dea565b600061051f838361068a565b90508061053e5760405162461bcd60e51b815260040161041490610e30565b6001600160a01b03808416600090815260076020908152604080832093861683529290529081208054839290610575908490610e7b565b90915550506001600160a01b038316600090815260066020526040812080548392906105a2908490610e7b565b909155506105b390508383836109a0565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6106066109f2565b6106106000610a4c565b565b60006005828154811061062757610627610f31565b6000918252602090912001546001600160a01b031692915050565b60008061064e60025490565b6106589047610e7b565b9050610683838261067e866001600160a01b031660009081526004602052604090205490565b610a9c565b9392505050565b6001600160a01b03821660009081526006602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a082319060240160206040518083038186803b1580156106e457600080fd5b505afa1580156106f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071c9190610d5d565b6107269190610e7b565b6001600160a01b0380861660009081526007602090815260408083209388168352929052205490915061075c9084908390610a9c565b949350505050565b61076c6109f2565b6001600160a01b0381166107d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b6107da81610a4c565b50565b6107e56109f2565b6000600583815481106107fa576107fa610f31565b60009182526020808320909101546001600160a01b031680835260039091526040909120546005805492935090918491908690811061083b5761083b610f31565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559482168152600390945260408085209290925591909116825281205550565b804710156108d25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610414565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b606091505b505090508061099b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610414565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261099b908490610ada565b6000546001600160a01b031633146106105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b03841660009081526003602052604081205490918391610ac69086610eb5565b610ad09190610e93565b61075c9190610ed4565b6000610b2f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610bac9092919063ffffffff16565b80519091501561099b5780806020019051810190610b4d9190610ce9565b61099b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610414565b606061075c848460008585600080866001600160a01b03168587604051610bd39190610d9b565b60006040518083038185875af1925050503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b5091509150610c2687838387610c31565b979650505050505050565b60608315610c9d578251610c96576001600160a01b0385163b610c965760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610414565b508161075c565b61075c8383815115610cb25781518083602001fd5b8060405162461bcd60e51b81526004016104149190610db7565b600060208284031215610cde57600080fd5b813561068381610f47565b600060208284031215610cfb57600080fd5b8151801515811461068357600080fd5b60008060408385031215610d1e57600080fd5b8235610d2981610f47565b91506020830135610d3981610f47565b809150509250929050565b600060208284031215610d5657600080fd5b5035919050565b600060208284031215610d6f57600080fd5b5051919050565b60008060408385031215610d8957600080fd5b823591506020830135610d3981610f47565b60008251610dad818460208701610eeb565b9190910192915050565b6020815260008251806020840152610dd6816040850160208701610eeb565b601f01601f19169190910160400192915050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60008219821115610e8e57610e8e610f1b565b500190565b600082610eb057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610ecf57610ecf610f1b565b500290565b600082821015610ee657610ee6610f1b565b500390565b60005b83811015610f06578181015183820152602001610eee565b83811115610f15576000848401525b50505050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146107da57600080fdfea264697066735822122078a75af3ffbaf4785aec9a77e71b7ac5f401e1c092084db9ebe22a98da98880b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000050000000000000000000000007ce701efd548becef46fdc61091590d6d6e662bb00000000000000000000000098034caab8a8b826b0667720a9f8f1b455e12b64000000000000000000000000617c3d81f96f82636fa9688d375991f9654b80180000000000000000000000008beae46f6e7be98a8f4e5b0c312d03992ec2b5b20000000000000000000000005b17e6e7e290e77e9fdfee0aad82b570ac9a1c1a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c
Deployed Bytecode
0x6080604052600436106100f75760003560e01c80639852595c1161008a578063d79779b211610059578063d79779b214610354578063e33b7de31461038a578063f2fde38b1461039f578063ff388d4c146103bf57600080fd5b80639852595c146102a8578063a3f8eace146102de578063c45ac050146102fe578063ce7c2ac21461031e57600080fd5b8063715018a6116100c6578063715018a6146101f15780637724bad8146102065780638b83209b146102525780638da5cb5b1461028a57600080fd5b806319165587146101455780633a98ef3914610167578063406072a91461018b57806348b75044146101d157600080fd5b36610140577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b34801561015157600080fd5b50610165610160366004610ccc565b6103df565b005b34801561017357600080fd5b506001545b6040519081526020015b60405180910390f35b34801561019757600080fd5b506101786101a6366004610d0b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b3480156101dd57600080fd5b506101656101ec366004610d0b565b6104de565b3480156101fd57600080fd5b506101656105fe565b34801561021257600080fd5b50604080518082018252601b81527ff09f90b82048616c66537570657253686f702e636f6d20f09f90b80000000000602082015290516101829190610db7565b34801561025e57600080fd5b5061027261026d366004610d44565b610612565b6040516001600160a01b039091168152602001610182565b34801561029657600080fd5b506000546001600160a01b0316610272565b3480156102b457600080fd5b506101786102c3366004610ccc565b6001600160a01b031660009081526004602052604090205490565b3480156102ea57600080fd5b506101786102f9366004610ccc565b610642565b34801561030a57600080fd5b50610178610319366004610d0b565b61068a565b34801561032a57600080fd5b50610178610339366004610ccc565b6001600160a01b031660009081526003602052604090205490565b34801561036057600080fd5b5061017861036f366004610ccc565b6001600160a01b031660009081526006602052604090205490565b34801561039657600080fd5b50600254610178565b3480156103ab57600080fd5b506101656103ba366004610ccc565b610764565b3480156103cb57600080fd5b506101656103da366004610d76565b6107dd565b6001600160a01b03811660009081526003602052604090205461041d5760405162461bcd60e51b815260040161041490610dea565b60405180910390fd5b600061042882610642565b9050806104475760405162461bcd60e51b815260040161041490610e30565b6001600160a01b0382166000908152600460205260408120805483929061046f908490610e7b565b9250508190555080600260008282546104889190610e7b565b9091555061049890508282610882565b604080516001600160a01b0384168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a15050565b6001600160a01b0381166000908152600360205260409020546105135760405162461bcd60e51b815260040161041490610dea565b600061051f838361068a565b90508061053e5760405162461bcd60e51b815260040161041490610e30565b6001600160a01b03808416600090815260076020908152604080832093861683529290529081208054839290610575908490610e7b565b90915550506001600160a01b038316600090815260066020526040812080548392906105a2908490610e7b565b909155506105b390508383836109a0565b604080516001600160a01b038481168252602082018490528516917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a2505050565b6106066109f2565b6106106000610a4c565b565b60006005828154811061062757610627610f31565b6000918252602090912001546001600160a01b031692915050565b60008061064e60025490565b6106589047610e7b565b9050610683838261067e866001600160a01b031660009081526004602052604090205490565b610a9c565b9392505050565b6001600160a01b03821660009081526006602052604081205481906040516370a0823160e01b81523060048201526001600160a01b038616906370a082319060240160206040518083038186803b1580156106e457600080fd5b505afa1580156106f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071c9190610d5d565b6107269190610e7b565b6001600160a01b0380861660009081526007602090815260408083209388168352929052205490915061075c9084908390610a9c565b949350505050565b61076c6109f2565b6001600160a01b0381166107d15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610414565b6107da81610a4c565b50565b6107e56109f2565b6000600583815481106107fa576107fa610f31565b60009182526020808320909101546001600160a01b031680835260039091526040909120546005805492935090918491908690811061083b5761083b610f31565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559482168152600390945260408085209290925591909116825281205550565b804710156108d25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610414565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461091f576040519150601f19603f3d011682016040523d82523d6000602084013e610924565b606091505b505090508061099b5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610414565b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261099b908490610ada565b6000546001600160a01b031633146106105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610414565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001546001600160a01b03841660009081526003602052604081205490918391610ac69086610eb5565b610ad09190610e93565b61075c9190610ed4565b6000610b2f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610bac9092919063ffffffff16565b80519091501561099b5780806020019051810190610b4d9190610ce9565b61099b5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610414565b606061075c848460008585600080866001600160a01b03168587604051610bd39190610d9b565b60006040518083038185875af1925050503d8060008114610c10576040519150601f19603f3d011682016040523d82523d6000602084013e610c15565b606091505b5091509150610c2687838387610c31565b979650505050505050565b60608315610c9d578251610c96576001600160a01b0385163b610c965760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610414565b508161075c565b61075c8383815115610cb25781518083602001fd5b8060405162461bcd60e51b81526004016104149190610db7565b600060208284031215610cde57600080fd5b813561068381610f47565b600060208284031215610cfb57600080fd5b8151801515811461068357600080fd5b60008060408385031215610d1e57600080fd5b8235610d2981610f47565b91506020830135610d3981610f47565b809150509250929050565b600060208284031215610d5657600080fd5b5035919050565b600060208284031215610d6f57600080fd5b5051919050565b60008060408385031215610d8957600080fd5b823591506020830135610d3981610f47565b60008251610dad818460208701610eeb565b9190910192915050565b6020815260008251806020840152610dd6816040850160208701610eeb565b601f01601f19169190910160400192915050565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60008219821115610e8e57610e8e610f1b565b500190565b600082610eb057634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615610ecf57610ecf610f1b565b500290565b600082821015610ee657610ee6610f1b565b500390565b60005b83811015610f06578181015183820152602001610eee565b83811115610f15576000848401525b50505050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03811681146107da57600080fdfea264697066735822122078a75af3ffbaf4785aec9a77e71b7ac5f401e1c092084db9ebe22a98da98880b64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000050000000000000000000000007ce701efd548becef46fdc61091590d6d6e662bb00000000000000000000000098034caab8a8b826b0667720a9f8f1b455e12b64000000000000000000000000617c3d81f96f82636fa9688d375991f9654b80180000000000000000000000008beae46f6e7be98a8f4e5b0c312d03992ec2b5b20000000000000000000000005b17e6e7e290e77e9fdfee0aad82b570ac9a1c1a000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000280000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001e000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000c
-----Decoded View---------------
Arg [0] : payees (address[]): 0x7CE701EfD548BeCeF46fDc61091590D6d6e662Bb,0x98034Caab8A8B826B0667720A9F8F1b455E12B64,0x617c3D81F96f82636fa9688D375991F9654B8018,0x8bEae46f6E7bE98A8F4e5b0C312d03992EC2b5B2,0x5B17E6E7e290E77e9fDfeE0aAd82B570aC9a1c1A
Arg [1] : shares_ (uint256[]): 40,6,30,12,12
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 0000000000000000000000007ce701efd548becef46fdc61091590d6d6e662bb
Arg [4] : 00000000000000000000000098034caab8a8b826b0667720a9f8f1b455e12b64
Arg [5] : 000000000000000000000000617c3d81f96f82636fa9688d375991f9654b8018
Arg [6] : 0000000000000000000000008beae46f6e7be98a8f4e5b0c312d03992ec2b5b2
Arg [7] : 0000000000000000000000005b17e6e7e290e77e9fdfee0aad82b570ac9a1c1a
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [11] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [12] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000c
Deployed Bytecode Sourcemap
24417:7584:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26370:40;812:10;26370:40;;;-1:-1:-1;;;;;3072:32:1;;;3054:51;;26400:9:0;3136:2:1;3121:18;;3114:34;3027:18;26370:40:0;;;;;;;24417:7584;;;;;28891:453;;;;;;;;;;-1:-1:-1;28891:453:0;;;;;:::i;:::-;;:::i;:::-;;26501:91;;;;;;;;;;-1:-1:-1;26572:12:0;;26501:91;;;7520:25:1;;;7508:2;7493:18;26501:91:0;;;;;;;;27630:135;;;;;;;;;;-1:-1:-1;27630:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;27727:21:0;;;27700:7;27727:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;27630:135;29612:514;;;;;;;;;;-1:-1:-1;29612:514:0;;;;;:::i;:::-;;:::i;2882:103::-;;;;;;;;;;;;;:::i;31845:153::-;;;;;;;;;;-1:-1:-1;31913:56:0;;;;;;;;;;;;;;;;31845:153;;;;31913:56;31845:153;:::i;27856:100::-;;;;;;;;;;-1:-1:-1;27856:100:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2828:32:1;;;2810:51;;2798:2;2783:18;27856:100:0;2664:203:1;2234:87:0;;;;;;;;;;-1:-1:-1;2280:7:0;2307:6;-1:-1:-1;;;;;2307:6:0;2234:87;;27352:109;;;;;;;;;;-1:-1:-1;27352:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;27435:18:0;27408:7;27435:18;;;:9;:18;;;;;;;27352:109;28046:225;;;;;;;;;;-1:-1:-1;28046:225:0;;;;;:::i;:::-;;:::i;28431:260::-;;;;;;;;;;-1:-1:-1;28431:260:0;;;;;:::i;:::-;;:::i;27148:105::-;;;;;;;;;;-1:-1:-1;27148:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;27229:16:0;27202:7;27229:16;;;:7;:16;;;;;;;27148:105;26938:119;;;;;;;;;;-1:-1:-1;26938:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;27023:26:0;26996:7;27023:26;;;:19;:26;;;;;;;26938:119;26686:95;;;;;;;;;;-1:-1:-1;26759:14:0;;26686:95;;3140:201;;;;;;;;;;-1:-1:-1;3140:201:0;;;;;:::i;:::-;;:::i;31432:329::-;;;;;;;;;;-1:-1:-1;31432:329:0;;;;;:::i;:::-;;:::i;28891:453::-;-1:-1:-1;;;;;28967:16:0;;28986:1;28967:16;;;:7;:16;;;;;;28959:71;;;;-1:-1:-1;;;28959:71:0;;;;;;;:::i;:::-;;;;;;;;;29043:15;29061:19;29072:7;29061:10;:19::i;:::-;29043:37;-1:-1:-1;29101:12:0;29093:68;;;;-1:-1:-1;;;29093:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29174:18:0;;;;;;:9;:18;;;;;:29;;29196:7;;29174:18;:29;;29196:7;;29174:29;:::i;:::-;;;;;;;;29232:7;29214:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;29252:35:0;;-1:-1:-1;29270:7:0;29279;29252:17;:35::i;:::-;29303:33;;;-1:-1:-1;;;;;3072:32:1;;3054:51;;3136:2;3121:18;;3114:34;;;29303:33:0;;3027:18:1;29303:33:0;;;;;;;28948:396;28891:453;:::o;29612:514::-;-1:-1:-1;;;;;29694:16:0;;29713:1;29694:16;;;:7;:16;;;;;;29686:71;;;;-1:-1:-1;;;29686:71:0;;;;;;;:::i;:::-;29770:15;29788:26;29799:5;29806:7;29788:10;:26::i;:::-;29770:44;-1:-1:-1;29835:12:0;29827:68;;;;-1:-1:-1;;;29827:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29908:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;29942:7;;29908:21;:41;;29942:7;;29908:41;:::i;:::-;;;;-1:-1:-1;;;;;;;29960:26:0;;;;;;:19;:26;;;;;:37;;29990:7;;29960:26;:37;;29990:7;;29960:37;:::i;:::-;;;;-1:-1:-1;30010:47:0;;-1:-1:-1;30033:5:0;30040:7;30049;30010:22;:47::i;:::-;30073:45;;;-1:-1:-1;;;;;3072:32:1;;;3054:51;;3136:2;3121:18;;3114:34;;;30073:45:0;;;;;3027:18:1;30073:45:0;;;;;;;29675:451;29612:514;;:::o;2882:103::-;2120:13;:11;:13::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;:::-;2882:103::o:0;27856:100::-;27907:7;27934;27942:5;27934:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27934:14:0;;27856:100;-1:-1:-1;;27856:100:0:o;28046:225::-;28104:7;28124:21;28172:15;26759:14;;;26686:95;28172:15;28148:39;;:21;:39;:::i;:::-;28124:63;;28205:58;28221:7;28230:13;28245:17;28254:7;-1:-1:-1;;;;;27435:18:0;27408:7;27435:18;;;:9;:18;;;;;;;27352:109;28245:17;28205:15;:58::i;:::-;28198:65;28046:225;-1:-1:-1;;;28046:225:0:o;28431:260::-;-1:-1:-1;;;;;27023:26:0;;28503:7;27023:26;;;:19;:26;;;;;;28503:7;;28547:30;;-1:-1:-1;;;28547:30:0;;28571:4;28547:30;;;2810:51:1;-1:-1:-1;;;;;28547:15:0;;;;;2783:18:1;;28547:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;-1:-1:-1;;;;;27727:21:0;;;27700:7;27727:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;28523:77;;-1:-1:-1;28618:65:0;;28634:7;;28523:77;;28205:15;:58::i;28618:65::-;28611:72;28431:260;-1:-1:-1;;;;28431:260:0:o;3140:201::-;2120:13;:11;:13::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;4028:2:1;3221:73:0::1;::::0;::::1;4010:21:1::0;4067:2;4047:18;;;4040:30;4106:34;4086:18;;;4079:62;-1:-1:-1;;;4157:18:1;;;4150:36;4203:19;;3221:73:0::1;3826:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;31432:329::-;2120:13;:11;:13::i;:::-;31524:18:::1;31545:7;31553:12;31545:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;31545:21:0::1;31599:19:::0;;;:7:::1;:19:::0;;;;;;;;31639:7:::1;:21:::0;;31545;;-1:-1:-1;31599:19:0;;31663:10;;31639:7;31647:12;;31639:21;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:34:::0;;-1:-1:-1;;;;;;31639:34:0::1;-1:-1:-1::0;;;;;31639:34:0;;::::1;;::::0;;31684:19;;::::1;::::0;;:7:::1;:19:::0;;;;;;;:33;;;;31730:19;;;::::1;::::0;;;;:23;-1:-1:-1;31432:329:0:o;6246:317::-;6361:6;6336:21;:31;;6328:73;;;;-1:-1:-1;;;6328:73:0;;5269:2:1;6328:73:0;;;5251:21:1;5308:2;5288:18;;;5281:30;5347:31;5327:18;;;5320:59;5396:18;;6328:73:0;5067:353:1;6328:73:0;6415:12;6433:9;-1:-1:-1;;;;;6433:14:0;6455:6;6433:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6414:52;;;6485:7;6477:78;;;;-1:-1:-1;;;6477:78:0;;4842:2:1;6477:78:0;;;4824:21:1;4881:2;4861:18;;;4854:30;4920:34;4900:18;;;4893:62;4991:28;4971:18;;;4964:56;5037:19;;6477:78:0;4640:422:1;6477:78:0;6317:246;6246:317;;:::o;19297:211::-;19441:58;;;-1:-1:-1;;;;;3072:32:1;;19441:58:0;;;3054:51:1;3121:18;;;;3114:34;;;19441:58:0;;;;;;;;;;3027:18:1;;;;19441:58:0;;;;;;;;-1:-1:-1;;;;;19441:58:0;-1:-1:-1;;;19441:58:0;;;19414:86;;19434:5;;19414:19;:86::i;2399:132::-;2280:7;2307:6;-1:-1:-1;;;;;2307:6:0;812:10;2463:23;2455:68;;;;-1:-1:-1;;;2455:68:0;;6446:2:1;2455:68:0;;;6428:21:1;;;6465:18;;;6458:30;6524:34;6504:18;;;6497:62;6576:18;;2455:68:0;6244:356:1;3501:191:0;3575:16;3594:6;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;3644:40;;3594:6;;;;;;;3644:40;;3575:16;3644:40;3564:128;3501:191;:::o;30304:248::-;30514:12;;-1:-1:-1;;;;;30494:16:0;;30450:7;30494:16;;;:7;:16;;;;;;30450:7;;30529:15;;30478:32;;:13;:32;:::i;:::-;30477:49;;;;:::i;:::-;:67;;;;:::i;22364:716::-;22788:23;22814:69;22842:4;22814:69;;;;;;;;;;;;;;;;;22822:5;-1:-1:-1;;;;;22814:27:0;;;:69;;;;;:::i;:::-;22898:17;;22788:95;;-1:-1:-1;22898:21:0;22894:179;;22995:10;22984:30;;;;;;;;;;;;:::i;:::-;22976:85;;;;-1:-1:-1;;;22976:85:0;;7165:2:1;22976:85:0;;;7147:21:1;7204:2;7184:18;;;7177:30;7243:34;7223:18;;;7216:62;-1:-1:-1;;;7294:18:1;;;7287:40;7344:19;;22976:85:0;6963:406:1;7742:229:0;7879:12;7911:52;7933:6;7941:4;7947:1;7950:12;7879;9150;9164:23;9191:6;-1:-1:-1;;;;;9191:11:0;9210:5;9217:4;9191:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9149:73;;;;9240:69;9267:6;9275:7;9284:10;9296:12;9240:26;:69::i;:::-;9233:76;8862:455;-1:-1:-1;;;;;;;8862:455:0:o;11435:644::-;11620:12;11649:7;11645:427;;;11677:17;;11673:290;;-1:-1:-1;;;;;5280:19:0;;;11887:60;;;;-1:-1:-1;;;11887:60:0;;6807:2:1;11887:60:0;;;6789:21:1;6846:2;6826:18;;;6819:30;6885:31;6865:18;;;6858:59;6934:18;;11887:60:0;6605:353:1;11887:60:0;-1:-1:-1;11984:10:0;11977:17;;11645:427;12027:33;12035:10;12047:12;12782:17;;:21;12778:388;;13014:10;13008:17;13071:15;13058:10;13054:2;13050:19;13043:44;12778:388;13141:12;13134:20;;-1:-1:-1;;;13134:20:0;;;;;;;;:::i;14:247:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;526:277::-;593:6;646:2;634:9;625:7;621:23;617:32;614:52;;;662:1;659;652:12;614:52;694:9;688:16;747:5;740:13;733:21;726:5;723:32;713:60;;769:1;766;759:12;1074:402;1156:6;1164;1217:2;1205:9;1196:7;1192:23;1188:32;1185:52;;;1233:1;1230;1223:12;1185:52;1272:9;1259:23;1291:31;1316:5;1291:31;:::i;:::-;1341:5;-1:-1:-1;1398:2:1;1383:18;;1370:32;1411:33;1370:32;1411:33;:::i;:::-;1463:7;1453:17;;;1074:402;;;;;:::o;1481:180::-;1540:6;1593:2;1581:9;1572:7;1568:23;1564:32;1561:52;;;1609:1;1606;1599:12;1561:52;-1:-1:-1;1632:23:1;;1481:180;-1:-1:-1;1481:180:1:o;1666:184::-;1736:6;1789:2;1777:9;1768:7;1764:23;1760:32;1757:52;;;1805:1;1802;1795:12;1757:52;-1:-1:-1;1828:16:1;;1666:184;-1:-1:-1;1666:184:1:o;1855:315::-;1923:6;1931;1984:2;1972:9;1963:7;1959:23;1955:32;1952:52;;;2000:1;1997;1990:12;1952:52;2036:9;2023:23;2013:33;;2096:2;2085:9;2081:18;2068:32;2109:31;2134:5;2109:31;:::i;2175:274::-;2304:3;2342:6;2336:13;2358:53;2404:6;2399:3;2392:4;2384:6;2380:17;2358:53;:::i;:::-;2427:16;;;;;2175:274;-1:-1:-1;;2175:274:1:o;3438:383::-;3587:2;3576:9;3569:21;3550:4;3619:6;3613:13;3662:6;3657:2;3646:9;3642:18;3635:34;3678:66;3737:6;3732:2;3721:9;3717:18;3712:2;3704:6;3700:15;3678:66;:::i;:::-;3805:2;3784:15;-1:-1:-1;;3780:29:1;3765:45;;;;3812:2;3761:54;;3438:383;-1:-1:-1;;3438:383:1:o;4233:402::-;4435:2;4417:21;;;4474:2;4454:18;;;4447:30;4513:34;4508:2;4493:18;;4486:62;-1:-1:-1;;;4579:2:1;4564:18;;4557:36;4625:3;4610:19;;4233:402::o;5832:407::-;6034:2;6016:21;;;6073:2;6053:18;;;6046:30;6112:34;6107:2;6092:18;;6085:62;-1:-1:-1;;;6178:2:1;6163:18;;6156:41;6229:3;6214:19;;5832:407::o;7556:128::-;7596:3;7627:1;7623:6;7620:1;7617:13;7614:39;;;7633:18;;:::i;:::-;-1:-1:-1;7669:9:1;;7556:128::o;7689:217::-;7729:1;7755;7745:132;;7799:10;7794:3;7790:20;7787:1;7780:31;7834:4;7831:1;7824:15;7862:4;7859:1;7852:15;7745:132;-1:-1:-1;7891:9:1;;7689:217::o;7911:168::-;7951:7;8017:1;8013;8009:6;8005:14;8002:1;7999:21;7994:1;7987:9;7980:17;7976:45;7973:71;;;8024:18;;:::i;:::-;-1:-1:-1;8064:9:1;;7911:168::o;8084:125::-;8124:4;8152:1;8149;8146:8;8143:34;;;8157:18;;:::i;:::-;-1:-1:-1;8194:9:1;;8084:125::o;8214:258::-;8286:1;8296:113;8310:6;8307:1;8304:13;8296:113;;;8386:11;;;8380:18;8367:11;;;8360:39;8332:2;8325:10;8296:113;;;8427:6;8424:1;8421:13;8418:48;;;8462:1;8453:6;8448:3;8444:16;8437:27;8418:48;;8214:258;;;:::o;8477:127::-;8538:10;8533:3;8529:20;8526:1;8519:31;8569:4;8566:1;8559:15;8593:4;8590:1;8583:15;8609:127;8670:10;8665:3;8661:20;8658:1;8651:31;8701:4;8698:1;8691:15;8725:4;8722:1;8715:15;8741:131;-1:-1:-1;;;;;8816:31:1;;8806:42;;8796:70;;8862:1;8859;8852:12
Swarm Source
ipfs://78a75af3ffbaf4785aec9a77e71b7ac5f401e1c092084db9ebe22a98da98880b
Loading...
Loading
Loading...
Loading
Net Worth in USD
$40.22
Net Worth in ETH
0.019777
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $2,031.49 | 0.0198 | $40.22 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.