Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.316088572463618169 ETH
Eth Value
$1,072.13 (@ $3,391.87/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 67 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Release | 17908645 | 501 days ago | IN | 0 ETH | 0.00067206 | ||||
Release | 16578512 | 688 days ago | IN | 0 ETH | 0.0024299 | ||||
Transfer | 15272846 | 876 days ago | IN | 0.03129 ETH | 0.00024319 | ||||
Release | 14876800 | 941 days ago | IN | 0 ETH | 0.00279215 | ||||
Transfer | 14836780 | 947 days ago | IN | 0.0306 ETH | 0.00113228 | ||||
Release | 14712937 | 967 days ago | IN | 0 ETH | 0.00322839 | ||||
Transfer | 14695223 | 970 days ago | IN | 0.0233 ETH | 0.00141479 | ||||
Release | 14629592 | 980 days ago | IN | 0 ETH | 0.0069734 | ||||
Transfer | 14611714 | 983 days ago | IN | 0.02195 ETH | 0.00094885 | ||||
Transfer | 14563064 | 991 days ago | IN | 0.02575 ETH | 0.00070364 | ||||
Transfer | 14537530 | 995 days ago | IN | 0.02015 ETH | 0.00127338 | ||||
Release | 14526002 | 997 days ago | IN | 0 ETH | 0.0024431 | ||||
Transfer | 14483582 | 1003 days ago | IN | 0.8439345 ETH | 0.00144475 | ||||
Release | 14459204 | 1007 days ago | IN | 0 ETH | 0.00211423 | ||||
Transfer | 14416077 | 1014 days ago | IN | 0.354874 ETH | 0.0005846 | ||||
Release | 14398819 | 1016 days ago | IN | 0 ETH | 0.00173686 | ||||
Transfer | 14377767 | 1020 days ago | IN | 0.32613 ETH | 0.00046238 | ||||
Transfer | 14330610 | 1027 days ago | IN | 0.107015 ETH | 0.00065792 | ||||
Transfer | 14313693 | 1030 days ago | IN | 0.291355 ETH | 0.00086727 | ||||
Release | 14309204 | 1030 days ago | IN | 0 ETH | 0.00283425 | ||||
Transfer | 14259097 | 1038 days ago | IN | 0.025 ETH | 0.00190094 | ||||
Release | 14226126 | 1043 days ago | IN | 0 ETH | 0.00444569 | ||||
Transfer | 14224737 | 1043 days ago | IN | 0.557475 ETH | 0.00120086 | ||||
Transfer | 14186516 | 1049 days ago | IN | 0.15033 ETH | 0.00344601 | ||||
Transfer | 14154303 | 1054 days ago | IN | 0.80882682 ETH | 0.00251119 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21463580 | 4 days ago | 0.000025 ETH | ||||
20961932 | 74 days ago | 0.00001 ETH | ||||
20022156 | 205 days ago | 25.52062659 ETH | ||||
18494927 | 419 days ago | 0.0012475 ETH | ||||
17908645 | 501 days ago | 0.30935882 ETH | ||||
16900834 | 643 days ago | 0.0000005 ETH | ||||
16622368 | 682 days ago | 0.00045 ETH | ||||
16578512 | 688 days ago | 0.07813782 ETH | ||||
16538921 | 694 days ago | 0.000375 ETH | ||||
16500214 | 699 days ago | 0.0002 ETH | ||||
16397651 | 714 days ago | 0.000325 ETH | ||||
16358096 | 719 days ago | 0.000495 ETH | ||||
16345339 | 721 days ago | 0.0011 ETH | ||||
16309555 | 726 days ago | 0.00006 ETH | ||||
16307782 | 726 days ago | 0.0000005 ETH | ||||
16307680 | 726 days ago | 0.000005 ETH | ||||
16295672 | 728 days ago | 0.00025 ETH | ||||
16294495 | 728 days ago | 0.000005 ETH | ||||
16288564 | 729 days ago | 0.0003 ETH | ||||
16265021 | 732 days ago | 0.00075 ETH | ||||
16242095 | 735 days ago | 0.00045 ETH | ||||
16242095 | 735 days ago | 0.00045 ETH | ||||
16219962 | 738 days ago | 0.0005 ETH | ||||
16199468 | 741 days ago | 0.0009 ETH | ||||
16130112 | 751 days ago | 0.0009 ETH |
Loading...
Loading
Contract Name:
OpenSeaSecondarySplitter
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract OpenSeaSecondarySplitter is PaymentSplitter { constructor(address[] memory payees, uint256[] memory shares) PaymentSplitter(payees, shares) {} function getAvailablePayment(address account) external view returns (uint256) { uint256 totalReceived = address(this).balance + _totalReleased; return totalReceived * _shares[account] / _totalShares - _released[account]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Address.sol"; import "../utils/Context.sol"; import "../utils/math/SafeMath.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 internal _totalShares; uint256 internal _totalReleased; mapping(address => uint256) internal _shares; mapping(address => uint256) internal _released; address[] private _payees; /** * @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 { // solhint-disable-next-line max-line-length 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 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 address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + _totalReleased; uint256 payment = totalReceived * _shares[account] / _totalShares - _released[account]; require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] = _released[account] + payment; _totalReleased = _totalReleased + payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ 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) { unchecked { 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) { unchecked { 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) { unchecked { // 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) { unchecked { 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) { unchecked { 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) { return a + b; } /** * @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) { 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) { return a * b; } /** * @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. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { 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) { 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) { unchecked { 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. * * 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). * * 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) { unchecked { 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"payees","type":"address[]"},{"internalType":"uint256[]","name":"shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"address","name":"account","type":"address"}],"name":"getAvailablePayment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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 payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"shares","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200181038038062001810833981810160405281019062000037919062000535565b8181805182511462000080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200007790620007d5565b60405180910390fd5b6000825111620000c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000be9062000819565b60405180910390fd5b60005b82518110156200017e576200016883828151811062000112577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015183838151811062000154577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200018960201b60201c565b808062000175906200099b565b915050620000ca565b505050505062000a7b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001f390620007b3565b60405180910390fd5b6000811162000242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000239906200083b565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414620002c7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002be90620007f7565b60405180910390fd5b6004829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806000546200037e919062000900565b6000819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620003b792919062000786565b60405180910390a15050565b6000620003da620003d48462000891565b6200085d565b90508083825260208201905082856020860282011115620003fa57600080fd5b60005b858110156200042e5781620004138882620004ad565b845260208401935060208301925050600181019050620003fd565b5050509392505050565b60006200044f6200044984620008c0565b6200085d565b905080838252602082019050828560208602820111156200046f57600080fd5b60005b85811015620004a357816200048888826200051e565b84526020840193506020830192505060018101905062000472565b5050509392505050565b600081519050620004be8162000a47565b92915050565b600082601f830112620004d657600080fd5b8151620004e8848260208601620003c3565b91505092915050565b600082601f8301126200050357600080fd5b81516200051584826020860162000438565b91505092915050565b6000815190506200052f8162000a61565b92915050565b600080604083850312156200054957600080fd5b600083015167ffffffffffffffff8111156200056457600080fd5b6200057285828601620004c4565b925050602083015167ffffffffffffffff8111156200059057600080fd5b6200059e85828601620004f1565b9150509250929050565b620005b3816200095d565b82525050565b6000620005c8602c83620008ef565b91507f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008301527f7a65726f206164647265737300000000000000000000000000000000000000006020830152604082019050919050565b600062000630603283620008ef565b91507f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008301527f6573206c656e677468206d69736d6174636800000000000000000000000000006020830152604082019050919050565b600062000698602b83620008ef565b91507f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008301527f20686173207368617265730000000000000000000000000000000000000000006020830152604082019050919050565b600062000700601a83620008ef565b91507f5061796d656e7453706c69747465723a206e6f207061796565730000000000006000830152602082019050919050565b600062000742601d83620008ef565b91507f5061796d656e7453706c69747465723a207368617265732061726520300000006000830152602082019050919050565b620007808162000991565b82525050565b60006040820190506200079d6000830185620005a8565b620007ac602083018462000775565b9392505050565b60006020820190508181036000830152620007ce81620005b9565b9050919050565b60006020820190508181036000830152620007f08162000621565b9050919050565b60006020820190508181036000830152620008128162000689565b9050919050565b600060208201905081810360008301526200083481620006f1565b9050919050565b60006020820190508181036000830152620008568162000733565b9050919050565b6000604051905081810181811067ffffffffffffffff8211171562000887576200088662000a18565b5b8060405250919050565b600067ffffffffffffffff821115620008af57620008ae62000a18565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620008de57620008dd62000a18565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006200090d8262000991565b91506200091a8362000991565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009525762000951620009e9565b5b828201905092915050565b60006200096a8262000971565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000620009a88262000991565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620009de57620009dd620009e9565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a52816200095d565b811462000a5e57600080fd5b50565b62000a6c8162000991565b811462000a7857600080fd5b50565b610d858062000a8b6000396000f3fe6080604052600436106100745760003560e01c80639852595c1161004e5780639852595c14610151578063ce7c2ac21461018e578063e33b7de3146101cb578063eab902f9146101f6576100bb565b806319165587146100c05780633a98ef39146100e95780638b83209b14610114576100bb565b366100bb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706100a2610233565b346040516100b1929190610a33565b60405180910390a1005b600080fd5b3480156100cc57600080fd5b506100e760048036038101906100e291906107cf565b61023b565b005b3480156100f557600080fd5b506100fe6104a3565b60405161010b9190610adc565b60405180910390f35b34801561012057600080fd5b5061013b600480360381019061013691906107f8565b6104ac565b60405161014891906109ef565b60405180910390f35b34801561015d57600080fd5b50610178600480360381019061017391906107a6565b61051a565b6040516101859190610adc565b60405180910390f35b34801561019a57600080fd5b506101b560048036038101906101b091906107a6565b610563565b6040516101c29190610adc565b60405180910390f35b3480156101d757600080fd5b506101e06105ac565b6040516101ed9190610adc565b60405180910390f35b34801561020257600080fd5b5061021d600480360381019061021891906107a6565b6105b6565b60405161022a9190610adc565b60405180910390f35b600033905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116102bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b490610a5c565b60405180910390fd5b6000600154476102cd9190610b13565b90506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600054600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461035f9190610b9a565b6103699190610b69565b6103739190610bf4565b905060008114156103b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b090610abc565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104049190610b13565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806001546104559190610b13565b6001819055506104658382610673565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610496929190610a0a565b60405180910390a1505050565b60008054905090565b6000600482815481106104e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600154905090565b600080600154476105c79190610b13565b9050600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600054600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836106579190610b9a565b6106619190610b69565b61066b9190610bf4565b915050919050565b804710156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad90610a9c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516106dc906109da565b60006040518083038185875af1925050503d8060008114610719576040519150601f19603f3d011682016040523d82523d6000602084013e61071e565b606091505b5050905080610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990610a7c565b60405180910390fd5b505050565b60008135905061077681610d0a565b92915050565b60008135905061078b81610d21565b92915050565b6000813590506107a081610d38565b92915050565b6000602082840312156107b857600080fd5b60006107c684828501610767565b91505092915050565b6000602082840312156107e157600080fd5b60006107ef8482850161077c565b91505092915050565b60006020828403121561080a57600080fd5b600061081884828501610791565b91505092915050565b61082a81610c76565b82525050565b61083981610c28565b82525050565b600061084c602683610b02565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006108b2603a83610b02565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000610918601d83610b02565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000610958602b83610b02565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b60006109be600083610af7565b9150600082019050919050565b6109d481610c6c565b82525050565b60006109e5826109b1565b9150819050919050565b6000602082019050610a046000830184610830565b92915050565b6000604082019050610a1f6000830185610821565b610a2c60208301846109cb565b9392505050565b6000604082019050610a486000830185610830565b610a5560208301846109cb565b9392505050565b60006020820190508181036000830152610a758161083f565b9050919050565b60006020820190508181036000830152610a95816108a5565b9050919050565b60006020820190508181036000830152610ab58161090b565b9050919050565b60006020820190508181036000830152610ad58161094b565b9050919050565b6000602082019050610af160008301846109cb565b92915050565b600081905092915050565b600082825260208201905092915050565b6000610b1e82610c6c565b9150610b2983610c6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610b5e57610b5d610cac565b5b828201905092915050565b6000610b7482610c6c565b9150610b7f83610c6c565b925082610b8f57610b8e610cdb565b5b828204905092915050565b6000610ba582610c6c565b9150610bb083610c6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610be957610be8610cac565b5b828202905092915050565b6000610bff82610c6c565b9150610c0a83610c6c565b925082821015610c1d57610c1c610cac565b5b828203905092915050565b6000610c3382610c4c565b9050919050565b6000610c4582610c4c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610c8182610c88565b9050919050565b6000610c9382610c9a565b9050919050565b6000610ca582610c4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b610d1381610c28565b8114610d1e57600080fd5b50565b610d2a81610c3a565b8114610d3557600080fd5b50565b610d4181610c6c565b8114610d4c57600080fd5b5056fea2646970667358221220eed7c6bb950ceab646b06369b26d44b04aa7a52b059ced616e49ede04953062b64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000fccb96245ece8c0c0ba80992a5719cba1e2f504f00000000000000000000000073523cfbc14645d52de1e6f330b720b58ece617e000000000000000000000000e5f648ea98f17aa12acd59468643c62fbbf813eb000000000000000000000000b391ae8fc7483770930d1deab5a898206e9cdb3f00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x6080604052600436106100745760003560e01c80639852595c1161004e5780639852595c14610151578063ce7c2ac21461018e578063e33b7de3146101cb578063eab902f9146101f6576100bb565b806319165587146100c05780633a98ef39146100e95780638b83209b14610114576100bb565b366100bb577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706100a2610233565b346040516100b1929190610a33565b60405180910390a1005b600080fd5b3480156100cc57600080fd5b506100e760048036038101906100e291906107cf565b61023b565b005b3480156100f557600080fd5b506100fe6104a3565b60405161010b9190610adc565b60405180910390f35b34801561012057600080fd5b5061013b600480360381019061013691906107f8565b6104ac565b60405161014891906109ef565b60405180910390f35b34801561015d57600080fd5b50610178600480360381019061017391906107a6565b61051a565b6040516101859190610adc565b60405180910390f35b34801561019a57600080fd5b506101b560048036038101906101b091906107a6565b610563565b6040516101c29190610adc565b60405180910390f35b3480156101d757600080fd5b506101e06105ac565b6040516101ed9190610adc565b60405180910390f35b34801561020257600080fd5b5061021d600480360381019061021891906107a6565b6105b6565b60405161022a9190610adc565b60405180910390f35b600033905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116102bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b490610a5c565b60405180910390fd5b6000600154476102cd9190610b13565b90506000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600054600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548461035f9190610b9a565b6103699190610b69565b6103739190610bf4565b905060008114156103b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b090610abc565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104049190610b13565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806001546104559190610b13565b6001819055506104658382610673565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610496929190610a0a565b60405180910390a1505050565b60008054905090565b6000600482815481106104e8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600154905090565b600080600154476105c79190610b13565b9050600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600054600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836106579190610b9a565b6106619190610b69565b61066b9190610bf4565b915050919050565b804710156106b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ad90610a9c565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516106dc906109da565b60006040518083038185875af1925050503d8060008114610719576040519150601f19603f3d011682016040523d82523d6000602084013e61071e565b606091505b5050905080610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990610a7c565b60405180910390fd5b505050565b60008135905061077681610d0a565b92915050565b60008135905061078b81610d21565b92915050565b6000813590506107a081610d38565b92915050565b6000602082840312156107b857600080fd5b60006107c684828501610767565b91505092915050565b6000602082840312156107e157600080fd5b60006107ef8482850161077c565b91505092915050565b60006020828403121561080a57600080fd5b600061081884828501610791565b91505092915050565b61082a81610c76565b82525050565b61083981610c28565b82525050565b600061084c602683610b02565b91507f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008301527f73686172657300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006108b2603a83610b02565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000610918601d83610b02565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000610958602b83610b02565b91507f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008301527f647565207061796d656e740000000000000000000000000000000000000000006020830152604082019050919050565b60006109be600083610af7565b9150600082019050919050565b6109d481610c6c565b82525050565b60006109e5826109b1565b9150819050919050565b6000602082019050610a046000830184610830565b92915050565b6000604082019050610a1f6000830185610821565b610a2c60208301846109cb565b9392505050565b6000604082019050610a486000830185610830565b610a5560208301846109cb565b9392505050565b60006020820190508181036000830152610a758161083f565b9050919050565b60006020820190508181036000830152610a95816108a5565b9050919050565b60006020820190508181036000830152610ab58161090b565b9050919050565b60006020820190508181036000830152610ad58161094b565b9050919050565b6000602082019050610af160008301846109cb565b92915050565b600081905092915050565b600082825260208201905092915050565b6000610b1e82610c6c565b9150610b2983610c6c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610b5e57610b5d610cac565b5b828201905092915050565b6000610b7482610c6c565b9150610b7f83610c6c565b925082610b8f57610b8e610cdb565b5b828204905092915050565b6000610ba582610c6c565b9150610bb083610c6c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615610be957610be8610cac565b5b828202905092915050565b6000610bff82610c6c565b9150610c0a83610c6c565b925082821015610c1d57610c1c610cac565b5b828203905092915050565b6000610c3382610c4c565b9050919050565b6000610c4582610c4c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610c8182610c88565b9050919050565b6000610c9382610c9a565b9050919050565b6000610ca582610c4c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b610d1381610c28565b8114610d1e57600080fd5b50565b610d2a81610c3a565b8114610d3557600080fd5b50565b610d4181610c6c565b8114610d4c57600080fd5b5056fea2646970667358221220eed7c6bb950ceab646b06369b26d44b04aa7a52b059ced616e49ede04953062b64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000fccb96245ece8c0c0ba80992a5719cba1e2f504f00000000000000000000000073523cfbc14645d52de1e6f330b720b58ece617e000000000000000000000000e5f648ea98f17aa12acd59468643c62fbbf813eb000000000000000000000000b391ae8fc7483770930d1deab5a898206e9cdb3f00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000002800000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : payees (address[]): 0xfccb96245ECE8C0c0ba80992A5719cbA1E2f504f,0x73523cFBC14645d52DE1E6f330b720b58Ece617e,0xE5F648eA98F17AA12ACD59468643c62fbbf813Eb,0xB391AE8Fc7483770930d1dEAb5a898206E9cDb3F
Arg [1] : shares (uint256[]): 50,40,5,5
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000fccb96245ece8c0c0ba80992a5719cba1e2f504f
Arg [4] : 00000000000000000000000073523cfbc14645d52de1e6f330b720b58ece617e
Arg [5] : 000000000000000000000000e5f648ea98f17aa12acd59468643c62fbbf813eb
Arg [6] : 000000000000000000000000b391ae8fc7483770930d1deab5a898206e9cdb3f
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000028
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
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.