More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 73 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Emergency Withdr... | 19581308 | 314 days ago | IN | 0 ETH | 0.00101308 | ||||
Vesting Salary | 19560594 | 317 days ago | IN | 0 ETH | 0.49769712 | ||||
Vesting Salary | 19437580 | 334 days ago | IN | 0 ETH | 0.0032572 | ||||
Vesting Salary | 19388407 | 341 days ago | IN | 0 ETH | 0.00344846 | ||||
Vesting Salary | 19380855 | 342 days ago | IN | 0 ETH | 0.00575298 | ||||
Vesting Salary | 19339240 | 348 days ago | IN | 0 ETH | 0.00508035 | ||||
Vesting Salary | 19338964 | 348 days ago | IN | 0 ETH | 0.00394878 | ||||
Vesting Salary | 19338875 | 348 days ago | IN | 0 ETH | 0.00405976 | ||||
Vesting Salary | 19338670 | 348 days ago | IN | 0 ETH | 0.00376941 | ||||
Vesting Salary | 19338629 | 348 days ago | IN | 0 ETH | 0.00397836 | ||||
Vesting Salary | 19338617 | 348 days ago | IN | 0 ETH | 0.00329844 | ||||
Vesting Salary | 19338595 | 348 days ago | IN | 0 ETH | 0.00433583 | ||||
Vesting Salary | 19138981 | 376 days ago | IN | 0 ETH | 0.00168965 | ||||
Vesting Salary | 19137589 | 376 days ago | IN | 0 ETH | 0.00174794 | ||||
Vesting Salary | 19132264 | 377 days ago | IN | 0 ETH | 0.00175667 | ||||
Vesting Salary | 19132204 | 377 days ago | IN | 0 ETH | 0.00177835 | ||||
Vesting Salary | 19131116 | 377 days ago | IN | 0 ETH | 0.00167535 | ||||
Vesting Salary | 19125385 | 378 days ago | IN | 0 ETH | 0.00176084 | ||||
Vesting Salary | 19125381 | 378 days ago | IN | 0 ETH | 0.00150334 | ||||
Vesting Salary | 19125348 | 378 days ago | IN | 0 ETH | 0.00193999 | ||||
Vesting Salary | 19125282 | 378 days ago | IN | 0 ETH | 0.00196694 | ||||
Vesting Salary | 19125280 | 378 days ago | IN | 0 ETH | 0.00184074 | ||||
Vesting Salary | 18933025 | 405 days ago | IN | 0 ETH | 0.00182004 | ||||
Vesting Salary | 18918892 | 407 days ago | IN | 0 ETH | 0.00157299 | ||||
Vesting Salary | 18917430 | 407 days ago | IN | 0 ETH | 0.0011416 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SalaryVesting
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-01 */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @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.encodeWithSelector(token.transfer.selector, 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.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @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); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @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.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * 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.isContract(address(token)); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @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; 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 require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // 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; } } // File: contracts/salaryvesting_new.sol pragma solidity ^0.8.18; contract SalaryVesting is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for ERC20; uint256 public period; ERC20 public TOKEN; struct Employee { uint256 salary; uint256 updateAt; uint256 createAt; uint256 monthVesting; uint256 oldSalary; uint256 timeExpired; bool isExpired; mapping (uint256 => bool) isPartTime; mapping (uint256 => uint256) partTimeSalaries; } mapping(address => Employee) public salaries; event Vesting(address addr, uint256 amount); constructor( uint256 _period, address _token ) { period = _period; TOKEN = ERC20(_token); } function setPartTime(address _addr, uint256 month, uint256 partTimeSalary) external onlyOwner { salaries[_addr].isPartTime[month] = true; salaries[_addr].partTimeSalaries[month] = partTimeSalary; } function vestingSalary() external nonReentrant { (uint256 salary, uint256 month) = _getSalaryCanVest(msg.sender); require(salary > 0, "No remaining salary to vest"); TOKEN.safeTransfer(msg.sender, salary.add(salaries[msg.sender].oldSalary)); salaries[msg.sender].updateAt = salaries[msg.sender].updateAt.add(month * period); salaries[msg.sender].monthVesting += month; if(salaries[msg.sender].oldSalary > 0) { salaries[msg.sender].oldSalary = 0; } emit Vesting(msg.sender, salary); } function getSalaryCanVest(address _addr) public view returns(uint256) { (uint256 salary, ) = _getSalaryCanVest(_addr); return salary.add(salaries[_addr].oldSalary); } function addEmployee(address[] calldata _addrs, uint256[] calldata _salaries, uint256[] calldata _startTimes) external onlyOwner { require(_addrs.length == _salaries.length, "Length mismatch"); require(_addrs.length == _startTimes.length, "Length mismatch"); for(uint256 i=0; i < _addrs.length; i++){ salaries[_addrs[i]].salary = _salaries[i]; salaries[_addrs[i]].createAt = _startTimes[i]; salaries[_addrs[i]].updateAt = _startTimes[i]; } } function setExpired(address _addr) external onlyOwner { salaries[_addr].isExpired = true; salaries[_addr].timeExpired = block.timestamp; } function setSalary(address _addr) external onlyOwner { (uint256 salary, uint256 month) = _getSalaryCanVest(msg.sender); salaries[_addr].updateAt = salaries[_addr].updateAt.add(month * period); salaries[_addr].monthVesting += month; salaries[_addr].oldSalary = salary; } function _getSalaryCanVest(address _addr) internal view returns(uint256, uint256) { uint256 result; if(salaries[_addr].salary == 0){ return (0, 0); } uint256 month; if(salaries[_addr].timeExpired == 0) { month = uint256(block.timestamp).sub(salaries[_addr].updateAt).div(period); } else { month = uint256(salaries[_addr].timeExpired).sub(salaries[_addr].updateAt).div(period); } for(uint256 i = salaries[_addr].monthVesting.add(1);i <= salaries[_addr].monthVesting.add(month); i++) { if(salaries[_addr].isPartTime[i]) { result += salaries[_addr].partTimeSalaries[i]; } else { result += salaries[_addr].salary; } } return (result, month); } function getCurrentMonthForWallet(address _addr) external view returns(uint256) { return uint256(block.timestamp).sub(salaries[_addr].createAt).div(period); } function setTokenAddress(address _addr) external onlyOwner { TOKEN = ERC20(_addr); } function emergencyWithdrawToken(uint256 _amount) external onlyOwner { TOKEN.safeTransfer(msg.sender, _amount); } function deleteEmployee(address _addr) external onlyOwner { delete salaries[_addr]; } function getBalance() public view returns (uint256) { return TOKEN.balanceOf(address(this)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_period","type":"uint256"},{"internalType":"address","name":"_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Vesting","type":"event"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"},{"internalType":"uint256[]","name":"_salaries","type":"uint256[]"},{"internalType":"uint256[]","name":"_startTimes","type":"uint256[]"}],"name":"addEmployee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"deleteEmployee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"emergencyWithdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getCurrentMonthForWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getSalaryCanVest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"salaries","outputs":[{"internalType":"uint256","name":"salary","type":"uint256"},{"internalType":"uint256","name":"updateAt","type":"uint256"},{"internalType":"uint256","name":"createAt","type":"uint256"},{"internalType":"uint256","name":"monthVesting","type":"uint256"},{"internalType":"uint256","name":"oldSalary","type":"uint256"},{"internalType":"uint256","name":"timeExpired","type":"uint256"},{"internalType":"bool","name":"isExpired","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setExpired","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint256","name":"month","type":"uint256"},{"internalType":"uint256","name":"partTimeSalary","type":"uint256"}],"name":"setPartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setSalary","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestingSalary","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620025df380380620025df83398181016040528101906200003791906200021f565b620000576200004b620000ae60201b60201c565b620000b660201b60201c565b600180819055508160028190555080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000266565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b6000819050919050565b62000194816200017f565b8114620001a057600080fd5b50565b600081519050620001b48162000189565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001e782620001ba565b9050919050565b620001f981620001da565b81146200020557600080fd5b50565b6000815190506200021981620001ee565b92915050565b600080604083850312156200023957620002386200017a565b5b60006200024985828601620001a3565b92505060206200025c8582860162000208565b9150509250929050565b61236980620002766000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806382bfefc8116100a2578063d74712a411610071578063d74712a414610296578063d7c4b7fd146102b2578063ddb58722146102bc578063ef78d4fd146102d8578063f2fde38b146102f65761010b565b806382bfefc81461020e5780638da5cb5b1461022c5780638fb369e31461024a5780639a381ab41461027a5761010b565b8063518c9f5b116100de578063518c9f5b146101965780636e7c4ab1146101cc5780636ff9a7d9146101e8578063715018a6146102045761010b565b806312065fe01461011057806317909bb81461012e57806326a4e8d21461014a57806342faa75114610166575b600080fd5b610118610312565b60405161012591906117e4565b60405180910390f35b61014860048036038101906101439190611893565b6103b5565b005b610164600480360381019061015f91906118e6565b610486565b005b610180600480360381019061017b91906118e6565b6104d2565b60405161018d91906117e4565b60405180910390f35b6101b060048036038101906101ab91906118e6565b61053e565b6040516101c3979695949392919061192e565b60405180910390f35b6101e660048036038101906101e191906118e6565b61058d565b005b61020260048036038101906101fd91906118e6565b61061e565b005b61020c610783565b005b610216610797565b60405161022391906119fc565b60405180910390f35b6102346107bd565b6040516102419190611a26565b60405180910390f35b610264600480360381019061025f91906118e6565b6107e6565b60405161027191906117e4565b60405180910390f35b610294600480360381019061028f9190611afc565b610858565b005b6102b060048036038101906102ab9190611bb0565b610aaf565b005b6102ba610b07565b005b6102d660048036038101906102d191906118e6565b610ddd565b005b6102e0610e8a565b6040516102ed91906117e4565b60405180910390f35b610310600480360381019061030b91906118e6565b610e90565b005b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161036f9190611a26565b602060405180830381865afa15801561038c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b09190611bf2565b905090565b6103bd610f13565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600701600084815260200190815260200160002060006101000a81548160ff02191690831515021790555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801600084815260200190815260200160002081905550505050565b61048e610f13565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806104de83610f91565b509050610536600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401548261134a90919063ffffffff16565b915050919050565b60046020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060160009054906101000a900460ff16905087565b610595610f13565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160009055600482016000905560058201600090556006820160006101000a81549060ff0219169055505050565b610626610f13565b60008061063233610f91565b91509150610698600254826106479190611c4e565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134a90919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546107309190611c90565b9250508190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040181905550505050565b61078b610f13565b6107956000611360565b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610851600254610843600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201544261142490919063ffffffff16565b61143a90919063ffffffff16565b9050919050565b610860610f13565b8383905086869050146108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f90611d21565b60405180910390fd5b8181905086869050146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790611d21565b60405180910390fd5b60005b86869050811015610aa65784848281811061091157610910611d41565b5b905060200201356004600089898581811061092f5761092e611d41565b5b905060200201602081019061094491906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555082828281811061099857610997611d41565b5b90506020020135600460008989858181106109b6576109b5611d41565b5b90506020020160208101906109cb91906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550828282818110610a1f57610a1e611d41565b5b9050602002013560046000898985818110610a3d57610a3c611d41565b5b9050602002016020810190610a5291906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080610a9e90611d70565b9150506108f3565b50505050505050565b610ab7610f13565b610b043382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114509092919063ffffffff16565b50565b610b0f6114d6565b600080610b1b33610f91565b9150915060008211610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611e04565b60405180910390fd5b610c0333610bbb600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401548561134a90919063ffffffff16565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114509092919063ffffffff16565b610c6560025482610c149190611c4e565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134a90919063ffffffff16565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003016000828254610cfd9190611c90565b925050819055506000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401541115610d98576000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401819055505b7fd8c062e1121a4d8261df9c04930989855139a33297e0f1598cf7779aa5695b813383604051610dc9929190611e24565b60405180910390a15050610ddb611525565b565b610de5610f13565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160006101000a81548160ff02191690831515021790555042600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555050565b60025481565b610e98610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90611ebf565b60405180910390fd5b610f1081611360565b50565b610f1b61152e565b73ffffffffffffffffffffffffffffffffffffffff16610f396107bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690611f2b565b60405180910390fd5b565b600080600080600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015403610fec576000809250925050611345565b600080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154036110a7576110a0600254611092600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101544261142490919063ffffffff16565b61143a90919063ffffffff16565b9050611155565b611152600254611144600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015461142490919063ffffffff16565b61143a90919063ffffffff16565b90505b60006111ad6001600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015461134a90919063ffffffff16565b90505b61120582600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015461134a90919063ffffffff16565b811161133b57600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600701600082815260200190815260200160002060009054906101000a900460ff16156112d757600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801600082815260200190815260200160002054836112d09190611c90565b9250611328565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154836113259190611c90565b92505b808061133390611d70565b9150506111b0565b5081819350935050505b915091565b600081836113589190611c90565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836114329190611f4b565b905092915050565b600081836114489190611fae565b905092915050565b6114d18363a9059cbb60e01b848460405160240161146f929190611e24565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611536565b505050565b60026001540361151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115129061202b565b60405180910390fd5b6002600181905550565b60018081905550565b600033905090565b6000611598826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115fe9092919063ffffffff16565b90506000815114806115ba5750808060200190518101906115b99190612077565b5b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090612116565b60405180910390fd5b505050565b606061160d8484600085611616565b90509392505050565b60608247101561165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906121a8565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516116849190612239565b60006040518083038185875af1925050503d80600081146116c1576040519150601f19603f3d011682016040523d82523d6000602084013e6116c6565b606091505b50915091506116d7878383876116e3565b92505050949350505050565b6060831561174557600083510361173d576116fd85611758565b61173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061229c565b60405180910390fd5b5b829050611750565b61174f838361177b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008251111561178e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c29190612311565b60405180910390fd5b6000819050919050565b6117de816117cb565b82525050565b60006020820190506117f960008301846117d5565b92915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061183482611809565b9050919050565b61184481611829565b811461184f57600080fd5b50565b6000813590506118618161183b565b92915050565b611870816117cb565b811461187b57600080fd5b50565b60008135905061188d81611867565b92915050565b6000806000606084860312156118ac576118ab6117ff565b5b60006118ba86828701611852565b93505060206118cb8682870161187e565b92505060406118dc8682870161187e565b9150509250925092565b6000602082840312156118fc576118fb6117ff565b5b600061190a84828501611852565b91505092915050565b60008115159050919050565b61192881611913565b82525050565b600060e082019050611943600083018a6117d5565b61195060208301896117d5565b61195d60408301886117d5565b61196a60608301876117d5565b61197760808301866117d5565b61198460a08301856117d5565b61199160c083018461191f565b98975050505050505050565b6000819050919050565b60006119c26119bd6119b884611809565b61199d565b611809565b9050919050565b60006119d4826119a7565b9050919050565b60006119e6826119c9565b9050919050565b6119f6816119db565b82525050565b6000602082019050611a1160008301846119ed565b92915050565b611a2081611829565b82525050565b6000602082019050611a3b6000830184611a17565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611a6657611a65611a41565b5b8235905067ffffffffffffffff811115611a8357611a82611a46565b5b602083019150836020820283011115611a9f57611a9e611a4b565b5b9250929050565b60008083601f840112611abc57611abb611a41565b5b8235905067ffffffffffffffff811115611ad957611ad8611a46565b5b602083019150836020820283011115611af557611af4611a4b565b5b9250929050565b60008060008060008060608789031215611b1957611b186117ff565b5b600087013567ffffffffffffffff811115611b3757611b36611804565b5b611b4389828a01611a50565b9650965050602087013567ffffffffffffffff811115611b6657611b65611804565b5b611b7289828a01611aa6565b9450945050604087013567ffffffffffffffff811115611b9557611b94611804565b5b611ba189828a01611aa6565b92509250509295509295509295565b600060208284031215611bc657611bc56117ff565b5b6000611bd48482850161187e565b91505092915050565b600081519050611bec81611867565b92915050565b600060208284031215611c0857611c076117ff565b5b6000611c1684828501611bdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c59826117cb565b9150611c64836117cb565b9250828202611c72816117cb565b91508282048414831517611c8957611c88611c1f565b5b5092915050565b6000611c9b826117cb565b9150611ca6836117cb565b9250828201905080821115611cbe57611cbd611c1f565b5b92915050565b600082825260208201905092915050565b7f4c656e677468206d69736d617463680000000000000000000000000000000000600082015250565b6000611d0b600f83611cc4565b9150611d1682611cd5565b602082019050919050565b60006020820190508181036000830152611d3a81611cfe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d7b826117cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611dad57611dac611c1f565b5b600182019050919050565b7f4e6f2072656d61696e696e672073616c61727920746f20766573740000000000600082015250565b6000611dee601b83611cc4565b9150611df982611db8565b602082019050919050565b60006020820190508181036000830152611e1d81611de1565b9050919050565b6000604082019050611e396000830185611a17565b611e4660208301846117d5565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ea9602683611cc4565b9150611eb482611e4d565b604082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f15602083611cc4565b9150611f2082611edf565b602082019050919050565b60006020820190508181036000830152611f4481611f08565b9050919050565b6000611f56826117cb565b9150611f61836117cb565b9250828203905081811115611f7957611f78611c1f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611fb9826117cb565b9150611fc4836117cb565b925082611fd457611fd3611f7f565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612015601f83611cc4565b915061202082611fdf565b602082019050919050565b6000602082019050818103600083015261204481612008565b9050919050565b61205481611913565b811461205f57600080fd5b50565b6000815190506120718161204b565b92915050565b60006020828403121561208d5761208c6117ff565b5b600061209b84828501612062565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000612100602a83611cc4565b915061210b826120a4565b604082019050919050565b6000602082019050818103600083015261212f816120f3565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000612192602683611cc4565b915061219d82612136565b604082019050919050565b600060208201905081810360008301526121c181612185565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156121fc5780820151818401526020810190506121e1565b60008484015250505050565b6000612213826121c8565b61221d81856121d3565b935061222d8185602086016121de565b80840191505092915050565b60006122458284612208565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612286601d83611cc4565b915061229182612250565b602082019050919050565b600060208201905081810360008301526122b581612279565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b60006122e3826122bc565b6122ed8185611cc4565b93506122fd8185602086016121de565b612306816122c7565b840191505092915050565b6000602082019050818103600083015261232b81846122d8565b90509291505056fea2646970667358221220f8befcc7ca035e1f4c71c81d091b69a500c4235618c491391888b81b8d4dd32164736f6c634300081200330000000000000000000000000000000000000000000000000000000000278d00000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806382bfefc8116100a2578063d74712a411610071578063d74712a414610296578063d7c4b7fd146102b2578063ddb58722146102bc578063ef78d4fd146102d8578063f2fde38b146102f65761010b565b806382bfefc81461020e5780638da5cb5b1461022c5780638fb369e31461024a5780639a381ab41461027a5761010b565b8063518c9f5b116100de578063518c9f5b146101965780636e7c4ab1146101cc5780636ff9a7d9146101e8578063715018a6146102045761010b565b806312065fe01461011057806317909bb81461012e57806326a4e8d21461014a57806342faa75114610166575b600080fd5b610118610312565b60405161012591906117e4565b60405180910390f35b61014860048036038101906101439190611893565b6103b5565b005b610164600480360381019061015f91906118e6565b610486565b005b610180600480360381019061017b91906118e6565b6104d2565b60405161018d91906117e4565b60405180910390f35b6101b060048036038101906101ab91906118e6565b61053e565b6040516101c3979695949392919061192e565b60405180910390f35b6101e660048036038101906101e191906118e6565b61058d565b005b61020260048036038101906101fd91906118e6565b61061e565b005b61020c610783565b005b610216610797565b60405161022391906119fc565b60405180910390f35b6102346107bd565b6040516102419190611a26565b60405180910390f35b610264600480360381019061025f91906118e6565b6107e6565b60405161027191906117e4565b60405180910390f35b610294600480360381019061028f9190611afc565b610858565b005b6102b060048036038101906102ab9190611bb0565b610aaf565b005b6102ba610b07565b005b6102d660048036038101906102d191906118e6565b610ddd565b005b6102e0610e8a565b6040516102ed91906117e4565b60405180910390f35b610310600480360381019061030b91906118e6565b610e90565b005b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161036f9190611a26565b602060405180830381865afa15801561038c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103b09190611bf2565b905090565b6103bd610f13565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600701600084815260200190815260200160002060006101000a81548160ff02191690831515021790555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801600084815260200190815260200160002081905550505050565b61048e610f13565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806104de83610f91565b509050610536600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401548261134a90919063ffffffff16565b915050919050565b60046020528060005260406000206000915090508060000154908060010154908060020154908060030154908060040154908060050154908060060160009054906101000a900460ff16905087565b610595610f13565b600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600080820160009055600182016000905560028201600090556003820160009055600482016000905560058201600090556006820160006101000a81549060ff0219169055505050565b610626610f13565b60008061063233610f91565b91509150610698600254826106479190611c4e565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134a90919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060030160008282546107309190611c90565b9250508190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060040181905550505050565b61078b610f13565b6107956000611360565b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000610851600254610843600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201544261142490919063ffffffff16565b61143a90919063ffffffff16565b9050919050565b610860610f13565b8383905086869050146108a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089f90611d21565b60405180910390fd5b8181905086869050146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790611d21565b60405180910390fd5b60005b86869050811015610aa65784848281811061091157610910611d41565b5b905060200201356004600089898581811061092f5761092e611d41565b5b905060200201602081019061094491906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555082828281811061099857610997611d41565b5b90506020020135600460008989858181106109b6576109b5611d41565b5b90506020020160208101906109cb91906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020181905550828282818110610a1f57610a1e611d41565b5b9050602002013560046000898985818110610a3d57610a3c611d41565b5b9050602002016020810190610a5291906118e6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055508080610a9e90611d70565b9150506108f3565b50505050505050565b610ab7610f13565b610b043382600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114509092919063ffffffff16565b50565b610b0f6114d6565b600080610b1b33610f91565b9150915060008211610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5990611e04565b60405180910390fd5b610c0333610bbb600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401548561134a90919063ffffffff16565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114509092919063ffffffff16565b610c6560025482610c149190611c4e565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015461134a90919063ffffffff16565b600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018190555080600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003016000828254610cfd9190611c90565b925050819055506000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401541115610d98576000600460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600401819055505b7fd8c062e1121a4d8261df9c04930989855139a33297e0f1598cf7779aa5695b813383604051610dc9929190611e24565b60405180910390a15050610ddb611525565b565b610de5610f13565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060060160006101000a81548160ff02191690831515021790555042600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005018190555050565b60025481565b610e98610f13565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90611ebf565b60405180910390fd5b610f1081611360565b50565b610f1b61152e565b73ffffffffffffffffffffffffffffffffffffffff16610f396107bd565b73ffffffffffffffffffffffffffffffffffffffff1614610f8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8690611f2b565b60405180910390fd5b565b600080600080600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000015403610fec576000809250925050611345565b600080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060050154036110a7576110a0600254611092600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101544261142490919063ffffffff16565b61143a90919063ffffffff16565b9050611155565b611152600254611144600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154600460008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206005015461142490919063ffffffff16565b61143a90919063ffffffff16565b90505b60006111ad6001600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015461134a90919063ffffffff16565b90505b61120582600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206003015461134a90919063ffffffff16565b811161133b57600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600701600082815260200190815260200160002060009054906101000a900460ff16156112d757600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600801600082815260200190815260200160002054836112d09190611c90565b9250611328565b600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154836113259190611c90565b92505b808061133390611d70565b9150506111b0565b5081819350935050505b915091565b600081836113589190611c90565b905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836114329190611f4b565b905092915050565b600081836114489190611fae565b905092915050565b6114d18363a9059cbb60e01b848460405160240161146f929190611e24565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050611536565b505050565b60026001540361151b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115129061202b565b60405180910390fd5b6002600181905550565b60018081905550565b600033905090565b6000611598826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166115fe9092919063ffffffff16565b90506000815114806115ba5750808060200190518101906115b99190612077565b5b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f090612116565b60405180910390fd5b505050565b606061160d8484600085611616565b90509392505050565b60608247101561165b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611652906121a8565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516116849190612239565b60006040518083038185875af1925050503d80600081146116c1576040519150601f19603f3d011682016040523d82523d6000602084013e6116c6565b606091505b50915091506116d7878383876116e3565b92505050949350505050565b6060831561174557600083510361173d576116fd85611758565b61173c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117339061229c565b60405180910390fd5b5b829050611750565b61174f838361177b565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008251111561178e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c29190612311565b60405180910390fd5b6000819050919050565b6117de816117cb565b82525050565b60006020820190506117f960008301846117d5565b92915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061183482611809565b9050919050565b61184481611829565b811461184f57600080fd5b50565b6000813590506118618161183b565b92915050565b611870816117cb565b811461187b57600080fd5b50565b60008135905061188d81611867565b92915050565b6000806000606084860312156118ac576118ab6117ff565b5b60006118ba86828701611852565b93505060206118cb8682870161187e565b92505060406118dc8682870161187e565b9150509250925092565b6000602082840312156118fc576118fb6117ff565b5b600061190a84828501611852565b91505092915050565b60008115159050919050565b61192881611913565b82525050565b600060e082019050611943600083018a6117d5565b61195060208301896117d5565b61195d60408301886117d5565b61196a60608301876117d5565b61197760808301866117d5565b61198460a08301856117d5565b61199160c083018461191f565b98975050505050505050565b6000819050919050565b60006119c26119bd6119b884611809565b61199d565b611809565b9050919050565b60006119d4826119a7565b9050919050565b60006119e6826119c9565b9050919050565b6119f6816119db565b82525050565b6000602082019050611a1160008301846119ed565b92915050565b611a2081611829565b82525050565b6000602082019050611a3b6000830184611a17565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112611a6657611a65611a41565b5b8235905067ffffffffffffffff811115611a8357611a82611a46565b5b602083019150836020820283011115611a9f57611a9e611a4b565b5b9250929050565b60008083601f840112611abc57611abb611a41565b5b8235905067ffffffffffffffff811115611ad957611ad8611a46565b5b602083019150836020820283011115611af557611af4611a4b565b5b9250929050565b60008060008060008060608789031215611b1957611b186117ff565b5b600087013567ffffffffffffffff811115611b3757611b36611804565b5b611b4389828a01611a50565b9650965050602087013567ffffffffffffffff811115611b6657611b65611804565b5b611b7289828a01611aa6565b9450945050604087013567ffffffffffffffff811115611b9557611b94611804565b5b611ba189828a01611aa6565b92509250509295509295509295565b600060208284031215611bc657611bc56117ff565b5b6000611bd48482850161187e565b91505092915050565b600081519050611bec81611867565b92915050565b600060208284031215611c0857611c076117ff565b5b6000611c1684828501611bdd565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c59826117cb565b9150611c64836117cb565b9250828202611c72816117cb565b91508282048414831517611c8957611c88611c1f565b5b5092915050565b6000611c9b826117cb565b9150611ca6836117cb565b9250828201905080821115611cbe57611cbd611c1f565b5b92915050565b600082825260208201905092915050565b7f4c656e677468206d69736d617463680000000000000000000000000000000000600082015250565b6000611d0b600f83611cc4565b9150611d1682611cd5565b602082019050919050565b60006020820190508181036000830152611d3a81611cfe565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611d7b826117cb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611dad57611dac611c1f565b5b600182019050919050565b7f4e6f2072656d61696e696e672073616c61727920746f20766573740000000000600082015250565b6000611dee601b83611cc4565b9150611df982611db8565b602082019050919050565b60006020820190508181036000830152611e1d81611de1565b9050919050565b6000604082019050611e396000830185611a17565b611e4660208301846117d5565b9392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ea9602683611cc4565b9150611eb482611e4d565b604082019050919050565b60006020820190508181036000830152611ed881611e9c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611f15602083611cc4565b9150611f2082611edf565b602082019050919050565b60006020820190508181036000830152611f4481611f08565b9050919050565b6000611f56826117cb565b9150611f61836117cb565b9250828203905081811115611f7957611f78611c1f565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611fb9826117cb565b9150611fc4836117cb565b925082611fd457611fd3611f7f565b5b828204905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612015601f83611cc4565b915061202082611fdf565b602082019050919050565b6000602082019050818103600083015261204481612008565b9050919050565b61205481611913565b811461205f57600080fd5b50565b6000815190506120718161204b565b92915050565b60006020828403121561208d5761208c6117ff565b5b600061209b84828501612062565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000612100602a83611cc4565b915061210b826120a4565b604082019050919050565b6000602082019050818103600083015261212f816120f3565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000612192602683611cc4565b915061219d82612136565b604082019050919050565b600060208201905081810360008301526121c181612185565b9050919050565b600081519050919050565b600081905092915050565b60005b838110156121fc5780820151818401526020810190506121e1565b60008484015250505050565b6000612213826121c8565b61221d81856121d3565b935061222d8185602086016121de565b80840191505092915050565b60006122458284612208565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000612286601d83611cc4565b915061229182612250565b602082019050919050565b600060208201905081810360008301526122b581612279565b9050919050565b600081519050919050565b6000601f19601f8301169050919050565b60006122e3826122bc565b6122ed8185611cc4565b93506122fd8185602086016121de565b612306816122c7565b840191505092915050565b6000602082019050818103600083015261232b81846122d8565b90509291505056fea2646970667358221220f8befcc7ca035e1f4c71c81d091b69a500c4235618c491391888b81b8d4dd32164736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000278d00000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
-----Decoded View---------------
Arg [0] : _period (uint256): 2592000
Arg [1] : _token (address): 0xdAC17F958D2ee523a2206206994597C13D831ec7
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000278d00
Arg [1] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Deployed Bytecode Sourcemap
49492:4290:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53671:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50255:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53323:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51065:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50001:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;53564:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51966:312;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9817:103;;;:::i;:::-;;49645:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9169:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53143:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51262:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53429:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50483:574;;;:::i;:::-;;51797:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49617:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10075:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53671:108;53714:7;53741:5;;;;;;;;;;;:15;;;53765:4;53741:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53734:37;;53671:108;:::o;50255:220::-;9055:13;:11;:13::i;:::-;50396:4:::1;50360:8;:15;50369:5;50360:15;;;;;;;;;;;;;;;:26;;:33;50387:5;50360:33;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;50453:14;50411:8;:15;50420:5;50411:15;;;;;;;;;;;;;;;:32;;:39;50444:5;50411:39;;;;;;;;;;;:56;;;;50255:220:::0;;;:::o;53323:98::-;9055:13;:11;:13::i;:::-;53407:5:::1;53393;;:20;;;;;;;;;;;;;;;;;;53323:98:::0;:::o;51065:189::-;51126:7;51147:14;51167:24;51185:5;51167:17;:24::i;:::-;51146:45;;;51209:37;51220:8;:15;51229:5;51220:15;;;;;;;;;;;;;;;:25;;;51209:6;:10;;:37;;;;:::i;:::-;51202:44;;;51065:189;;;:::o;50001:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53564:99::-;9055:13;:11;:13::i;:::-;53640:8:::1;:15;53649:5;53640:15;;;;;;;;;;;;;;;;53633:22:::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53564:99:::0;:::o;51966:312::-;9055:13;:11;:13::i;:::-;52032:14:::1;52048:13:::0;52066:29:::1;52084:10;52066:17;:29::i;:::-;52031:64;;;;52133:44;52170:6;;52162:5;:14;;;;:::i;:::-;52133:8;:15;52142:5;52133:15;;;;;;;;;;;;;;;:24;;;:28;;:44;;;;:::i;:::-;52106:8;:15;52115:5;52106:15;;;;;;;;;;;;;;;:24;;:71;;;;52220:5;52188:8;:15;52197:5;52188:15;;;;;;;;;;;;;;;:28;;;:37;;;;;;;:::i;:::-;;;;;;;;52264:6;52236:8;:15;52245:5;52236:15;;;;;;;;;;;;;;;:25;;:34;;;;52020:258;;51966:312:::0;:::o;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;49645:18::-;;;;;;;;;;;;;:::o;9169:87::-;9215:7;9242:6;;;;;;;;;;;9235:13;;9169:87;:::o;53143:172::-;53214:7;53241:66;53300:6;;53241:54;53270:8;:15;53279:5;53270:15;;;;;;;;;;;;;;;:24;;;53249:15;53241:28;;:54;;;;:::i;:::-;:58;;:66;;;;:::i;:::-;53234:73;;53143:172;;;:::o;51262:523::-;9055:13;:11;:13::i;:::-;51427:9:::1;;:16;;51410:6;;:13;;:33;51402:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;51499:11;;:18;;51482:6;;:13;;:35;51474:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51554:9;51550:228;51571:6;;:13;;51567:1;:17;51550:228;;;51634:9;;51644:1;51634:12;;;;;;;:::i;:::-;;;;;;;;51605:8;:19;51614:6;;51621:1;51614:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51605:19;;;;;;;;;;;;;;;:26;;:41;;;;51692:11;;51704:1;51692:14;;;;;;;:::i;:::-;;;;;;;;51661:8;:19;51670:6;;51677:1;51670:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51661:19;;;;;;;;;;;;;;;:28;;:45;;;;51752:11;;51764:1;51752:14;;;;;;;:::i;:::-;;;;;;;;51721:8;:19;51730:6;;51737:1;51730:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;51721:19;;;;;;;;;;;;;;;:28;;:45;;;;51586:3;;;;;:::i;:::-;;;;51550:228;;;;51262:523:::0;;;;;;:::o;53429:127::-;9055:13;:11;:13::i;:::-;53508:39:::1;53527:10;53539:7;53508:5;;;;;;;;;;;:18;;;;:39;;;;;:::i;:::-;53429:127:::0;:::o;50483:574::-;48513:21;:19;:21::i;:::-;50542:14:::1;50558:13:::0;50576:29:::1;50594:10;50576:17;:29::i;:::-;50541:64;;;;50633:1;50624:6;:10;50616:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;50677:74;50696:10;50708:42;50719:8;:20;50728:10;50719:20;;;;;;;;;;;;;;;:30;;;50708:6;:10;;:42;;;;:::i;:::-;50677:5;;;;;;;;;;;:18;;;;:74;;;;;:::i;:::-;50794:49;50836:6;;50828:5;:14;;;;:::i;:::-;50794:8;:20;50803:10;50794:20;;;;;;;;;;;;;;;:29;;;:33;;:49;;;;:::i;:::-;50762:8;:20;50771:10;50762:20;;;;;;;;;;;;;;;:29;;:81;;;;50891:5;50854:8;:20;50863:10;50854:20;;;;;;;;;;;;;;;:33;;;:42;;;;;;;:::i;:::-;;;;;;;;50943:1;50910:8;:20;50919:10;50910:20;;;;;;;;;;;;;;;:30;;;:34;50907:100;;;50994:1;50961:8;:20;50970:10;50961:20;;;;;;;;;;;;;;;:30;;:34;;;;50907:100;51022:27;51030:10;51042:6;51022:27;;;;;;;:::i;:::-;;;;;;;;50530:527;;48557:20:::0;:18;:20::i;:::-;50483:574::o;51797:161::-;9055:13;:11;:13::i;:::-;51890:4:::1;51862:8;:15;51871:5;51862:15;;;;;;;;;;;;;;;:25;;;:32;;;;;;;;;;;;;;;;;;51935:15;51905:8;:15;51914:5;51905:15;;;;;;;;;;;;;;;:27;;:45;;;;51797:161:::0;:::o;49617:21::-;;;;:::o;10075:201::-;9055:13;:11;:13::i;:::-;10184:1:::1;10164:22;;:8;:22;;::::0;10156:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;9334:132::-;9409:12;:10;:12::i;:::-;9398:23;;:7;:5;:7::i;:::-;:23;;;9390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9334:132::o;52286:850::-;52350:7;52359;52379:14;52433:1;52407:8;:15;52416:5;52407:15;;;;;;;;;;;;;;;:22;;;:27;52404:71;;52458:1;52461;52450:13;;;;;;;52404:71;52485:13;52543:1;52512:8;:15;52521:5;52512:15;;;;;;;;;;;;;;;:27;;;:32;52509:257;;52569:66;52628:6;;52569:54;52598:8;:15;52607:5;52598:15;;;;;;;;;;;;;;;:24;;;52577:15;52569:28;;:54;;;;:::i;:::-;:58;;:66;;;;:::i;:::-;52561:74;;52509:257;;;52676:78;52747:6;;52676:66;52717:8;:15;52726:5;52717:15;;;;;;;;;;;;;;;:24;;;52684:8;:15;52693:5;52684:15;;;;;;;;;;;;;;;:27;;;52676:40;;:66;;;;:::i;:::-;:70;;:78;;;;:::i;:::-;52668:86;;52509:257;52782:9;52794:35;52827:1;52794:8;:15;52803:5;52794:15;;;;;;;;;;;;;;;:28;;;:32;;:35;;;;:::i;:::-;52782:47;;52778:316;52835:39;52868:5;52835:8;:15;52844:5;52835:15;;;;;;;;;;;;;;;:28;;;:32;;:39;;;;:::i;:::-;52830:1;:44;52778:316;;52899:8;:15;52908:5;52899:15;;;;;;;;;;;;;;;:26;;:29;52926:1;52899:29;;;;;;;;;;;;;;;;;;;;;52896:187;;;52959:8;:15;52968:5;52959:15;;;;;;;;;;;;;;;:32;;:35;52992:1;52959:35;;;;;;;;;;;;52949:45;;;;;:::i;:::-;;;52896:187;;;53045:8;:15;53054:5;53045:15;;;;;;;;;;;;;;;:22;;;53035:32;;;;;:::i;:::-;;;52896:187;52876:3;;;;;:::i;:::-;;;;52778:316;;;;53114:6;53122:5;53106:22;;;;;;52286:850;;;;:::o;2876:98::-;2934:7;2965:1;2961;:5;;;;:::i;:::-;2954:12;;2876:98;;;;:::o;10436:191::-;10510:16;10529:6;;;;;;;;;;;10510:25;;10555:8;10546:6;;:17;;;;;;;;;;;;;;;;;;10610:8;10579:40;;10600:8;10579:40;;;;;;;;;;;;10499:128;10436:191;:::o;3257:98::-;3315:7;3346:1;3342;:5;;;;:::i;:::-;3335:12;;3257:98;;;;:::o;4013:::-;4071:7;4102:1;4098;:5;;;;:::i;:::-;4091:12;;4013:98;;;;:::o;40053:177::-;40136:86;40156:5;40186:23;;;40211:2;40215:5;40163:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40136:19;:86::i;:::-;40053:177;;;:::o;48593:293::-;47995:1;48727:7;;:19;48719:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47995:1;48860:7;:18;;;;48593:293::o;48894:213::-;47951:1;49077:7;:22;;;;48894:213::o;7720:98::-;7773:7;7800:10;7793:17;;7720:98;:::o;44399:649::-;44823:23;44849:69;44877:4;44849:69;;;;;;;;;;;;;;;;;44857:5;44849:27;;;;:69;;;;;:::i;:::-;44823:95;;44958:1;44937:10;:17;:22;:56;;;;44974:10;44963:30;;;;;;;;;;;;:::i;:::-;44937:56;44929:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;44469:579;44399:649;;:::o;14624:229::-;14761:12;14793:52;14815:6;14823:4;14829:1;14832:12;14793:21;:52::i;:::-;14786:59;;14624:229;;;;;:::o;15744:455::-;15914:12;15972:5;15947:21;:30;;15939:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;16032:12;16046:23;16073:6;:11;;16092:5;16099:4;16073:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16031:73;;;;16122:69;16149:6;16157:7;16166:10;16178:12;16122:26;:69::i;:::-;16115:76;;;;15744:455;;;;;;:::o;18317:644::-;18502:12;18531:7;18527:427;;;18580:1;18559:10;:17;:22;18555:290;;18777:18;18788:6;18777:10;:18::i;:::-;18769:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;18555:290;18866:10;18859:17;;;;18527:427;18909:33;18917:10;18929:12;18909:7;:33::i;:::-;18317:644;;;;;;;:::o;11867:326::-;11927:4;12184:1;12162:7;:19;;;:23;12155:30;;11867:326;;;:::o;19503:552::-;19684:1;19664:10;:17;:21;19660:388;;;19896:10;19890:17;19953:15;19940:10;19936:2;19932:19;19925:44;19660:388;20023:12;20016:20;;;;;;;;;;;:::i;:::-;;;;;;;;7:77:1;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:126;806:7;846:42;839:5;835:54;824:65;;769:126;;;:::o;901:96::-;938:7;967:24;985:5;967:24;:::i;:::-;956:35;;901:96;;;:::o;1003:122::-;1076:24;1094:5;1076:24;:::i;:::-;1069:5;1066:35;1056:63;;1115:1;1112;1105:12;1056:63;1003:122;:::o;1131:139::-;1177:5;1215:6;1202:20;1193:29;;1231:33;1258:5;1231:33;:::i;:::-;1131:139;;;;:::o;1276:122::-;1349:24;1367:5;1349:24;:::i;:::-;1342:5;1339:35;1329:63;;1388:1;1385;1378:12;1329:63;1276:122;:::o;1404:139::-;1450:5;1488:6;1475:20;1466:29;;1504:33;1531:5;1504:33;:::i;:::-;1404:139;;;;:::o;1549:619::-;1626:6;1634;1642;1691:2;1679:9;1670:7;1666:23;1662:32;1659:119;;;1697:79;;:::i;:::-;1659:119;1817:1;1842:53;1887:7;1878:6;1867:9;1863:22;1842:53;:::i;:::-;1832:63;;1788:117;1944:2;1970:53;2015:7;2006:6;1995:9;1991:22;1970:53;:::i;:::-;1960:63;;1915:118;2072:2;2098:53;2143:7;2134:6;2123:9;2119:22;2098:53;:::i;:::-;2088:63;;2043:118;1549:619;;;;;:::o;2174:329::-;2233:6;2282:2;2270:9;2261:7;2257:23;2253:32;2250:119;;;2288:79;;:::i;:::-;2250:119;2408:1;2433:53;2478:7;2469:6;2458:9;2454:22;2433:53;:::i;:::-;2423:63;;2379:117;2174:329;;;;:::o;2509:90::-;2543:7;2586:5;2579:13;2572:21;2561:32;;2509:90;;;:::o;2605:109::-;2686:21;2701:5;2686:21;:::i;:::-;2681:3;2674:34;2605:109;;:::o;2720:874::-;2975:4;3013:3;3002:9;2998:19;2990:27;;3027:71;3095:1;3084:9;3080:17;3071:6;3027:71;:::i;:::-;3108:72;3176:2;3165:9;3161:18;3152:6;3108:72;:::i;:::-;3190;3258:2;3247:9;3243:18;3234:6;3190:72;:::i;:::-;3272;3340:2;3329:9;3325:18;3316:6;3272:72;:::i;:::-;3354:73;3422:3;3411:9;3407:19;3398:6;3354:73;:::i;:::-;3437;3505:3;3494:9;3490:19;3481:6;3437:73;:::i;:::-;3520:67;3582:3;3571:9;3567:19;3558:6;3520:67;:::i;:::-;2720:874;;;;;;;;;;:::o;3600:60::-;3628:3;3649:5;3642:12;;3600:60;;;:::o;3666:142::-;3716:9;3749:53;3767:34;3776:24;3794:5;3776:24;:::i;:::-;3767:34;:::i;:::-;3749:53;:::i;:::-;3736:66;;3666:142;;;:::o;3814:126::-;3864:9;3897:37;3928:5;3897:37;:::i;:::-;3884:50;;3814:126;;;:::o;3946:140::-;4010:9;4043:37;4074:5;4043:37;:::i;:::-;4030:50;;3946:140;;;:::o;4092:159::-;4193:51;4238:5;4193:51;:::i;:::-;4188:3;4181:64;4092:159;;:::o;4257:250::-;4364:4;4402:2;4391:9;4387:18;4379:26;;4415:85;4497:1;4486:9;4482:17;4473:6;4415:85;:::i;:::-;4257:250;;;;:::o;4513:118::-;4600:24;4618:5;4600:24;:::i;:::-;4595:3;4588:37;4513:118;;:::o;4637:222::-;4730:4;4768:2;4757:9;4753:18;4745:26;;4781:71;4849:1;4838:9;4834:17;4825:6;4781:71;:::i;:::-;4637:222;;;;:::o;4865:117::-;4974:1;4971;4964:12;4988:117;5097:1;5094;5087:12;5111:117;5220:1;5217;5210:12;5251:568;5324:8;5334:6;5384:3;5377:4;5369:6;5365:17;5361:27;5351:122;;5392:79;;:::i;:::-;5351:122;5505:6;5492:20;5482:30;;5535:18;5527:6;5524:30;5521:117;;;5557:79;;:::i;:::-;5521:117;5671:4;5663:6;5659:17;5647:29;;5725:3;5717:4;5709:6;5705:17;5695:8;5691:32;5688:41;5685:128;;;5732:79;;:::i;:::-;5685:128;5251:568;;;;;:::o;5842:::-;5915:8;5925:6;5975:3;5968:4;5960:6;5956:17;5952:27;5942:122;;5983:79;;:::i;:::-;5942:122;6096:6;6083:20;6073:30;;6126:18;6118:6;6115:30;6112:117;;;6148:79;;:::i;:::-;6112:117;6262:4;6254:6;6250:17;6238:29;;6316:3;6308:4;6300:6;6296:17;6286:8;6282:32;6279:41;6276:128;;;6323:79;;:::i;:::-;6276:128;5842:568;;;;;:::o;6416:1309::-;6574:6;6582;6590;6598;6606;6614;6663:2;6651:9;6642:7;6638:23;6634:32;6631:119;;;6669:79;;:::i;:::-;6631:119;6817:1;6806:9;6802:17;6789:31;6847:18;6839:6;6836:30;6833:117;;;6869:79;;:::i;:::-;6833:117;6982:80;7054:7;7045:6;7034:9;7030:22;6982:80;:::i;:::-;6964:98;;;;6760:312;7139:2;7128:9;7124:18;7111:32;7170:18;7162:6;7159:30;7156:117;;;7192:79;;:::i;:::-;7156:117;7305:80;7377:7;7368:6;7357:9;7353:22;7305:80;:::i;:::-;7287:98;;;;7082:313;7462:2;7451:9;7447:18;7434:32;7493:18;7485:6;7482:30;7479:117;;;7515:79;;:::i;:::-;7479:117;7628:80;7700:7;7691:6;7680:9;7676:22;7628:80;:::i;:::-;7610:98;;;;7405:313;6416:1309;;;;;;;;:::o;7731:329::-;7790:6;7839:2;7827:9;7818:7;7814:23;7810:32;7807:119;;;7845:79;;:::i;:::-;7807:119;7965:1;7990:53;8035:7;8026:6;8015:9;8011:22;7990:53;:::i;:::-;7980:63;;7936:117;7731:329;;;;:::o;8066:143::-;8123:5;8154:6;8148:13;8139:22;;8170:33;8197:5;8170:33;:::i;:::-;8066:143;;;;:::o;8215:351::-;8285:6;8334:2;8322:9;8313:7;8309:23;8305:32;8302:119;;;8340:79;;:::i;:::-;8302:119;8460:1;8485:64;8541:7;8532:6;8521:9;8517:22;8485:64;:::i;:::-;8475:74;;8431:128;8215:351;;;;:::o;8572:180::-;8620:77;8617:1;8610:88;8717:4;8714:1;8707:15;8741:4;8738:1;8731:15;8758:410;8798:7;8821:20;8839:1;8821:20;:::i;:::-;8816:25;;8855:20;8873:1;8855:20;:::i;:::-;8850:25;;8910:1;8907;8903:9;8932:30;8950:11;8932:30;:::i;:::-;8921:41;;9111:1;9102:7;9098:15;9095:1;9092:22;9072:1;9065:9;9045:83;9022:139;;9141:18;;:::i;:::-;9022:139;8806:362;8758:410;;;;:::o;9174:191::-;9214:3;9233:20;9251:1;9233:20;:::i;:::-;9228:25;;9267:20;9285:1;9267:20;:::i;:::-;9262:25;;9310:1;9307;9303:9;9296:16;;9331:3;9328:1;9325:10;9322:36;;;9338:18;;:::i;:::-;9322:36;9174:191;;;;:::o;9371:169::-;9455:11;9489:6;9484:3;9477:19;9529:4;9524:3;9520:14;9505:29;;9371:169;;;;:::o;9546:165::-;9686:17;9682:1;9674:6;9670:14;9663:41;9546:165;:::o;9717:366::-;9859:3;9880:67;9944:2;9939:3;9880:67;:::i;:::-;9873:74;;9956:93;10045:3;9956:93;:::i;:::-;10074:2;10069:3;10065:12;10058:19;;9717:366;;;:::o;10089:419::-;10255:4;10293:2;10282:9;10278:18;10270:26;;10342:9;10336:4;10332:20;10328:1;10317:9;10313:17;10306:47;10370:131;10496:4;10370:131;:::i;:::-;10362:139;;10089:419;;;:::o;10514:180::-;10562:77;10559:1;10552:88;10659:4;10656:1;10649:15;10683:4;10680:1;10673:15;10700:233;10739:3;10762:24;10780:5;10762:24;:::i;:::-;10753:33;;10808:66;10801:5;10798:77;10795:103;;10878:18;;:::i;:::-;10795:103;10925:1;10918:5;10914:13;10907:20;;10700:233;;;:::o;10939:177::-;11079:29;11075:1;11067:6;11063:14;11056:53;10939:177;:::o;11122:366::-;11264:3;11285:67;11349:2;11344:3;11285:67;:::i;:::-;11278:74;;11361:93;11450:3;11361:93;:::i;:::-;11479:2;11474:3;11470:12;11463:19;;11122:366;;;:::o;11494:419::-;11660:4;11698:2;11687:9;11683:18;11675:26;;11747:9;11741:4;11737:20;11733:1;11722:9;11718:17;11711:47;11775:131;11901:4;11775:131;:::i;:::-;11767:139;;11494:419;;;:::o;11919:332::-;12040:4;12078:2;12067:9;12063:18;12055:26;;12091:71;12159:1;12148:9;12144:17;12135:6;12091:71;:::i;:::-;12172:72;12240:2;12229:9;12225:18;12216:6;12172:72;:::i;:::-;11919:332;;;;;:::o;12257:225::-;12397:34;12393:1;12385:6;12381:14;12374:58;12466:8;12461:2;12453:6;12449:15;12442:33;12257:225;:::o;12488:366::-;12630:3;12651:67;12715:2;12710:3;12651:67;:::i;:::-;12644:74;;12727:93;12816:3;12727:93;:::i;:::-;12845:2;12840:3;12836:12;12829:19;;12488:366;;;:::o;12860:419::-;13026:4;13064:2;13053:9;13049:18;13041:26;;13113:9;13107:4;13103:20;13099:1;13088:9;13084:17;13077:47;13141:131;13267:4;13141:131;:::i;:::-;13133:139;;12860:419;;;:::o;13285:182::-;13425:34;13421:1;13413:6;13409:14;13402:58;13285:182;:::o;13473:366::-;13615:3;13636:67;13700:2;13695:3;13636:67;:::i;:::-;13629:74;;13712:93;13801:3;13712:93;:::i;:::-;13830:2;13825:3;13821:12;13814:19;;13473:366;;;:::o;13845:419::-;14011:4;14049:2;14038:9;14034:18;14026:26;;14098:9;14092:4;14088:20;14084:1;14073:9;14069:17;14062:47;14126:131;14252:4;14126:131;:::i;:::-;14118:139;;13845:419;;;:::o;14270:194::-;14310:4;14330:20;14348:1;14330:20;:::i;:::-;14325:25;;14364:20;14382:1;14364:20;:::i;:::-;14359:25;;14408:1;14405;14401:9;14393:17;;14432:1;14426:4;14423:11;14420:37;;;14437:18;;:::i;:::-;14420:37;14270:194;;;;:::o;14470:180::-;14518:77;14515:1;14508:88;14615:4;14612:1;14605:15;14639:4;14636:1;14629:15;14656:185;14696:1;14713:20;14731:1;14713:20;:::i;:::-;14708:25;;14747:20;14765:1;14747:20;:::i;:::-;14742:25;;14786:1;14776:35;;14791:18;;:::i;:::-;14776:35;14833:1;14830;14826:9;14821:14;;14656:185;;;;:::o;14847:181::-;14987:33;14983:1;14975:6;14971:14;14964:57;14847:181;:::o;15034:366::-;15176:3;15197:67;15261:2;15256:3;15197:67;:::i;:::-;15190:74;;15273:93;15362:3;15273:93;:::i;:::-;15391:2;15386:3;15382:12;15375:19;;15034:366;;;:::o;15406:419::-;15572:4;15610:2;15599:9;15595:18;15587:26;;15659:9;15653:4;15649:20;15645:1;15634:9;15630:17;15623:47;15687:131;15813:4;15687:131;:::i;:::-;15679:139;;15406:419;;;:::o;15831:116::-;15901:21;15916:5;15901:21;:::i;:::-;15894:5;15891:32;15881:60;;15937:1;15934;15927:12;15881:60;15831:116;:::o;15953:137::-;16007:5;16038:6;16032:13;16023:22;;16054:30;16078:5;16054:30;:::i;:::-;15953:137;;;;:::o;16096:345::-;16163:6;16212:2;16200:9;16191:7;16187:23;16183:32;16180:119;;;16218:79;;:::i;:::-;16180:119;16338:1;16363:61;16416:7;16407:6;16396:9;16392:22;16363:61;:::i;:::-;16353:71;;16309:125;16096:345;;;;:::o;16447:229::-;16587:34;16583:1;16575:6;16571:14;16564:58;16656:12;16651:2;16643:6;16639:15;16632:37;16447:229;:::o;16682:366::-;16824:3;16845:67;16909:2;16904:3;16845:67;:::i;:::-;16838:74;;16921:93;17010:3;16921:93;:::i;:::-;17039:2;17034:3;17030:12;17023:19;;16682:366;;;:::o;17054:419::-;17220:4;17258:2;17247:9;17243:18;17235:26;;17307:9;17301:4;17297:20;17293:1;17282:9;17278:17;17271:47;17335:131;17461:4;17335:131;:::i;:::-;17327:139;;17054:419;;;:::o;17479:225::-;17619:34;17615:1;17607:6;17603:14;17596:58;17688:8;17683:2;17675:6;17671:15;17664:33;17479:225;:::o;17710:366::-;17852:3;17873:67;17937:2;17932:3;17873:67;:::i;:::-;17866:74;;17949:93;18038:3;17949:93;:::i;:::-;18067:2;18062:3;18058:12;18051:19;;17710:366;;;:::o;18082:419::-;18248:4;18286:2;18275:9;18271:18;18263:26;;18335:9;18329:4;18325:20;18321:1;18310:9;18306:17;18299:47;18363:131;18489:4;18363:131;:::i;:::-;18355:139;;18082:419;;;:::o;18507:98::-;18558:6;18592:5;18586:12;18576:22;;18507:98;;;:::o;18611:147::-;18712:11;18749:3;18734:18;;18611:147;;;;:::o;18764:246::-;18845:1;18855:113;18869:6;18866:1;18863:13;18855:113;;;18954:1;18949:3;18945:11;18939:18;18935:1;18930:3;18926:11;18919:39;18891:2;18888:1;18884:10;18879:15;;18855:113;;;19002:1;18993:6;18988:3;18984:16;18977:27;18826:184;18764:246;;;:::o;19016:386::-;19120:3;19148:38;19180:5;19148:38;:::i;:::-;19202:88;19283:6;19278:3;19202:88;:::i;:::-;19195:95;;19299:65;19357:6;19352:3;19345:4;19338:5;19334:16;19299:65;:::i;:::-;19389:6;19384:3;19380:16;19373:23;;19124:278;19016:386;;;;:::o;19408:271::-;19538:3;19560:93;19649:3;19640:6;19560:93;:::i;:::-;19553:100;;19670:3;19663:10;;19408:271;;;;:::o;19685:179::-;19825:31;19821:1;19813:6;19809:14;19802:55;19685:179;:::o;19870:366::-;20012:3;20033:67;20097:2;20092:3;20033:67;:::i;:::-;20026:74;;20109:93;20198:3;20109:93;:::i;:::-;20227:2;20222:3;20218:12;20211:19;;19870:366;;;:::o;20242:419::-;20408:4;20446:2;20435:9;20431:18;20423:26;;20495:9;20489:4;20485:20;20481:1;20470:9;20466:17;20459:47;20523:131;20649:4;20523:131;:::i;:::-;20515:139;;20242:419;;;:::o;20667:99::-;20719:6;20753:5;20747:12;20737:22;;20667:99;;;:::o;20772:102::-;20813:6;20864:2;20860:7;20855:2;20848:5;20844:14;20840:28;20830:38;;20772:102;;;:::o;20880:377::-;20968:3;20996:39;21029:5;20996:39;:::i;:::-;21051:71;21115:6;21110:3;21051:71;:::i;:::-;21044:78;;21131:65;21189:6;21184:3;21177:4;21170:5;21166:16;21131:65;:::i;:::-;21221:29;21243:6;21221:29;:::i;:::-;21216:3;21212:39;21205:46;;20972:285;20880:377;;;;:::o;21263:313::-;21376:4;21414:2;21403:9;21399:18;21391:26;;21463:9;21457:4;21453:20;21449:1;21438:9;21434:17;21427:47;21491:78;21564:4;21555:6;21491:78;:::i;:::-;21483:86;;21263:313;;;;:::o
Swarm Source
ipfs://f8befcc7ca035e1f4c71c81d091b69a500c4235618c491391888b81b8d4dd321
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.