Polygon Sponsored slots available. Book your slot here!
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 79,434 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Donation | 67068724 | 3 hrs ago | IN | 0 POL | 0.00300696 | ||||
Claim Donation | 67068713 | 3 hrs ago | IN | 0 POL | 0.00470445 | ||||
Claim Donation | 67068702 | 3 hrs ago | IN | 0 POL | 0.00490794 | ||||
Claim Donation | 67068683 | 3 hrs ago | IN | 0 POL | 0.00335166 | ||||
Claim Donation | 67067614 | 3 hrs ago | IN | 0 POL | 0.00457587 | ||||
Claim Donation | 67067612 | 3 hrs ago | IN | 0 POL | 0.0045489 | ||||
Claim Donation | 67067604 | 3 hrs ago | IN | 0 POL | 0.00456086 | ||||
Claim Donation | 67067594 | 3 hrs ago | IN | 0 POL | 0.0071904 | ||||
Claim Donation | 67067362 | 3 hrs ago | IN | 0 POL | 0.00471654 | ||||
Claim Donation | 67065589 | 5 hrs ago | IN | 0 POL | 0.00308973 | ||||
Claim Donation | 67062689 | 6 hrs ago | IN | 0 POL | 0.00460934 | ||||
Claim Donation | 67062666 | 6 hrs ago | IN | 0 POL | 0.00460197 | ||||
Claim Donation | 67062634 | 6 hrs ago | IN | 0 POL | 0.00334683 | ||||
Claim Donation | 67059713 | 8 hrs ago | IN | 0 POL | 0.01119231 | ||||
Claim Donation | 67059702 | 8 hrs ago | IN | 0 POL | 0.01221442 | ||||
Claim Donation | 67059692 | 8 hrs ago | IN | 0 POL | 0.01318322 | ||||
Claim Donation | 67055947 | 10 hrs ago | IN | 0 POL | 0.00526114 | ||||
Claim Donation | 67055845 | 10 hrs ago | IN | 0 POL | 0.00363912 | ||||
Claim Donation | 67055840 | 10 hrs ago | IN | 0 POL | 0.00360805 | ||||
Claim Donation | 67055825 | 10 hrs ago | IN | 0 POL | 0.00627321 | ||||
Claim Donation | 67055385 | 11 hrs ago | IN | 0 POL | 0.00431103 | ||||
Claim Donation | 67055380 | 11 hrs ago | IN | 0 POL | 0.00422049 | ||||
Claim Donation | 67055372 | 11 hrs ago | IN | 0 POL | 0.0045262 | ||||
Claim Donation | 67055362 | 11 hrs ago | IN | 0 POL | 0.00487066 | ||||
Claim Donation | 67050007 | 14 hrs ago | IN | 0 POL | 0.00617465 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
DonationAidMut
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./IUserAidMut.sol"; import "./IUniswapAidMut.sol"; library Donation { struct UserDonation { uint balance; uint startedTimestamp; uint poolPaymentIndex; bool hasVideo; uint[5] totalInvestment; } struct PoolPayment { uint level1; uint level2; uint level3; uint level4; uint level5; uint blockTime; uint blockTime2; uint blockTime2Video; } } contract DonationAidMut is ReentrancyGuard, Ownable { using SafeERC20 for IERC20; event UserDonated(address indexed user, uint amount); event ChangedBot(address indexed user); event UserClaimed(address indexed user, uint amount); IUserAidMut public immutable userAidMut; uint24 public constant limitPeriod = 15 days; IUniswapAidMut public uniswapOracle; Donation.PoolPayment[4] public poolPayments; IERC20 private immutable token; address walletBot; mapping(address => Donation.UserDonation) private users; mapping(address => bool) private blacklist; constructor( address _token, address initialOwner, address initialUser ) Ownable(initialOwner) { token = IERC20(_token); userAidMut = IUserAidMut(initialUser); poolPayments[0] = Donation.PoolPayment( 1000, 500, 300, 200, 100, 2000, 4000, 5000 ); poolPayments[1] = Donation.PoolPayment( 500, 250, 150, 100, 50, 1000, 2000, 2500 ); poolPayments[2] = Donation.PoolPayment( 250, 125, 75, 50, 25, 500, 1000, 1250 ); poolPayments[3] = Donation.PoolPayment( 100, 50, 25, 25, 25, 100, 200, 250 ); } modifier onlyBot() { require(msg.sender == walletBot, "Only bot can call this function"); _; } modifier notBlacklisted() { require(!blacklist[msg.sender], "Address is blacklisted"); _; } function setWalletBot(address _address) external onlyOwner { walletBot = _address; emit ChangedBot(_address); } function getContractPoolBalance() public view returns (uint) { return token.balanceOf(address(this)); } function setUniswapOracle(address _address) external onlyOwner { uniswapOracle = IUniswapAidMut(_address); } function addVideo(address user) external onlyBot { users[user].hasVideo = true; } function removeVideo(address user) external onlyBot { users[user].hasVideo = false; } function addToBlacklist(address user) external onlyBot { blacklist[user] = true; } function removeFromBlacklist(address user) external onlyBot { blacklist[user] = false; } function isBlacklisted(address user) external view returns (bool) { return blacklist[user]; } function timeUntilNextWithdrawal( address user ) external view notBlacklisted returns (uint256) { uint256 timeElapsed = block.timestamp - users[user].startedTimestamp; if (timeElapsed < limitPeriod) { return limitPeriod - timeElapsed; } else if (timeElapsed < limitPeriod * 2) { return limitPeriod * 2 - timeElapsed; } else { return 0; } } function donate(uint128 amount) external nonReentrant notBlacklisted { IUserAidMut.UserStruct memory userStruct = userAidMut.getUser( msg.sender ); require(userStruct.registered, "Unregistered user"); require( !hasActiveDonation(msg.sender), "You cannot have more than 1 donation" ); uint amountUsdt = uniswapOracle.estimateAmountOut(amount); require( amountUsdt >= 10 ether && amountUsdt <= 10000 ether, "Amount must be between 10 and 10,000 dollars" ); uint totalPool = getContractPoolBalance(); users[msg.sender].balance = amountUsdt; users[msg.sender].startedTimestamp = block.timestamp; users[msg.sender].hasVideo = false; users[msg.sender].poolPaymentIndex = (totalPool >= 15e7 ether) ? 0 : (totalPool >= 75e6 ether) ? 1 : (totalPool >= 35e6 ether) ? 2 : 3; recursiveIncrement(userStruct, amountUsdt); uniLevelDistribution(amount, userStruct); token.safeTransferFrom(msg.sender, address(this), amount); emit UserDonated(msg.sender, amountUsdt); } function uniLevelDistribution( uint amount, IUserAidMut.UserStruct memory userStruct ) internal { Donation.UserDonation memory userDonation = users[msg.sender]; if (hasActiveDonation(userStruct.level1)) { token.safeTransfer( userStruct.level1, getPercentage( amount, poolPayments[userDonation.poolPaymentIndex].level1 ) ); } if ( hasActiveDonation(userStruct.level2) && users[userStruct.level2].totalInvestment[1] >= 500 ether ) { token.safeTransfer( userStruct.level2, getPercentage( amount, poolPayments[userDonation.poolPaymentIndex].level2 ) ); } if ( hasActiveDonation(userStruct.level3) && users[userStruct.level3].totalInvestment[2] >= 1000 ether ) { token.safeTransfer( userStruct.level3, getPercentage( amount, poolPayments[userDonation.poolPaymentIndex].level3 ) ); } if ( hasActiveDonation(userStruct.level4) && users[userStruct.level4].totalInvestment[3] >= 2000 ether ) { token.safeTransfer( userStruct.level4, getPercentage( amount, poolPayments[userDonation.poolPaymentIndex].level4 ) ); } if ( hasActiveDonation(userStruct.level5) && users[userStruct.level5].totalInvestment[4] >= 3000 ether ) { token.safeTransfer( userStruct.level5, getPercentage( amount, poolPayments[userDonation.poolPaymentIndex].level5 ) ); } } function getPercentage( uint amount, uint percentage ) internal pure returns (uint percentageOfAmounts) { if (percentage == 1000) { return amount / 10; } if (percentage == 500) { return amount / 20; } if (percentage == 300) { return (amount * 3) / 100; } if (percentage == 200) { return amount / 50; } if (percentage == 100) { return amount / 100; } if (percentage == 2000) { return amount / 5; } if (percentage == 4000) { return (amount * 2) / 5; } if (percentage == 5000) { return (amount) / 2; } if (percentage == 250) { return (amount) / 40; } if (percentage == 150) { return (amount * 3) / 200; } if (percentage == 50) { return (amount) / 200; } if (percentage == 2500) { return (amount) / 4; } if (percentage == 125) { return (amount * 25) / 2000; } if (percentage == 75) { return (amount * 15) / 2000; } if (percentage == 25) { return (amount) / 400; } if (percentage == 1250) { return (amount) / 8; } } function hasActiveDonation(address user) internal view returns (bool) { return users[user].balance > 0; } function recursiveIncrement( IUserAidMut.UserStruct memory user, uint amount ) internal { if (user.level1 != address(0)) { users[user.level1].totalInvestment[0] += amount; } if (user.level2 != address(0)) { users[user.level2].totalInvestment[1] += amount; } if (user.level3 != address(0)) { users[user.level3].totalInvestment[2] += amount; } if (user.level4 != address(0)) { users[user.level4].totalInvestment[3] += amount; } if (user.level5 != address(0)) { users[user.level5].totalInvestment[4] += amount; } } function claimDonation() external nonReentrant notBlacklisted { require( users[msg.sender].startedTimestamp + limitPeriod <= block.timestamp, "Tokens are still locked" ); uint priceUsdt = uniswapOracle.estimateAmountOut(1 ether); uint totalValue = calculateTotalValue(msg.sender) * 1000; totalValue /= priceUsdt; users[msg.sender].balance = 0; token.safeTransfer(msg.sender, totalValue * 1e15); emit UserClaimed(msg.sender, totalValue * 1e15); } function getUser( address _user ) external view notBlacklisted returns (Donation.UserDonation memory) { Donation.UserDonation memory userDonation = users[_user]; userDonation.balance = calculateTotalValue(_user); return userDonation; } function calculateTotalValue( address user ) internal view returns (uint balance) { uint multiplier; if (users[user].hasVideo) { if ( users[user].startedTimestamp + 2 * limitPeriod <= block.timestamp ) { multiplier = poolPayments[users[user].poolPaymentIndex] .blockTime2Video; } else if ( users[user].startedTimestamp + limitPeriod <= block.timestamp ) { multiplier = poolPayments[users[user].poolPaymentIndex] .blockTime; } else { return users[user].balance; } } else { if ( users[user].startedTimestamp + 2 * limitPeriod <= block.timestamp ) { multiplier = poolPayments[users[user].poolPaymentIndex] .blockTime2; } else if ( users[user].startedTimestamp + limitPeriod <= block.timestamp ) { multiplier = poolPayments[users[user].poolPaymentIndex] .blockTime; } else { return users[user].balance; } } return users[user].balance + getPercentage(users[user].balance, multiplier); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @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. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ 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]. * * CAUTION: See Security Considerations above. */ 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) 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 FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.24; interface IUniswapAidMut { function estimateAmountOut( uint128 amountIn ) external view returns (uint amountOut); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; interface IUserAidMut { struct UserStruct { bool registered; address level1; address level2; address level3; address level4; address level5; } function getUser( address _address ) external view returns (UserStruct memory); function totalUsersBooCash() external view returns (uint); function allUsersBooCash(uint index) external view returns (address); function createUser(address level1) external; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"},{"internalType":"address","name":"initialUser","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"ChangedBot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UserClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UserDonated","type":"event"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addVideo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimDonation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"donate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getContractPoolBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"getUser","outputs":[{"components":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"startedTimestamp","type":"uint256"},{"internalType":"uint256","name":"poolPaymentIndex","type":"uint256"},{"internalType":"bool","name":"hasVideo","type":"bool"},{"internalType":"uint256[5]","name":"totalInvestment","type":"uint256[5]"}],"internalType":"struct Donation.UserDonation","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPeriod","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolPayments","outputs":[{"internalType":"uint256","name":"level1","type":"uint256"},{"internalType":"uint256","name":"level2","type":"uint256"},{"internalType":"uint256","name":"level3","type":"uint256"},{"internalType":"uint256","name":"level4","type":"uint256"},{"internalType":"uint256","name":"level5","type":"uint256"},{"internalType":"uint256","name":"blockTime","type":"uint256"},{"internalType":"uint256","name":"blockTime2","type":"uint256"},{"internalType":"uint256","name":"blockTime2Video","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeVideo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setUniswapOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWalletBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"timeUntilNextWithdrawal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapOracle","outputs":[{"internalType":"contract IUniswapAidMut","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"userAidMut","outputs":[{"internalType":"contract IUserAidMut","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162003d9838038062003d98833981810160405281019062000037919062000538565b816001600081905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000b55760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000ac9190620005a5565b60405180910390fd5b620000c6816200040860201b60201c565b508273ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506040518061010001604052806103e881526020016101f4815260200161012c815260200160c88152602001606481526020016107d08152602001610fa0815260200161138881525060036000600481106200018f576200018e620005c2565b5b60080201600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701559050506040518061010001604052806101f4815260200160fa81526020016096815260200160648152602001603281526020016103e881526020016107d081526020016109c48152506003600160048110620002445762000243620005c2565b5b60080201600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015590505060405180610100016040528060fa8152602001607d8152602001604b815260200160328152602001601981526020016101f481526020016103e881526020016104e28152506003600260048110620002f857620002f7620005c2565b5b60080201600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e0820151816007015590505060405180610100016040528060648152602001603281526020016019815260200160198152602001601981526020016064815260200160c8815260200160fa81525060038060048110620003a857620003a7620005c2565b5b60080201600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155905050505050620005f1565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200050082620004d3565b9050919050565b6200051281620004f3565b81146200051e57600080fd5b50565b600081519050620005328162000507565b92915050565b600080600060608486031215620005545762000553620004ce565b5b6000620005648682870162000521565b9350506020620005778682870162000521565b92505060406200058a8682870162000521565b9150509250925092565b6200059f81620004f3565b82525050565b6000602082019050620005bc600083018462000594565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60805160a0516137496200064f60003960008181610b5401528181610e53015281816112df01528181611af901528181611bf201528181611ceb01528181611de40152611edd01526000818161075b015261112901526137496000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063537df3b6116100ad5780638da5cb5b116100715780638da5cb5b146102d3578063a0d46c17146102f1578063f2a694311461030d578063f2fde38b1461032b578063fe575a871461034757610121565b8063537df3b6146102415780636481bdaf1461025d5780636f77926b1461027b578063715018a6146102ab57806375b35dd6146102b557610121565b80631e1cdf59116100f45780631e1cdf59146101ac5780632f07ad80146101c85780632f4a9f85146101e457806339054c74146101ee57806344337ea11461022557610121565b80630c8369e314610126578063110f094b14610142578063120c6c5b146101725780631a9761f414610190575b600080fd5b610140600480360381019061013b9190612ad8565b610377565b005b61015c60048036038101906101579190612ad8565b610465565b6040516101699190612b1e565b60405180910390f35b61017a6105c1565b6040516101879190612b98565b60405180910390f35b6101aa60048036038101906101a59190612ad8565b6105e7565b005b6101c660048036038101906101c19190612ad8565b610633565b005b6101e260048036038101906101dd9190612bfb565b6106c2565b005b6101ec610bf5565b005b61020860048036038101906102039190612c54565b610f03565b60405161021c989796959493929190612c81565b60405180910390f35b61023f600480360381019061023a9190612ad8565b610f51565b005b61025b60048036038101906102569190612ad8565b61103c565b005b610265611127565b6040516102729190612d20565b60405180910390f35b61029560048036038101906102909190612ad8565b61114b565b6040516102a29190612e6a565b60405180910390f35b6102b36112c7565b005b6102bd6112db565b6040516102ca9190612b1e565b60405180910390f35b6102db61137c565b6040516102e89190612e95565b60405180910390f35b61030b60048036038101906103069190612ad8565b6113a6565b005b610315611494565b6040516103229190612ece565b60405180910390f35b61034560048036038101906103409190612ad8565b61149b565b005b610361600480360381019061035c9190612ad8565b611521565b60405161036e9190612ef8565b60405180910390f35b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fe90612f70565b60405180910390fd5b6000602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b6000602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156104f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104eb90612fdc565b60405180910390fd5b6000602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442610544919061302b565b90506213c68062ffffff1681101561057257806213c68062ffffff1661056a919061302b565b9150506105bc565b60026213c680610582919061305f565b62ffffff168110156105b6578060026213c68061059f919061305f565b62ffffff166105ae919061302b565b9150506105bc565b60009150505b919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ef611577565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61063b611577565b80602360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f37386e8982a31575c6c2c1f575f367bceab1f4e562b779812030f2a3f398b64f60405160405180910390a250565b6106ca6115fe565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90612fdc565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636f77926b336040518263ffffffff1660e01b81526004016107b29190612e95565b60c060405180830381865afa1580156107cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f3919061320e565b90508060000151610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613287565b60405180910390fd5b61084233611644565b15610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990613319565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372c6289b846040518263ffffffff1660e01b81526004016108df9190613348565b602060405180830381865afa1580156108fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109209190613378565b9050678ac7230489e800008110158015610944575069021e19e0c9bab24000008111155b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613417565b60405180910390fd5b600061098d6112db565b905081602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055506a7c13bc4b2c133c56000000811015610ac8576a3e09de2596099e2b000000811015610ac0576a1cf389cd46047d03000000811015610ab8576003610abb565b60025b610ac3565b60015b610acb565b60005b60ff16602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550610b1e8383611692565b610b3a846fffffffffffffffffffffffffffffffff16846119e8565b610b993330866fffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611f27909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe542c32803c768a7f90212ed7949c154ed8a82e949bb2112011a8d935dd0737f83604051610bdf9190612b1e565b60405180910390a2505050610bf2611fa9565b50565b610bfd6115fe565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190612fdc565b60405180910390fd5b426213c68062ffffff16602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610ce19190613437565b1115610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d19906134b7565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372c6289b670de0b6b3a76400006040518263ffffffff1660e01b8152600401610d879190613512565b602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc89190613378565b905060006103e8610dd833611fb3565b610de2919061352d565b90508181610df0919061359e565b90506000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550610e973366038d7ea4c6800083610e51919061352d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f5329b89678b0f095cae2abe10b88ad57329871ee9296ae8f358a46b9fa0ff32866038d7ea4c6800083610ee2919061352d565b604051610eef9190612b1e565b60405180910390a25050610f01611fa9565b565b60038160048110610f1357600080fd5b600802016000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612f70565b60405180910390fd5b6001602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612f70565b60405180910390fd5b6000602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611153612a12565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612fdc565b60405180910390fd5b6000602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152602001600482016005806020026040519081016040528092919082600580156112a1576020028201915b81548152602001906001019080831161128d575b50505050508152505090506112b583611fb3565b81600001818152505080915050919050565b6112cf611577565b6112d960006124e6565b565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113369190612e95565b602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613378565b905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612f70565b60405180910390fd5b6001602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b6213c68081565b6114a3611577565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115155760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161150c9190612e95565b60405180910390fd5b61151e816124e6565b50565b6000602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157f6125ac565b73ffffffffffffffffffffffffffffffffffffffff1661159d61137c565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576115c06125ac565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016115f39190612e95565b60405180910390fd5b565b60026000540361163a576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600081905550565b600080602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154119050919050565b600073ffffffffffffffffffffffffffffffffffffffff16826020015173ffffffffffffffffffffffffffffffffffffffff161461173c578060246000846020015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600060058110611724576117236135cf565b5b0160008282546117349190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826040015173ffffffffffffffffffffffffffffffffffffffff16146117e6578060246000846040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004016001600581106117ce576117cd6135cf565b5b0160008282546117de9190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826060015173ffffffffffffffffffffffffffffffffffffffff1614611890578060246000846060015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600260058110611878576118776135cf565b5b0160008282546118889190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826080015173ffffffffffffffffffffffffffffffffffffffff161461193a578060246000846080015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600360058110611922576119216135cf565b5b0160008282546119329190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168260a0015173ffffffffffffffffffffffffffffffffffffffff16146119e45780602460008460a0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004016004600581106119cc576119cb6135cf565b5b0160008282546119dc9190613437565b925050819055505b5050565b6000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201600580602002604051908101604052809291908260058015611aa9576020028201915b815481526020019060010190808311611a95575b5050505050815250509050611ac18260200151611644565b15611b3e57611b3d8260200151611af7856003856040015160048110611aea57611ae96135cf565b5b60080201600001546125b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611b4b8260400151611644565b8015611bba5750681b1ae4d6e2ef50000060246000846040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600160058110611bb557611bb46135cf565b5b015410155b15611c3757611c368260400151611bf0856003856040015160048110611be357611be26135cf565b5b60080201600101546125b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611c448260600151611644565b8015611cb35750683635c9adc5dea0000060246000846060015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600260058110611cae57611cad6135cf565b5b015410155b15611d3057611d2f8260600151611ce9856003856040015160048110611cdc57611cdb6135cf565b5b60080201600201546125b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611d3d8260800151611644565b8015611dac5750686c6b935b8bbd40000060246000846080015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600360058110611da757611da66135cf565b5b015410155b15611e2957611e288260800151611de2856003856040015160048110611dd557611dd46135cf565b5b60080201600301546125b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611e368260a00151611644565b8015611ea5575068a2a15d09519be00000602460008460a0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600460058110611ea057611e9f6135cf565b5b015410155b15611f2257611f218260a00151611edb856003856040015160048110611ece57611ecd6135cf565b5b60080201600401546125b4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b505050565b611fa3848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401611f5c939291906135fe565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506127c4565b50505050565b6001600081905550565b600080602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16156121ea57426213c680600261201c919061305f565b62ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461206e9190613437565b116120d8576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600481106120c9576120c86135cf565b5b600802016007015490506121e5565b426213c68062ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461212f9190613437565b11612199576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546004811061218a576121896135cf565b5b600802016005015490506121e4565b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154915050612462565b5b6123c5565b426213c68060026121fb919061305f565b62ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461224d9190613437565b116122b7576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600481106122a8576122a76135cf565b5b600802016006015490506123c4565b426213c68062ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461230e9190613437565b11612378576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015460048110612369576123686135cf565b5b600802016005015490506123c3565b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154915050612462565b5b5b612411602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154826125b4565b602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461245e9190613437565b9150505b919050565b6124e1838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161249a929190613635565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506127c4565b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60006103e882036125d357600a836125cc919061359e565b90506127be565b6101f482036125f0576014836125e9919061359e565b90506127be565b61012c8203612619576064600384612608919061352d565b612612919061359e565b90506127be565b60c882036126355760328361262e919061359e565b90506127be565b606482036126515760648361264a919061359e565b90506127be565b6107d0820361266e57600583612667919061359e565b90506127be565b610fa08203612697576005600284612686919061352d565b612690919061359e565b90506127be565b61138882036126b4576002836126ad919061359e565b90506127be565b60fa82036126d0576028836126c9919061359e565b90506127be565b609682036126f85760c86003846126e7919061352d565b6126f1919061359e565b90506127be565b603282036127145760c88361270d919061359e565b90506127be565b6109c482036127315760048361272a919061359e565b90506127be565b607d820361275a576107d0601984612749919061352d565b612753919061359e565b90506127be565b604b8203612783576107d0600f84612772919061352d565b61277c919061359e565b90506127be565b601982036127a05761019083612799919061359e565b90506127be565b6104e282036127bd576008836127b6919061359e565b90506127be565b5b92915050565b60006127ef828473ffffffffffffffffffffffffffffffffffffffff1661285b90919063ffffffff16565b90506000815114158015612814575080806020019051810190612812919061365e565b155b1561285657826040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161284d9190612e95565b60405180910390fd5b505050565b606061286983836000612871565b905092915050565b6060814710156128b857306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016128af9190612e95565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516128e191906136fc565b60006040518083038185875af1925050503d806000811461291e576040519150601f19603f3d011682016040523d82523d6000602084013e612923565b606091505b509150915061293386838361293e565b925050509392505050565b6060826129535761294e826129cd565b6129c5565b6000825114801561297b575060008473ffffffffffffffffffffffffffffffffffffffff163b145b156129bd57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016129b49190612e95565b60405180910390fd5b8190506129c6565b5b9392505050565b6000815111156129e05780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040518060a00160405280600081526020016000815260200160008152602001600015158152602001612a43612a49565b81525090565b6040518060a00160405280600590602082028036833780820191505090505090565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612aa582612a7a565b9050919050565b612ab581612a9a565b8114612ac057600080fd5b50565b600081359050612ad281612aac565b92915050565b600060208284031215612aee57612aed612a75565b5b6000612afc84828501612ac3565b91505092915050565b6000819050919050565b612b1881612b05565b82525050565b6000602082019050612b336000830184612b0f565b92915050565b6000819050919050565b6000612b5e612b59612b5484612a7a565b612b39565b612a7a565b9050919050565b6000612b7082612b43565b9050919050565b6000612b8282612b65565b9050919050565b612b9281612b77565b82525050565b6000602082019050612bad6000830184612b89565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b612bd881612bb3565b8114612be357600080fd5b50565b600081359050612bf581612bcf565b92915050565b600060208284031215612c1157612c10612a75565b5b6000612c1f84828501612be6565b91505092915050565b612c3181612b05565b8114612c3c57600080fd5b50565b600081359050612c4e81612c28565b92915050565b600060208284031215612c6a57612c69612a75565b5b6000612c7884828501612c3f565b91505092915050565b600061010082019050612c97600083018b612b0f565b612ca4602083018a612b0f565b612cb16040830189612b0f565b612cbe6060830188612b0f565b612ccb6080830187612b0f565b612cd860a0830186612b0f565b612ce560c0830185612b0f565b612cf260e0830184612b0f565b9998505050505050505050565b6000612d0a82612b65565b9050919050565b612d1a81612cff565b82525050565b6000602082019050612d356000830184612d11565b92915050565b612d4481612b05565b82525050565b60008115159050919050565b612d5f81612d4a565b82525050565b600060059050919050565b600081905092915050565b6000819050919050565b6000612d918383612d3b565b60208301905092915050565b6000602082019050919050565b612db381612d65565b612dbd8184612d70565b9250612dc882612d7b565b8060005b83811015612df9578151612de08782612d85565b9650612deb83612d9d565b925050600181019050612dcc565b505050505050565b61012082016000820151612e186000850182612d3b565b506020820151612e2b6020850182612d3b565b506040820151612e3e6040850182612d3b565b506060820151612e516060850182612d56565b506080820151612e646080850182612daa565b50505050565b600061012082019050612e806000830184612e01565b92915050565b612e8f81612a9a565b82525050565b6000602082019050612eaa6000830184612e86565b92915050565b600062ffffff82169050919050565b612ec881612eb0565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b612ef281612d4a565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b600082825260208201905092915050565b7f4f6e6c7920626f742063616e2063616c6c20746869732066756e6374696f6e00600082015250565b6000612f5a601f83612f13565b9150612f6582612f24565b602082019050919050565b60006020820190508181036000830152612f8981612f4d565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b6000612fc6601683612f13565b9150612fd182612f90565b602082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061303682612b05565b915061304183612b05565b925082820390508181111561305957613058612ffc565b5b92915050565b600061306a82612eb0565b915061307583612eb0565b925082820261308381612eb0565b915080821461309557613094612ffc565b5b5092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ea826130a1565b810181811067ffffffffffffffff82111715613109576131086130b2565b5b80604052505050565b600061311c612a6b565b905061312882826130e1565b919050565b61313681612d4a565b811461314157600080fd5b50565b6000815190506131538161312d565b92915050565b60008151905061316881612aac565b92915050565b600060c082840312156131845761318361309c565b5b61318e60c0613112565b9050600061319e84828501613144565b60008301525060206131b284828501613159565b60208301525060406131c684828501613159565b60408301525060606131da84828501613159565b60608301525060806131ee84828501613159565b60808301525060a061320284828501613159565b60a08301525092915050565b600060c0828403121561322457613223612a75565b5b60006132328482850161316e565b91505092915050565b7f556e726567697374657265642075736572000000000000000000000000000000600082015250565b6000613271601183612f13565b915061327c8261323b565b602082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b7f596f752063616e6e6f742068617665206d6f7265207468616e203120646f6e6160008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b6000613303602483612f13565b915061330e826132a7565b604082019050919050565b60006020820190508181036000830152613332816132f6565b9050919050565b61334281612bb3565b82525050565b600060208201905061335d6000830184613339565b92915050565b60008151905061337281612c28565b92915050565b60006020828403121561338e5761338d612a75565b5b600061339c84828501613363565b91505092915050565b7f416d6f756e74206d757374206265206265747765656e20313020616e6420313060008201527f2c30303020646f6c6c6172730000000000000000000000000000000000000000602082015250565b6000613401602c83612f13565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b600061344282612b05565b915061344d83612b05565b925082820190508082111561346557613464612ffc565b5b92915050565b7f546f6b656e7320617265207374696c6c206c6f636b6564000000000000000000600082015250565b60006134a1601783612f13565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b6000819050919050565b60006134fc6134f76134f2846134d7565b612b39565b612bb3565b9050919050565b61350c816134e1565b82525050565b60006020820190506135276000830184613503565b92915050565b600061353882612b05565b915061354383612b05565b925082820261355181612b05565b9150828204841483151761356857613567612ffc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135a982612b05565b91506135b483612b05565b9250826135c4576135c361356f565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506136136000830186612e86565b6136206020830185612e86565b61362d6040830184612b0f565b949350505050565b600060408201905061364a6000830185612e86565b6136576020830184612b0f565b9392505050565b60006020828403121561367457613673612a75565b5b600061368284828501613144565b91505092915050565b600081519050919050565b600081905092915050565b60005b838110156136bf5780820151818401526020810190506136a4565b60008484015250505050565b60006136d68261368b565b6136e08185613696565b93506136f08185602086016136a1565b80840191505092915050565b600061370882846136cb565b91508190509291505056fea2646970667358221220a89fbc103b218277eb8522e5738fc38d6926b3537e6065c669552a8f393ec84664736f6c63430008180033000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f00000000000000000000000014690441b74bab2e3f72844a3f355bf51a721b1f0000000000000000000000007eea1e71e6c8a5b9ac7e941e32a9196932ec3d32
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063537df3b6116100ad5780638da5cb5b116100715780638da5cb5b146102d3578063a0d46c17146102f1578063f2a694311461030d578063f2fde38b1461032b578063fe575a871461034757610121565b8063537df3b6146102415780636481bdaf1461025d5780636f77926b1461027b578063715018a6146102ab57806375b35dd6146102b557610121565b80631e1cdf59116100f45780631e1cdf59146101ac5780632f07ad80146101c85780632f4a9f85146101e457806339054c74146101ee57806344337ea11461022557610121565b80630c8369e314610126578063110f094b14610142578063120c6c5b146101725780631a9761f414610190575b600080fd5b610140600480360381019061013b9190612ad8565b610377565b005b61015c60048036038101906101579190612ad8565b610465565b6040516101699190612b1e565b60405180910390f35b61017a6105c1565b6040516101879190612b98565b60405180910390f35b6101aa60048036038101906101a59190612ad8565b6105e7565b005b6101c660048036038101906101c19190612ad8565b610633565b005b6101e260048036038101906101dd9190612bfb565b6106c2565b005b6101ec610bf5565b005b61020860048036038101906102039190612c54565b610f03565b60405161021c989796959493929190612c81565b60405180910390f35b61023f600480360381019061023a9190612ad8565b610f51565b005b61025b60048036038101906102569190612ad8565b61103c565b005b610265611127565b6040516102729190612d20565b60405180910390f35b61029560048036038101906102909190612ad8565b61114b565b6040516102a29190612e6a565b60405180910390f35b6102b36112c7565b005b6102bd6112db565b6040516102ca9190612b1e565b60405180910390f35b6102db61137c565b6040516102e89190612e95565b60405180910390f35b61030b60048036038101906103069190612ad8565b6113a6565b005b610315611494565b6040516103229190612ece565b60405180910390f35b61034560048036038101906103409190612ad8565b61149b565b005b610361600480360381019061035c9190612ad8565b611521565b60405161036e9190612ef8565b60405180910390f35b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103fe90612f70565b60405180910390fd5b6000602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b6000602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156104f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104eb90612fdc565b60405180910390fd5b6000602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015442610544919061302b565b90506213c68062ffffff1681101561057257806213c68062ffffff1661056a919061302b565b9150506105bc565b60026213c680610582919061305f565b62ffffff168110156105b6578060026213c68061059f919061305f565b62ffffff166105ae919061302b565b9150506105bc565b60009150505b919050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6105ef611577565b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61063b611577565b80602360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f37386e8982a31575c6c2c1f575f367bceab1f4e562b779812030f2a3f398b64f60405160405180910390a250565b6106ca6115fe565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074e90612fdc565b60405180910390fd5b60007f0000000000000000000000007eea1e71e6c8a5b9ac7e941e32a9196932ec3d3273ffffffffffffffffffffffffffffffffffffffff16636f77926b336040518263ffffffff1660e01b81526004016107b29190612e95565b60c060405180830381865afa1580156107cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f3919061320e565b90508060000151610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090613287565b60405180910390fd5b61084233611644565b15610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990613319565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372c6289b846040518263ffffffff1660e01b81526004016108df9190613348565b602060405180830381865afa1580156108fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109209190613378565b9050678ac7230489e800008110158015610944575069021e19e0c9bab24000008111155b610983576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097a90613417565b60405180910390fd5b600061098d6112db565b905081602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555042602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055506000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff0219169083151502179055506a7c13bc4b2c133c56000000811015610ac8576a3e09de2596099e2b000000811015610ac0576a1cf389cd46047d03000000811015610ab8576003610abb565b60025b610ac3565b60015b610acb565b60005b60ff16602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550610b1e8383611692565b610b3a846fffffffffffffffffffffffffffffffff16846119e8565b610b993330866fffffffffffffffffffffffffffffffff167f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff16611f27909392919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167fe542c32803c768a7f90212ed7949c154ed8a82e949bb2112011a8d935dd0737f83604051610bdf9190612b1e565b60405180910390a2505050610bf2611fa9565b50565b610bfd6115fe565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8190612fdc565b60405180910390fd5b426213c68062ffffff16602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154610ce19190613437565b1115610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d19906134b7565b60405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166372c6289b670de0b6b3a76400006040518263ffffffff1660e01b8152600401610d879190613512565b602060405180830381865afa158015610da4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dc89190613378565b905060006103e8610dd833611fb3565b610de2919061352d565b90508181610df0919061359e565b90506000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000181905550610e973366038d7ea4c6800083610e51919061352d565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b3373ffffffffffffffffffffffffffffffffffffffff167f5329b89678b0f095cae2abe10b88ad57329871ee9296ae8f358a46b9fa0ff32866038d7ea4c6800083610ee2919061352d565b604051610eef9190612b1e565b60405180910390a25050610f01611fa9565b565b60038160048110610f1357600080fd5b600802016000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060154908060070154905088565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612f70565b60405180910390fd5b6001602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612f70565b60405180910390fd5b6000602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f0000000000000000000000007eea1e71e6c8a5b9ac7e941e32a9196932ec3d3281565b611153612a12565b602560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d790612fdc565b60405180910390fd5b6000602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff16151515158152602001600482016005806020026040519081016040528092919082600580156112a1576020028201915b81548152602001906001019080831161128d575b50505050508152505090506112b583611fb3565b81600001818152505080915050919050565b6112cf611577565b6112d960006124e6565b565b60007f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016113369190612e95565b602060405180830381865afa158015611353573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113779190613378565b905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b602360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142d90612f70565b60405180910390fd5b6001602460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160006101000a81548160ff02191690831515021790555050565b6213c68081565b6114a3611577565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115155760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161150c9190612e95565b60405180910390fd5b61151e816124e6565b50565b6000602560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b61157f6125ac565b73ffffffffffffffffffffffffffffffffffffffff1661159d61137c565b73ffffffffffffffffffffffffffffffffffffffff16146115fc576115c06125ac565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016115f39190612e95565b60405180910390fd5b565b60026000540361163a576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600081905550565b600080602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154119050919050565b600073ffffffffffffffffffffffffffffffffffffffff16826020015173ffffffffffffffffffffffffffffffffffffffff161461173c578060246000846020015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600060058110611724576117236135cf565b5b0160008282546117349190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826040015173ffffffffffffffffffffffffffffffffffffffff16146117e6578060246000846040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004016001600581106117ce576117cd6135cf565b5b0160008282546117de9190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826060015173ffffffffffffffffffffffffffffffffffffffff1614611890578060246000846060015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600260058110611878576118776135cf565b5b0160008282546118889190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff16826080015173ffffffffffffffffffffffffffffffffffffffff161461193a578060246000846080015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600360058110611922576119216135cf565b5b0160008282546119329190613437565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168260a0015173ffffffffffffffffffffffffffffffffffffffff16146119e45780602460008460a0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206004016004600581106119cc576119cb6135cf565b5b0160008282546119dc9190613437565b925050819055505b5050565b6000602460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060a00160405290816000820154815260200160018201548152602001600282015481526020016003820160009054906101000a900460ff1615151515815260200160048201600580602002604051908101604052809291908260058015611aa9576020028201915b815481526020019060010190808311611a95575b5050505050815250509050611ac18260200151611644565b15611b3e57611b3d8260200151611af7856003856040015160048110611aea57611ae96135cf565b5b60080201600001546125b4565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611b4b8260400151611644565b8015611bba5750681b1ae4d6e2ef50000060246000846040015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600160058110611bb557611bb46135cf565b5b015410155b15611c3757611c368260400151611bf0856003856040015160048110611be357611be26135cf565b5b60080201600101546125b4565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611c448260600151611644565b8015611cb35750683635c9adc5dea0000060246000846060015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600260058110611cae57611cad6135cf565b5b015410155b15611d3057611d2f8260600151611ce9856003856040015160048110611cdc57611cdb6135cf565b5b60080201600201546125b4565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611d3d8260800151611644565b8015611dac5750686c6b935b8bbd40000060246000846080015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600360058110611da757611da66135cf565b5b015410155b15611e2957611e288260800151611de2856003856040015160048110611dd557611dd46135cf565b5b60080201600301546125b4565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b611e368260a00151611644565b8015611ea5575068a2a15d09519be00000602460008460a0015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401600460058110611ea057611e9f6135cf565b5b015410155b15611f2257611f218260a00151611edb856003856040015160048110611ece57611ecd6135cf565b5b60080201600401546125b4565b7f000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f73ffffffffffffffffffffffffffffffffffffffff166124679092919063ffffffff16565b5b505050565b611fa3848573ffffffffffffffffffffffffffffffffffffffff166323b872dd868686604051602401611f5c939291906135fe565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506127c4565b50505050565b6001600081905550565b600080602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160009054906101000a900460ff16156121ea57426213c680600261201c919061305f565b62ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461206e9190613437565b116120d8576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600481106120c9576120c86135cf565b5b600802016007015490506121e5565b426213c68062ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461212f9190613437565b11612199576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201546004811061218a576121896135cf565b5b600802016005015490506121e4565b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154915050612462565b5b6123c5565b426213c68060026121fb919061305f565b62ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461224d9190613437565b116122b7576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020154600481106122a8576122a76135cf565b5b600802016006015490506123c4565b426213c68062ffffff16602460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461230e9190613437565b11612378576003602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002015460048110612369576123686135cf565b5b600802016005015490506123c3565b602460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154915050612462565b5b5b612411602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154826125b4565b602460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015461245e9190613437565b9150505b919050565b6124e1838473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb858560405160240161249a929190613635565b604051602081830303815290604052915060e01b6020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506127c4565b505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b60006103e882036125d357600a836125cc919061359e565b90506127be565b6101f482036125f0576014836125e9919061359e565b90506127be565b61012c8203612619576064600384612608919061352d565b612612919061359e565b90506127be565b60c882036126355760328361262e919061359e565b90506127be565b606482036126515760648361264a919061359e565b90506127be565b6107d0820361266e57600583612667919061359e565b90506127be565b610fa08203612697576005600284612686919061352d565b612690919061359e565b90506127be565b61138882036126b4576002836126ad919061359e565b90506127be565b60fa82036126d0576028836126c9919061359e565b90506127be565b609682036126f85760c86003846126e7919061352d565b6126f1919061359e565b90506127be565b603282036127145760c88361270d919061359e565b90506127be565b6109c482036127315760048361272a919061359e565b90506127be565b607d820361275a576107d0601984612749919061352d565b612753919061359e565b90506127be565b604b8203612783576107d0600f84612772919061352d565b61277c919061359e565b90506127be565b601982036127a05761019083612799919061359e565b90506127be565b6104e282036127bd576008836127b6919061359e565b90506127be565b5b92915050565b60006127ef828473ffffffffffffffffffffffffffffffffffffffff1661285b90919063ffffffff16565b90506000815114158015612814575080806020019051810190612812919061365e565b155b1561285657826040517f5274afe700000000000000000000000000000000000000000000000000000000815260040161284d9190612e95565b60405180910390fd5b505050565b606061286983836000612871565b905092915050565b6060814710156128b857306040517fcd7860590000000000000000000000000000000000000000000000000000000081526004016128af9190612e95565b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff1684866040516128e191906136fc565b60006040518083038185875af1925050503d806000811461291e576040519150601f19603f3d011682016040523d82523d6000602084013e612923565b606091505b509150915061293386838361293e565b925050509392505050565b6060826129535761294e826129cd565b6129c5565b6000825114801561297b575060008473ffffffffffffffffffffffffffffffffffffffff163b145b156129bd57836040517f9996b3150000000000000000000000000000000000000000000000000000000081526004016129b49190612e95565b60405180910390fd5b8190506129c6565b5b9392505050565b6000815111156129e05780518082602001fd5b6040517f1425ea4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040518060a00160405280600081526020016000815260200160008152602001600015158152602001612a43612a49565b81525090565b6040518060a00160405280600590602082028036833780820191505090505090565b6000604051905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612aa582612a7a565b9050919050565b612ab581612a9a565b8114612ac057600080fd5b50565b600081359050612ad281612aac565b92915050565b600060208284031215612aee57612aed612a75565b5b6000612afc84828501612ac3565b91505092915050565b6000819050919050565b612b1881612b05565b82525050565b6000602082019050612b336000830184612b0f565b92915050565b6000819050919050565b6000612b5e612b59612b5484612a7a565b612b39565b612a7a565b9050919050565b6000612b7082612b43565b9050919050565b6000612b8282612b65565b9050919050565b612b9281612b77565b82525050565b6000602082019050612bad6000830184612b89565b92915050565b60006fffffffffffffffffffffffffffffffff82169050919050565b612bd881612bb3565b8114612be357600080fd5b50565b600081359050612bf581612bcf565b92915050565b600060208284031215612c1157612c10612a75565b5b6000612c1f84828501612be6565b91505092915050565b612c3181612b05565b8114612c3c57600080fd5b50565b600081359050612c4e81612c28565b92915050565b600060208284031215612c6a57612c69612a75565b5b6000612c7884828501612c3f565b91505092915050565b600061010082019050612c97600083018b612b0f565b612ca4602083018a612b0f565b612cb16040830189612b0f565b612cbe6060830188612b0f565b612ccb6080830187612b0f565b612cd860a0830186612b0f565b612ce560c0830185612b0f565b612cf260e0830184612b0f565b9998505050505050505050565b6000612d0a82612b65565b9050919050565b612d1a81612cff565b82525050565b6000602082019050612d356000830184612d11565b92915050565b612d4481612b05565b82525050565b60008115159050919050565b612d5f81612d4a565b82525050565b600060059050919050565b600081905092915050565b6000819050919050565b6000612d918383612d3b565b60208301905092915050565b6000602082019050919050565b612db381612d65565b612dbd8184612d70565b9250612dc882612d7b565b8060005b83811015612df9578151612de08782612d85565b9650612deb83612d9d565b925050600181019050612dcc565b505050505050565b61012082016000820151612e186000850182612d3b565b506020820151612e2b6020850182612d3b565b506040820151612e3e6040850182612d3b565b506060820151612e516060850182612d56565b506080820151612e646080850182612daa565b50505050565b600061012082019050612e806000830184612e01565b92915050565b612e8f81612a9a565b82525050565b6000602082019050612eaa6000830184612e86565b92915050565b600062ffffff82169050919050565b612ec881612eb0565b82525050565b6000602082019050612ee36000830184612ebf565b92915050565b612ef281612d4a565b82525050565b6000602082019050612f0d6000830184612ee9565b92915050565b600082825260208201905092915050565b7f4f6e6c7920626f742063616e2063616c6c20746869732066756e6374696f6e00600082015250565b6000612f5a601f83612f13565b9150612f6582612f24565b602082019050919050565b60006020820190508181036000830152612f8981612f4d565b9050919050565b7f4164647265737320697320626c61636b6c697374656400000000000000000000600082015250565b6000612fc6601683612f13565b9150612fd182612f90565b602082019050919050565b60006020820190508181036000830152612ff581612fb9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061303682612b05565b915061304183612b05565b925082820390508181111561305957613058612ffc565b5b92915050565b600061306a82612eb0565b915061307583612eb0565b925082820261308381612eb0565b915080821461309557613094612ffc565b5b5092915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6130ea826130a1565b810181811067ffffffffffffffff82111715613109576131086130b2565b5b80604052505050565b600061311c612a6b565b905061312882826130e1565b919050565b61313681612d4a565b811461314157600080fd5b50565b6000815190506131538161312d565b92915050565b60008151905061316881612aac565b92915050565b600060c082840312156131845761318361309c565b5b61318e60c0613112565b9050600061319e84828501613144565b60008301525060206131b284828501613159565b60208301525060406131c684828501613159565b60408301525060606131da84828501613159565b60608301525060806131ee84828501613159565b60808301525060a061320284828501613159565b60a08301525092915050565b600060c0828403121561322457613223612a75565b5b60006132328482850161316e565b91505092915050565b7f556e726567697374657265642075736572000000000000000000000000000000600082015250565b6000613271601183612f13565b915061327c8261323b565b602082019050919050565b600060208201905081810360008301526132a081613264565b9050919050565b7f596f752063616e6e6f742068617665206d6f7265207468616e203120646f6e6160008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b6000613303602483612f13565b915061330e826132a7565b604082019050919050565b60006020820190508181036000830152613332816132f6565b9050919050565b61334281612bb3565b82525050565b600060208201905061335d6000830184613339565b92915050565b60008151905061337281612c28565b92915050565b60006020828403121561338e5761338d612a75565b5b600061339c84828501613363565b91505092915050565b7f416d6f756e74206d757374206265206265747765656e20313020616e6420313060008201527f2c30303020646f6c6c6172730000000000000000000000000000000000000000602082015250565b6000613401602c83612f13565b915061340c826133a5565b604082019050919050565b60006020820190508181036000830152613430816133f4565b9050919050565b600061344282612b05565b915061344d83612b05565b925082820190508082111561346557613464612ffc565b5b92915050565b7f546f6b656e7320617265207374696c6c206c6f636b6564000000000000000000600082015250565b60006134a1601783612f13565b91506134ac8261346b565b602082019050919050565b600060208201905081810360008301526134d081613494565b9050919050565b6000819050919050565b60006134fc6134f76134f2846134d7565b612b39565b612bb3565b9050919050565b61350c816134e1565b82525050565b60006020820190506135276000830184613503565b92915050565b600061353882612b05565b915061354383612b05565b925082820261355181612b05565b9150828204841483151761356857613567612ffc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006135a982612b05565b91506135b483612b05565b9250826135c4576135c361356f565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006060820190506136136000830186612e86565b6136206020830185612e86565b61362d6040830184612b0f565b949350505050565b600060408201905061364a6000830185612e86565b6136576020830184612b0f565b9392505050565b60006020828403121561367457613673612a75565b5b600061368284828501613144565b91505092915050565b600081519050919050565b600081905092915050565b60005b838110156136bf5780820151818401526020810190506136a4565b60008484015250505050565b60006136d68261368b565b6136e08185613696565b93506136f08185602086016136a1565b80840191505092915050565b600061370882846136cb565b91508190509291505056fea2646970667358221220a89fbc103b218277eb8522e5738fc38d6926b3537e6065c669552a8f393ec84664736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f00000000000000000000000014690441b74bab2e3f72844a3f355bf51a721b1f0000000000000000000000007eea1e71e6c8a5b9ac7e941e32a9196932ec3d32
-----Decoded View---------------
Arg [0] : _token (address): 0xe4FeAb21b42919C5C960ed2B4BdFFc521E26881f
Arg [1] : initialOwner (address): 0x14690441b74bab2E3f72844a3f355bF51a721B1F
Arg [2] : initialUser (address): 0x7eea1e71E6C8A5b9ac7e941e32A9196932eC3D32
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000e4feab21b42919c5c960ed2b4bdffc521e26881f
Arg [1] : 00000000000000000000000014690441b74bab2e3f72844a3f355bf51a721b1f
Arg [2] : 0000000000000000000000007eea1e71e6c8a5b9ac7e941e32a9196932ec3d32
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.