Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
LinearVestingHub
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; import { Initializable } from "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import {Proxied} from "./vendor/hardhat-deploy/Proxied.sol"; import { ReentrancyGuardUpgradeable } from "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; import { PausableUpgradeable } from "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import {_getTknMaxWithdraw} from "./functions/VestingFormulaFunctions.sol"; import {Vesting} from "./structs/SVesting.sol"; // BE CAREFUL: DOT NOT CHANGE THE ORDER OF INHERITED CONTRACT contract LinearVestingHub is Initializable, Proxied, ReentrancyGuardUpgradeable, PausableUpgradeable { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; // solhint-disable-next-line max-line-length ////////////////////////////////////////// CONSTANTS AND IMMUTABLES /////////////////////////////////// // GEL Token // solhint-disable var-name-mixedcase IERC20 public immutable TOKEN; // VESTING_TRE address public immutable VESTING_TREASURY; // solhint-enable var-name-mixedcase // !!!!!!!!!!!!!!!!!!!!!!!! DO NOT CHANGE ORDER !!!!!!!!!!!!!!!!!!!!!!!!!!!!! mapping(address => uint256) public nextVestingIdByReceiver; mapping(address => Vesting[]) public vestingsByReceiver; uint256 public totalWithdrawn; EnumerableSet.AddressSet private _receivers; event LogAddVestings(uint256 sumTokenBalances); event LogAddVesting( uint256 id, address receiver, uint256 allocation, uint256 startTime, uint256 cliffDuration, uint256 duration ); event LogRemoveVesting(uint256 id, address receiver, uint256 unvestedToken); event LogIncreaseVestingBalance( uint256 id, address receiver, uint256 oldTokenBalance, uint256 newTokenBalance ); event LogDecreaseVestingBalance( uint256 id, address receiver, uint256 oldTokenBalance, uint256 newTokenBalance ); event LogWithdraw(uint256 id, address receiver, uint256 amountOfTokens); // !!!!!!!!!!!!!!!!!!!!!!!! MODIFIER !!!!!!!!!!!!!!!!!!!!!!!!!!!!! modifier onlyProxyAdminOrReceiver(address _receiver) { require( msg.sender == _proxyAdmin() || msg.sender == _receiver, "LinearVestingHub:: only owner or receiver." ); _; } constructor(IERC20 token_, address vestingTreasury_) { TOKEN = token_; VESTING_TREASURY = vestingTreasury_; } function initialize() external initializer { __ReentrancyGuard_init(); __Pausable_init(); } // !!!!!!!!!!!!!!!!!!!!!!!! ADMIN FUNCTIONS !!!!!!!!!!!!!!!!!!!!!!!!!!!!! function pause() external onlyProxyAdmin { _pause(); } function unpause() external onlyProxyAdmin { _unpause(); } function withdrawAllTokens() external onlyProxyAdmin whenPaused { uint256 balance = TOKEN.balanceOf(address(this)); require(balance > 0, "LinearVestingHub::withdrawAllTokens: 0 balance"); TOKEN.safeTransfer(VESTING_TREASURY, balance); } function addVestings(Vesting[] calldata vestings_) external onlyProxyAdmin { uint256 totalBalance; for (uint256 i = 0; i < vestings_.length; i++) { _addVesting(vestings_[i]); emit LogAddVesting( vestings_[i].id, vestings_[i].receiver, vestings_[i].tokenBalance, vestings_[i].startTime, vestings_[i].cliffDuration, vestings_[i].duration ); totalBalance = totalBalance + vestings_[i].tokenBalance; } TOKEN.safeTransferFrom(VESTING_TREASURY, address(this), totalBalance); emit LogAddVestings(totalBalance); } function addVesting(Vesting calldata vesting_) external onlyProxyAdmin { _addVesting(vesting_); TOKEN.safeTransferFrom( VESTING_TREASURY, address(this), vesting_.tokenBalance ); emit LogAddVesting( vesting_.id, vesting_.receiver, vesting_.tokenBalance, vesting_.startTime, vesting_.cliffDuration, vesting_.duration ); } function removeVesting(address receiver_, uint8 vestingId_) external onlyProxyAdminOrReceiver(receiver_) { Vesting memory vesting = vestingsByReceiver[receiver_][vestingId_]; require( vesting.receiver != address(0), "LinearVestingHub::removeVesting: vesting non existing." ); delete vestingsByReceiver[receiver_][vestingId_]; _tryRemoveReceiver(receiver_); TOKEN.safeTransfer(VESTING_TREASURY, vesting.tokenBalance); emit LogRemoveVesting( vesting.id, vesting.receiver, vesting.tokenBalance ); } function increaseVestingBalance( address receiver_, uint256 vestingId_, uint256 addend_ ) external onlyProxyAdmin { Vesting storage vesting = vestingsByReceiver[receiver_][vestingId_]; require( vesting.receiver != address(0), "LinearVestingHub::increaseVestingBalance: vesting non existing." ); require( addend_ > 0, "LinearVestingHub::increaseVestingBalance: addend_ 0" ); require( //solhint-disable-next-line not-rely-on-time block.timestamp < vesting.startTime + vesting.duration, "LinearVestingHub::increaseVestingBalance: cannot increase a completed vesting" ); uint256 initTokenBalance = vesting.tokenBalance; vesting.tokenBalance = initTokenBalance + addend_; TOKEN.safeTransferFrom(VESTING_TREASURY, address(this), addend_); emit LogIncreaseVestingBalance( vestingId_, receiver_, initTokenBalance, vesting.tokenBalance ); } // solhint-disable-next-line function-max-lines function decreaseVestingBalance( address receiver_, uint256 vestingId_, uint256 subtrahend_ ) external onlyProxyAdmin { Vesting storage vesting = vestingsByReceiver[receiver_][vestingId_]; uint256 startTime = vesting.startTime; uint256 duration = vesting.duration; uint256 initTokenBalance = vesting.tokenBalance; require( vesting.receiver != address(0), "LinearVestingHub::decreaseVestingBalance: vesting non existing." ); require( subtrahend_ > 0, "LinearVestingHub::decreaseVestingBalance: subtrahend_ 0" ); require( subtrahend_ <= initTokenBalance, "LinearVestingHub::decreaseVestingBalance: subtrahend_ gt remaining token balance" ); require( //solhint-disable-next-line not-rely-on-time block.timestamp < startTime + duration, "LinearVestingHub::decreaseVestingBalance: cannot decrease a completed vesting" ); require( _getTknMaxWithdraw( initTokenBalance, vesting.withdrawnTokens, startTime, vesting.cliffDuration, duration ) <= initTokenBalance - subtrahend_, "LinearVestingHub::decreaseVestingBalance: cannot decrease vested tokens" ); uint256 newTokenBalance = initTokenBalance - subtrahend_; vesting.tokenBalance = newTokenBalance; if (newTokenBalance == 0) { delete vestingsByReceiver[receiver_][vestingId_]; _tryRemoveReceiver(receiver_); } TOKEN.safeTransfer(VESTING_TREASURY, subtrahend_); emit LogDecreaseVestingBalance( vestingId_, receiver_, initTokenBalance, newTokenBalance ); } // !!!!!!!!!!!!!!!!!!!!!!!! USER FUNCTIONS !!!!!!!!!!!!!!!!!!!!!!!!!!!!! // solhint-disable-next-line function-max-lines function withdraw( address receiver_, uint256 vestingId_, address to_, uint256 value_ ) external whenNotPaused nonReentrant onlyProxyAdminOrReceiver(receiver_) { Vesting storage vesting = vestingsByReceiver[receiver_][vestingId_]; uint256 startTime = vesting.startTime; uint256 cliffDuration = vesting.cliffDuration; uint256 initTokenBalance = vesting.tokenBalance; require( vesting.receiver != address(0), "LinearVestingHub::withdraw: vesting non existing." ); require(value_ > 0, "LinearVestingHub::withdraw: value_ 0"); require( //solhint-disable-next-line not-rely-on-time block.timestamp > startTime + cliffDuration, "LinearVestingHub::withdraw: cliffDuration period." ); require( value_ <= _getTknMaxWithdraw( initTokenBalance, vesting.withdrawnTokens, startTime, cliffDuration, vesting.duration ), "LinearVestingHub::withdraw: receiver try to withdraw more than max withdraw" ); vesting.tokenBalance = initTokenBalance - value_; vesting.withdrawnTokens = vesting.withdrawnTokens + value_; totalWithdrawn = totalWithdrawn + value_; if (vesting.tokenBalance == 0) { delete vestingsByReceiver[receiver_][vestingId_]; _tryRemoveReceiver(receiver_); } TOKEN.safeTransfer(to_, value_); emit LogWithdraw(vestingId_, receiver_, value_); } // !!!!!!!!!!!!!!!!!!!!!!!! HELPERS FUNCTIONS !!!!!!!!!!!!!!!!!!!!!!!!!!!!! function isReceiver(address receiver_) external view returns (bool) { return _receivers.contains(receiver_); } function receiverAt(uint256 index_) external view returns (address) { return _receivers.at(index_); } function receivers() external view returns (address[] memory r) { r = new address[](_receivers.length()); for (uint256 i = 0; i < _receivers.length(); i++) r[i] = _receivers.at(i); } function numberOfReceivers() external view returns (uint256) { return _receivers.length(); } // !!!!!!!!!!!!!!!!!!!!!!!! INTERNAL FUNCTIONS !!!!!!!!!!!!!!!!!!!!!!!!!!!!! function _addVesting(Vesting calldata vesting_) internal { uint256 nextVestingId = nextVestingIdByReceiver[vesting_.receiver]; require( vesting_.receiver != address(0), "LinearVestingHub::_addVesting: invalid receiver" ); require( nextVestingId == vesting_.id, "LinearVestingHub::_addVesting: wrong vesting id" ); require( vesting_.tokenBalance > 0, "LinearVestingHub::_addVesting: 0 vesting_tokenBalance" ); _receivers.add(vesting_.receiver); vestingsByReceiver[vesting_.receiver].push(vesting_); nextVestingIdByReceiver[vesting_.receiver] = nextVestingId + 1; // More explicit. } function _tryRemoveReceiver(address receiver_) internal { for (uint256 i = 0; i < nextVestingIdByReceiver[receiver_]; i++) if (vestingsByReceiver[receiver_][i].receiver != address(0)) return; _receivers.remove(receiver_); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { _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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; function _getVestedTkns( uint256 tknBalance_, uint256 tknWithdrawn_, uint256 startDate_, uint256 duration_ ) view returns (uint256) { if (block.timestamp < startDate_) return 0; if (block.timestamp >= startDate_ + duration_) return tknBalance_ + tknWithdrawn_; return ((tknBalance_ + tknWithdrawn_) * (block.timestamp - startDate_)) / duration_; } function _getTknMaxWithdraw( uint256 tknBalance_, uint256 tknWithdrawn_, uint256 startDate_, uint256 cliffDuration_, uint256 duration_ ) view returns (uint256) { // Vesting has not started and/or cliff has not passed if (block.timestamp < startDate_ + cliffDuration_) return 0; uint256 vestedTkns = _getVestedTkns( tknBalance_, tknWithdrawn_, startDate_, duration_ ); return vestedTkns > tknWithdrawn_ ? vestedTkns - tknWithdrawn_ : 0; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.10; struct Vesting { uint8 id; address receiver; uint256 tokenBalance; // remaining token balance uint256 withdrawnTokens; // uint256 startTime; // vesting start time. uint256 cliffDuration; // lockup time. uint256 duration; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Proxied { /// @notice to be used by initialisation / postUpgrade function so that only the proxy's admin can execute them /// It also allows these functions to be called inside a contructor /// even if the contract is meant to be used without proxy modifier proxied() { address proxyAdminAddress = _proxyAdmin(); // With hardhat-deploy proxies // the proxyAdminAddress is zero only for the implementation contract // if the implementation contract want to be used as a standalone/immutable contract // it simply has to execute the `proxied` function // This ensure the proxyAdminAddress is never zero post deployment // And allow you to keep the same code for both proxied contract and immutable contract if (proxyAdminAddress == address(0)) { // ensure can not be called twice when used outside of proxy : no admin // solhint-disable-next-line security/no-inline-assembly assembly { sstore( 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF ) } } else { require(msg.sender == proxyAdminAddress); } _; } modifier onlyProxyAdmin() { require(msg.sender == _proxyAdmin(), "NOT_AUTHORIZED"); _; } function _proxyAdmin() internal view returns (address ownerAddress) { // solhint-disable-next-line security/no-inline-assembly assembly { ownerAddress := sload( 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 ) } } }
{ "evmVersion": "london", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 1000 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"contract IERC20","name":"token_","type":"address"},{"internalType":"address","name":"vestingTreasury_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocation","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"duration","type":"uint256"}],"name":"LogAddVesting","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sumTokenBalances","type":"uint256"}],"name":"LogAddVestings","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldTokenBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTokenBalance","type":"uint256"}],"name":"LogDecreaseVestingBalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"oldTokenBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTokenBalance","type":"uint256"}],"name":"LogIncreaseVestingBalance","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"unvestedToken","type":"uint256"}],"name":"LogRemoveVesting","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfTokens","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VESTING_TREASURY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenBalance","type":"uint256"},{"internalType":"uint256","name":"withdrawnTokens","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"internalType":"struct Vesting","name":"vesting_","type":"tuple"}],"name":"addVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenBalance","type":"uint256"},{"internalType":"uint256","name":"withdrawnTokens","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"internalType":"struct Vesting[]","name":"vestings_","type":"tuple[]"}],"name":"addVestings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint256","name":"vestingId_","type":"uint256"},{"internalType":"uint256","name":"subtrahend_","type":"uint256"}],"name":"decreaseVestingBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint256","name":"vestingId_","type":"uint256"},{"internalType":"uint256","name":"addend_","type":"uint256"}],"name":"increaseVestingBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"}],"name":"isReceiver","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nextVestingIdByReceiver","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfReceivers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index_","type":"uint256"}],"name":"receiverAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receivers","outputs":[{"internalType":"address[]","name":"r","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint8","name":"vestingId_","type":"uint8"}],"name":"removeVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalWithdrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestingsByReceiver","outputs":[{"internalType":"uint8","name":"id","type":"uint8"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenBalance","type":"uint256"},{"internalType":"uint256","name":"withdrawnTokens","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"cliffDuration","type":"uint256"},{"internalType":"uint256","name":"duration","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver_","type":"address"},{"internalType":"uint256","name":"vestingId_","type":"uint256"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"value_","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200300138038062003001833981016040819052620000349162000065565b6001600160a01b039182166080521660a052620000a4565b6001600160a01b03811681146200006257600080fd5b50565b600080604083850312156200007957600080fd5b825162000086816200004c565b602084015190925062000099816200004c565b809150509250929050565b60805160a051612ed56200012c600039600081816102b40152818161057f01528181610ee601528181611257015281816113db015281816117200152611c0e0152600081816102e3015281816104650152818161055d01528181610b8d01528181610ec301528181611235015281816113b9015281816116fe0152611bec0152612ed56000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806371cf9a03116100cd578063834802e211610081578063a9e1b2e911610066578063a9e1b2e914610320578063c623562514610333578063e98a67af1461034657600080fd5b8063834802e2146103055780638456cb591461031857600080fd5b806375c3f4bc116100b257806375c3f4bc146102af5780638129fc1c146102d657806382bfefc8146102de57600080fd5b806371cf9a031461024857806373e82e1f1461029c57600080fd5b8063477d566b116101245780634b319713116101095780634b319713146102145780635c975abb1461021d57806365a0c3d41461022857600080fd5b8063477d566b146101d65780634b2084e31461020157600080fd5b806334168391116101555780633416839114610196578063392243e1146101ab5780633f4ba83a146101ce57600080fd5b80631007d57914610171578063280da6fa1461018c575b600080fd5b610179610359565b6040519081526020015b60405180910390f35b61019461036a565b005b61019e6105a7565b6040516101839190612a37565b6101be6101b9366004612a99565b610656565b6040519015158152602001610183565b610194610669565b6101e96101e4366004612ab6565b6106e6565b6040516001600160a01b039091168152602001610183565b61019461020f366004612acf565b6106f3565b61017960995481565b60655460ff166101be565b610179610236366004612a99565b60976020526000908152604090205481565b61025b610256366004612b17565b610c0c565b6040805160ff90981688526001600160a01b039096166020880152948601939093526060850191909152608084015260a083015260c082015260e001610183565b6101946102aa366004612b52565b610c72565b6101e97f000000000000000000000000000000000000000000000000000000000000000081565b610194610f69565b6101e97f000000000000000000000000000000000000000000000000000000000000000081565b610194610313366004612b8b565b61102b565b6101946112b5565b61019461032e366004612c00565b611330565b610194610341366004612c18565b611497565b610194610354366004612c18565b6117a1565b6000610365609a611c8d565b905090565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146103e25760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60655460ff166104345760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103d9565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa1580156104b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d89190612c4d565b9050600081116105505760405162461bcd60e51b815260206004820152602e60248201527f4c696e65617256657374696e674875623a3a7769746864726177416c6c546f6b60448201527f656e733a20302062616c616e636500000000000000000000000000000000000060648201526084016103d9565b6105a46001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000083611c97565b50565b60606105b3609a611c8d565b67ffffffffffffffff8111156105cb576105cb612c66565b6040519080825280602002602001820160405280156105f4578160200160208202803683370190505b50905060005b610604609a611c8d565b81101561065257610616609a82611d45565b82828151811061062857610628612c7c565b6001600160a01b03909216602092830291909101909101528061064a81612ca8565b9150506105fa565b5090565b6000610663609a83611d58565b92915050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146106dc5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6106e4611d7a565b565b6000610663609a83611d45565b60655460ff16156107465760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103d9565b600260015414156107995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d9565b6002600155836107c77fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b0316336001600160a01b031614806107ee5750336001600160a01b038216145b61084d5760405162461bcd60e51b815260206004820152602a60248201527f4c696e65617256657374696e674875623a3a206f6e6c79206f776e6572206f72604482015269103932b1b2b4bb32b91760b11b60648201526084016103d9565b6001600160a01b038516600090815260986020526040812080548690811061087757610877612c7c565b60009182526020909120600360069092020190810154600482015460018301548354939450919290919061010090046001600160a01b03166109215760405162461bcd60e51b815260206004820152603160248201527f4c696e65617256657374696e674875623a3a77697468647261773a207665737460448201527f696e67206e6f6e206578697374696e672e00000000000000000000000000000060648201526084016103d9565b600086116109965760405162461bcd60e51b8152602060048201526024808201527f4c696e65617256657374696e674875623a3a77697468647261773a2076616c7560448201527f655f20300000000000000000000000000000000000000000000000000000000060648201526084016103d9565b6109a08284612cc3565b4211610a145760405162461bcd60e51b815260206004820152603160248201527f4c696e65617256657374696e674875623a3a77697468647261773a20636c696660448201527f664475726174696f6e20706572696f642e00000000000000000000000000000060648201526084016103d9565b610a2981856002015485858860050154611e16565b861115610ac45760405162461bcd60e51b815260206004820152604b60248201527f4c696e65617256657374696e674875623a3a77697468647261773a207265636560448201527f697665722074727920746f207769746864726177206d6f7265207468616e206d60648201527f6178207769746864726177000000000000000000000000000000000000000000608482015260a4016103d9565b610ace8682612cdb565b60018501556002840154610ae3908790612cc3565b6002850155609954610af6908790612cc3565b6099556001840154610b80576001600160a01b0389166000908152609860205260409020805489908110610b2c57610b2c612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155610b8089611e66565b610bb46001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168888611c97565b604080518981526001600160a01b038b1660208201529081018790527f125e889e0ad284210ec4c8448f648c2a782a6d7f2f9d607aefd518485a78c7f49060600160405180910390a150506001805550505050505050565b60986020528160005260406000208181548110610c2857600080fd5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015460ff851697506101009094046001600160a01b031695509193909287565b81610c9b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b0316336001600160a01b03161480610cc25750336001600160a01b038216145b610d215760405162461bcd60e51b815260206004820152602a60248201527f4c696e65617256657374696e674875623a3a206f6e6c79206f776e6572206f72604482015269103932b1b2b4bb32b91760b11b60648201526084016103d9565b6001600160a01b0383166000908152609860205260408120805460ff8516908110610d4e57610d4e612c7c565b60009182526020918290206040805160e0810182526006909302909101805460ff811684526001600160a01b03610100909104169383018490526001810154918301919091526002810154606083015260038101546080830152600481015460a08301526005015460c08201529150610e2f5760405162461bcd60e51b815260206004820152603660248201527f4c696e65617256657374696e674875623a3a72656d6f766556657374696e673a60448201527f2076657374696e67206e6f6e206578697374696e672e0000000000000000000060648201526084016103d9565b6001600160a01b0384166000908152609860205260409020805460ff8516908110610e5c57610e5c612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155610eb084611e66565b6040810151610f0b906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016907f000000000000000000000000000000000000000000000000000000000000000090611c97565b8051602080830151604080850151815160ff90951685526001600160a01b039092169284019290925282820152517fcc7cb7b0d06831b26c6c7e9154ed9f990e4840414e557099ef58865e9b7b23889181900360600190a150505050565b600054610100900460ff1680610f82575060005460ff16155b610fe55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611007576000805461ffff19166101011790555b61100f611efd565b611017611fa3565b80156105a4576000805461ff001916905550565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b03161461109e5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6000805b82811015611227576110ca8484838181106110bf576110bf612c7c565b905060e00201612051565b7f06fc5b6b2d43fca67bd1ca001c48c949ea6259448923e4512d3e1b1582288f3c8484838181106110fd576110fd612c7c565b61111392602060e0909202019081019150612cf2565b85858481811061112557611125612c7c565b905060e00201602001602081019061113d9190612a99565b86868581811061114f5761114f612c7c565b905060e002016040013587878681811061116b5761116b612c7c565b905060e002016080013588888781811061118757611187612c7c565b905060e0020160a001358989888181106111a3576111a3612c7c565b6040805160ff90991689526001600160a01b039097166020890152958701949094526060860192909252608085015260c060e09093020182013560a0840152500160405180910390a18383828181106111fe576111fe612c7c565b905060e0020160400135826112139190612cc3565b91508061121f81612ca8565b9150506110a2565b5061127d6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000030846122cc565b6040518181527f3c07993c4118929f7d1bc1f96556e025b08c8a40e7b91f3a22e8e76379759f9b9060200160405180910390a1505050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146113285760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6106e4612323565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146113a35760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6113ac81612051565b6114056001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000003060408501356122cc565b7f06fc5b6b2d43fca67bd1ca001c48c949ea6259448923e4512d3e1b1582288f3c6114336020830183612cf2565b6114436040840160208501612a99565b6040805160ff90931683526001600160a01b0390911660208301528084013590820152608080840135606083015260a0808501359183019190915260c080850135918301919091520160405180910390a150565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b03161461150a5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6001600160a01b038316600090815260986020526040812080548490811061153457611534612c7c565b60009182526020909120600690910201805490915061010090046001600160a01b03166115c95760405162461bcd60e51b815260206004820152603f60248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a2076657374696e67206e6f6e206578697374696e672e0060648201526084016103d9565b6000821161163f5760405162461bcd60e51b815260206004820152603360248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a20616464656e645f20300000000000000000000000000060648201526084016103d9565b806005015481600301546116539190612cc3565b42106116dd5760405162461bcd60e51b815260206004820152604d60248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f7420696e637265617365206120636f6d7060648201526c6c657465642076657374696e6760981b608482015260a4016103d9565b60018101546116ec8382612cc3565b60018301556117466001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000030866122cc565b6001820154604080518681526001600160a01b03881660208201528082018490526060810192909252517f0577e300c25de55846c5551822fcef4dac62f8bc86488986c6e456cef142a2a29181900360800190a15050505050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146118145760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6001600160a01b038316600090815260986020526040812080548490811061183e5761183e612c7c565b60009182526020909120600360069092020190810154600582015460018301548354939450919290919061010090046001600160a01b03166118e85760405162461bcd60e51b815260206004820152603f60248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2076657374696e67206e6f6e206578697374696e672e0060648201526084016103d9565b6000851161195e5760405162461bcd60e51b815260206004820152603760248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2073756274726168656e645f203000000000000000000060648201526084016103d9565b808511156119fa5760405162461bcd60e51b815260206004820152605060248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2073756274726168656e645f2067742072656d61696e6960648201527f6e6720746f6b656e2062616c616e636500000000000000000000000000000000608482015260a4016103d9565b611a048284612cc3565b4210611a8e5760405162461bcd60e51b815260206004820152604d60248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f74206465637265617365206120636f6d7060648201526c6c657465642076657374696e6760981b608482015260a4016103d9565b611a988582612cdb565b611aad82866002015486886004015487611e16565b1115611b475760405162461bcd60e51b815260206004820152604760248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f742064656372656173652076657374656460648201527f20746f6b656e7300000000000000000000000000000000000000000000000000608482015260a4016103d9565b6000611b538683612cdb565b60018601819055905080611bdf576001600160a01b0388166000908152609860205260409020805488908110611b8b57611b8b612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155611bdf88611e66565b611c336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000167f000000000000000000000000000000000000000000000000000000000000000088611c97565b604080518881526001600160a01b038a166020820152908101839052606081018290527fb1e81ffe78f5658a5247e9d85649fb95e0955fadccbe048ca2a278e54329219f9060800160405180910390a15050505050505050565b6000610663825490565b6040516001600160a01b038316602482015260448101829052611d409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526123ab565b505050565b6000611d518383612490565b9392505050565b6001600160a01b03811660009081526001830160205260408120541515611d51565b60655460ff16611dcc5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103d9565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611e228385612cc3565b421015611e3157506000611e5d565b6000611e3f878787866124ba565b9050858111611e4f576000611e59565b611e598682612cdb565b9150505b95945050505050565b60005b6001600160a01b038216600090815260976020526040902054811015611eed576001600160a01b0382166000908152609860205260408120805483908110611eb357611eb3612c7c565b600091825260209091206006909102015461010090046001600160a01b031614611edb575050565b80611ee581612ca8565b915050611e69565b50611ef9609a82612521565b5050565b600054610100900460ff1680611f16575060005460ff16155b611f795760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611f9b576000805461ffff19166101011790555b611017612536565b600054610100900460ff1680611fbc575060005460ff16155b61201f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015612041576000805461ffff19166101011790555b6120496125ec565b61101761269d565b60006097816120666040850160208601612a99565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905060006001600160a01b03168260200160208101906120a79190612a99565b6001600160a01b031614156121245760405162461bcd60e51b815260206004820152602f60248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a206960448201527f6e76616c6964207265636569766572000000000000000000000000000000000060648201526084016103d9565b6121316020830183612cf2565b60ff1681146121a85760405162461bcd60e51b815260206004820152602f60248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a207760448201527f726f6e672076657374696e67206964000000000000000000000000000000000060648201526084016103d9565b60008260400135116122225760405162461bcd60e51b815260206004820152603560248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a203060448201527f2076657374696e675f746f6b656e42616c616e6365000000000000000000000060648201526084016103d9565b61223d6122356040840160208501612a99565b609a90612759565b50609860006122526040850160208601612a99565b6001600160a01b031681526020808201929092526040016000908120805460018101825590825291902083916006020161228c8282612d0f565b5061229a9050816001612cc3565b609760006122ae6040860160208701612a99565b6001600160a01b031681526020810191909152604001600020555050565b6040516001600160a01b038085166024830152831660448201526064810182905261231d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611cdc565b50505050565b60655460ff16156123765760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103d9565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611df93390565b6000612400826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661276e9092919063ffffffff16565b805190915015611d40578080602001905181019061241e9190612dab565b611d405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103d9565b60008260000182815481106124a7576124a7612c7c565b9060005260206000200154905092915050565b6000824210156124cc57506000612519565b6124d68284612cc3565b42106124ed576124e68486612cc3565b9050612519565b816124f88442612cdb565b6125028688612cc3565b61250c9190612dcd565b6125169190612dec565b90505b949350505050565b6000611d51836001600160a01b03841661277d565b600054610100900460ff168061254f575060005460ff16155b6125b25760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff161580156125d4576000805461ffff19166101011790555b6001805580156105a4576000805461ff001916905550565b600054610100900460ff1680612605575060005460ff16155b6126685760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611017576000805461ffff191661010117905580156105a4576000805461ff001916905550565b600054610100900460ff16806126b6575060005460ff16155b6127195760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff1615801561273b576000805461ffff19166101011790555b6065805460ff1916905580156105a4576000805461ff001916905550565b6000611d51836001600160a01b038416612870565b606061251984846000856128bf565b600081815260018301602052604081205480156128665760006127a1600183612cdb565b85549091506000906127b590600190612cdb565b905081811461281a5760008660000182815481106127d5576127d5612c7c565b90600052602060002001549050808760000184815481106127f8576127f8612c7c565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061282b5761282b612e0e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610663565b6000915050610663565b60008181526001830160205260408120546128b757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610663565b506000610663565b6060824710156129375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103d9565b843b6129855760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103d9565b600080866001600160a01b031685876040516129a19190612e50565b60006040518083038185875af1925050503d80600081146129de576040519150601f19603f3d011682016040523d82523d6000602084013e6129e3565b606091505b50915091506129f38282866129fe565b979650505050505050565b60608315612a0d575081611d51565b825115612a1d5782518084602001fd5b8160405162461bcd60e51b81526004016103d99190612e6c565b6020808252825182820181905260009190848201906040850190845b81811015612a785783516001600160a01b031683529284019291840191600101612a53565b50909695505050505050565b6001600160a01b03811681146105a457600080fd5b600060208284031215612aab57600080fd5b8135611d5181612a84565b600060208284031215612ac857600080fd5b5035919050565b60008060008060808587031215612ae557600080fd5b8435612af081612a84565b9350602085013592506040850135612b0781612a84565b9396929550929360600135925050565b60008060408385031215612b2a57600080fd5b8235612b3581612a84565b946020939093013593505050565b60ff811681146105a457600080fd5b60008060408385031215612b6557600080fd5b8235612b7081612a84565b91506020830135612b8081612b43565b809150509250929050565b60008060208385031215612b9e57600080fd5b823567ffffffffffffffff80821115612bb657600080fd5b818501915085601f830112612bca57600080fd5b813581811115612bd957600080fd5b86602060e083028501011115612bee57600080fd5b60209290920196919550909350505050565b600060e08284031215612c1257600080fd5b50919050565b600080600060608486031215612c2d57600080fd5b8335612c3881612a84565b95602085013595506040909401359392505050565b600060208284031215612c5f57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612cbc57612cbc612c92565b5060010190565b60008219821115612cd657612cd6612c92565b500190565b600082821015612ced57612ced612c92565b500390565b600060208284031215612d0457600080fd5b8135611d5181612b43565b8135612d1a81612b43565b60ff8116905081548160ff1982161783556020840135612d3981612a84565b74ffffffffffffffffffffffffffffffffffffffff008160081b168374ffffffffffffffffffffffffffffffffffffffffff1984161717845550505060408201356001820155606082013560028201556080820135600382015560a0820135600482015560c082013560058201555050565b600060208284031215612dbd57600080fd5b81518015158114611d5157600080fd5b6000816000190483118215151615612de757612de7612c92565b500290565b600082612e0957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fd5b60005b83811015612e3f578181015183820152602001612e27565b8381111561231d5750506000910152565b60008251612e62818460208701612e24565b9190910192915050565b6020815260008251806020840152612e8b816040850160208701612e24565b601f01601f1916919091016040019291505056fea2646970667358221220587201f8849550589ddc86181fb9a9ab1cf99b61063f15cc1d022d42d9fd0cc464736f6c634300080a003300000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f3
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806371cf9a03116100cd578063834802e211610081578063a9e1b2e911610066578063a9e1b2e914610320578063c623562514610333578063e98a67af1461034657600080fd5b8063834802e2146103055780638456cb591461031857600080fd5b806375c3f4bc116100b257806375c3f4bc146102af5780638129fc1c146102d657806382bfefc8146102de57600080fd5b806371cf9a031461024857806373e82e1f1461029c57600080fd5b8063477d566b116101245780634b319713116101095780634b319713146102145780635c975abb1461021d57806365a0c3d41461022857600080fd5b8063477d566b146101d65780634b2084e31461020157600080fd5b806334168391116101555780633416839114610196578063392243e1146101ab5780633f4ba83a146101ce57600080fd5b80631007d57914610171578063280da6fa1461018c575b600080fd5b610179610359565b6040519081526020015b60405180910390f35b61019461036a565b005b61019e6105a7565b6040516101839190612a37565b6101be6101b9366004612a99565b610656565b6040519015158152602001610183565b610194610669565b6101e96101e4366004612ab6565b6106e6565b6040516001600160a01b039091168152602001610183565b61019461020f366004612acf565b6106f3565b61017960995481565b60655460ff166101be565b610179610236366004612a99565b60976020526000908152604090205481565b61025b610256366004612b17565b610c0c565b6040805160ff90981688526001600160a01b039096166020880152948601939093526060850191909152608084015260a083015260c082015260e001610183565b6101946102aa366004612b52565b610c72565b6101e97f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f381565b610194610f69565b6101e97f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea0581565b610194610313366004612b8b565b61102b565b6101946112b5565b61019461032e366004612c00565b611330565b610194610341366004612c18565b611497565b610194610354366004612c18565b6117a1565b6000610365609a611c8d565b905090565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146103e25760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064015b60405180910390fd5b60655460ff166104345760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103d9565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea056001600160a01b0316906370a0823190602401602060405180830381865afa1580156104b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d89190612c4d565b9050600081116105505760405162461bcd60e51b815260206004820152602e60248201527f4c696e65617256657374696e674875623a3a7769746864726177416c6c546f6b60448201527f656e733a20302062616c616e636500000000000000000000000000000000000060648201526084016103d9565b6105a46001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05167f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f383611c97565b50565b60606105b3609a611c8d565b67ffffffffffffffff8111156105cb576105cb612c66565b6040519080825280602002602001820160405280156105f4578160200160208202803683370190505b50905060005b610604609a611c8d565b81101561065257610616609a82611d45565b82828151811061062857610628612c7c565b6001600160a01b03909216602092830291909101909101528061064a81612ca8565b9150506105fa565b5090565b6000610663609a83611d58565b92915050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146106dc5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6106e4611d7a565b565b6000610663609a83611d45565b60655460ff16156107465760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103d9565b600260015414156107995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d9565b6002600155836107c77fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b0316336001600160a01b031614806107ee5750336001600160a01b038216145b61084d5760405162461bcd60e51b815260206004820152602a60248201527f4c696e65617256657374696e674875623a3a206f6e6c79206f776e6572206f72604482015269103932b1b2b4bb32b91760b11b60648201526084016103d9565b6001600160a01b038516600090815260986020526040812080548690811061087757610877612c7c565b60009182526020909120600360069092020190810154600482015460018301548354939450919290919061010090046001600160a01b03166109215760405162461bcd60e51b815260206004820152603160248201527f4c696e65617256657374696e674875623a3a77697468647261773a207665737460448201527f696e67206e6f6e206578697374696e672e00000000000000000000000000000060648201526084016103d9565b600086116109965760405162461bcd60e51b8152602060048201526024808201527f4c696e65617256657374696e674875623a3a77697468647261773a2076616c7560448201527f655f20300000000000000000000000000000000000000000000000000000000060648201526084016103d9565b6109a08284612cc3565b4211610a145760405162461bcd60e51b815260206004820152603160248201527f4c696e65617256657374696e674875623a3a77697468647261773a20636c696660448201527f664475726174696f6e20706572696f642e00000000000000000000000000000060648201526084016103d9565b610a2981856002015485858860050154611e16565b861115610ac45760405162461bcd60e51b815260206004820152604b60248201527f4c696e65617256657374696e674875623a3a77697468647261773a207265636560448201527f697665722074727920746f207769746864726177206d6f7265207468616e206d60648201527f6178207769746864726177000000000000000000000000000000000000000000608482015260a4016103d9565b610ace8682612cdb565b60018501556002840154610ae3908790612cc3565b6002850155609954610af6908790612cc3565b6099556001840154610b80576001600160a01b0389166000908152609860205260409020805489908110610b2c57610b2c612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155610b8089611e66565b610bb46001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05168888611c97565b604080518981526001600160a01b038b1660208201529081018790527f125e889e0ad284210ec4c8448f648c2a782a6d7f2f9d607aefd518485a78c7f49060600160405180910390a150506001805550505050505050565b60986020528160005260406000208181548110610c2857600080fd5b600091825260209091206006909102018054600182015460028301546003840154600485015460059095015460ff851697506101009094046001600160a01b031695509193909287565b81610c9b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035490565b6001600160a01b0316336001600160a01b03161480610cc25750336001600160a01b038216145b610d215760405162461bcd60e51b815260206004820152602a60248201527f4c696e65617256657374696e674875623a3a206f6e6c79206f776e6572206f72604482015269103932b1b2b4bb32b91760b11b60648201526084016103d9565b6001600160a01b0383166000908152609860205260408120805460ff8516908110610d4e57610d4e612c7c565b60009182526020918290206040805160e0810182526006909302909101805460ff811684526001600160a01b03610100909104169383018490526001810154918301919091526002810154606083015260038101546080830152600481015460a08301526005015460c08201529150610e2f5760405162461bcd60e51b815260206004820152603660248201527f4c696e65617256657374696e674875623a3a72656d6f766556657374696e673a60448201527f2076657374696e67206e6f6e206578697374696e672e0000000000000000000060648201526084016103d9565b6001600160a01b0384166000908152609860205260409020805460ff8516908110610e5c57610e5c612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155610eb084611e66565b6040810151610f0b906001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea0516907f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f390611c97565b8051602080830151604080850151815160ff90951685526001600160a01b039092169284019290925282820152517fcc7cb7b0d06831b26c6c7e9154ed9f990e4840414e557099ef58865e9b7b23889181900360600190a150505050565b600054610100900460ff1680610f82575060005460ff16155b610fe55760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611007576000805461ffff19166101011790555b61100f611efd565b611017611fa3565b80156105a4576000805461ff001916905550565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b03161461109e5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6000805b82811015611227576110ca8484838181106110bf576110bf612c7c565b905060e00201612051565b7f06fc5b6b2d43fca67bd1ca001c48c949ea6259448923e4512d3e1b1582288f3c8484838181106110fd576110fd612c7c565b61111392602060e0909202019081019150612cf2565b85858481811061112557611125612c7c565b905060e00201602001602081019061113d9190612a99565b86868581811061114f5761114f612c7c565b905060e002016040013587878681811061116b5761116b612c7c565b905060e002016080013588888781811061118757611187612c7c565b905060e0020160a001358989888181106111a3576111a3612c7c565b6040805160ff90991689526001600160a01b039097166020890152958701949094526060860192909252608085015260c060e09093020182013560a0840152500160405180910390a18383828181106111fe576111fe612c7c565b905060e0020160400135826112139190612cc3565b91508061121f81612ca8565b9150506110a2565b5061127d6001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05167f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f330846122cc565b6040518181527f3c07993c4118929f7d1bc1f96556e025b08c8a40e7b91f3a22e8e76379759f9b9060200160405180910390a1505050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146113285760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6106e4612323565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146113a35760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6113ac81612051565b6114056001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05167f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f33060408501356122cc565b7f06fc5b6b2d43fca67bd1ca001c48c949ea6259448923e4512d3e1b1582288f3c6114336020830183612cf2565b6114436040840160208501612a99565b6040805160ff90931683526001600160a01b0390911660208301528084013590820152608080840135606083015260a0808501359183019190915260c080850135918301919091520160405180910390a150565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b03161461150a5760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6001600160a01b038316600090815260986020526040812080548490811061153457611534612c7c565b60009182526020909120600690910201805490915061010090046001600160a01b03166115c95760405162461bcd60e51b815260206004820152603f60248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a2076657374696e67206e6f6e206578697374696e672e0060648201526084016103d9565b6000821161163f5760405162461bcd60e51b815260206004820152603360248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a20616464656e645f20300000000000000000000000000060648201526084016103d9565b806005015481600301546116539190612cc3565b42106116dd5760405162461bcd60e51b815260206004820152604d60248201527f4c696e65617256657374696e674875623a3a696e63726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f7420696e637265617365206120636f6d7060648201526c6c657465642076657374696e6760981b608482015260a4016103d9565b60018101546116ec8382612cc3565b60018301556117466001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05167f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f330866122cc565b6001820154604080518681526001600160a01b03881660208201528082018490526060810192909252517f0577e300c25de55846c5551822fcef4dac62f8bc86488986c6e456cef142a2a29181900360800190a15050505050565b7fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103546001600160a01b0316336001600160a01b0316146118145760405162461bcd60e51b815260206004820152600e60248201526d1393d517d055551213d49256915160921b60448201526064016103d9565b6001600160a01b038316600090815260986020526040812080548490811061183e5761183e612c7c565b60009182526020909120600360069092020190810154600582015460018301548354939450919290919061010090046001600160a01b03166118e85760405162461bcd60e51b815260206004820152603f60248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2076657374696e67206e6f6e206578697374696e672e0060648201526084016103d9565b6000851161195e5760405162461bcd60e51b815260206004820152603760248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2073756274726168656e645f203000000000000000000060648201526084016103d9565b808511156119fa5760405162461bcd60e51b815260206004820152605060248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2073756274726168656e645f2067742072656d61696e6960648201527f6e6720746f6b656e2062616c616e636500000000000000000000000000000000608482015260a4016103d9565b611a048284612cc3565b4210611a8e5760405162461bcd60e51b815260206004820152604d60248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f74206465637265617365206120636f6d7060648201526c6c657465642076657374696e6760981b608482015260a4016103d9565b611a988582612cdb565b611aad82866002015486886004015487611e16565b1115611b475760405162461bcd60e51b815260206004820152604760248201527f4c696e65617256657374696e674875623a3a646563726561736556657374696e60448201527f6742616c616e63653a2063616e6e6f742064656372656173652076657374656460648201527f20746f6b656e7300000000000000000000000000000000000000000000000000608482015260a4016103d9565b6000611b538683612cdb565b60018601819055905080611bdf576001600160a01b0388166000908152609860205260409020805488908110611b8b57611b8b612c7c565b600091825260208220600690910201805474ffffffffffffffffffffffffffffffffffffffffff191681556001810182905560028101829055600381018290556004810182905560050155611bdf88611e66565b611c336001600160a01b037f00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05167f000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f388611c97565b604080518881526001600160a01b038a166020820152908101839052606081018290527fb1e81ffe78f5658a5247e9d85649fb95e0955fadccbe048ca2a278e54329219f9060800160405180910390a15050505050505050565b6000610663825490565b6040516001600160a01b038316602482015260448101829052611d409084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064015b60408051601f198184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526123ab565b505050565b6000611d518383612490565b9392505050565b6001600160a01b03811660009081526001830160205260408120541515611d51565b60655460ff16611dcc5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016103d9565b6065805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611e228385612cc3565b421015611e3157506000611e5d565b6000611e3f878787866124ba565b9050858111611e4f576000611e59565b611e598682612cdb565b9150505b95945050505050565b60005b6001600160a01b038216600090815260976020526040902054811015611eed576001600160a01b0382166000908152609860205260408120805483908110611eb357611eb3612c7c565b600091825260209091206006909102015461010090046001600160a01b031614611edb575050565b80611ee581612ca8565b915050611e69565b50611ef9609a82612521565b5050565b600054610100900460ff1680611f16575060005460ff16155b611f795760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611f9b576000805461ffff19166101011790555b611017612536565b600054610100900460ff1680611fbc575060005460ff16155b61201f5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015612041576000805461ffff19166101011790555b6120496125ec565b61101761269d565b60006097816120666040850160208601612a99565b6001600160a01b03166001600160a01b0316815260200190815260200160002054905060006001600160a01b03168260200160208101906120a79190612a99565b6001600160a01b031614156121245760405162461bcd60e51b815260206004820152602f60248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a206960448201527f6e76616c6964207265636569766572000000000000000000000000000000000060648201526084016103d9565b6121316020830183612cf2565b60ff1681146121a85760405162461bcd60e51b815260206004820152602f60248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a207760448201527f726f6e672076657374696e67206964000000000000000000000000000000000060648201526084016103d9565b60008260400135116122225760405162461bcd60e51b815260206004820152603560248201527f4c696e65617256657374696e674875623a3a5f61646456657374696e673a203060448201527f2076657374696e675f746f6b656e42616c616e6365000000000000000000000060648201526084016103d9565b61223d6122356040840160208501612a99565b609a90612759565b50609860006122526040850160208601612a99565b6001600160a01b031681526020808201929092526040016000908120805460018101825590825291902083916006020161228c8282612d0f565b5061229a9050816001612cc3565b609760006122ae6040860160208701612a99565b6001600160a01b031681526020810191909152604001600020555050565b6040516001600160a01b038085166024830152831660448201526064810182905261231d9085907f23b872dd0000000000000000000000000000000000000000000000000000000090608401611cdc565b50505050565b60655460ff16156123765760405162461bcd60e51b815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016103d9565b6065805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611df93390565b6000612400826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661276e9092919063ffffffff16565b805190915015611d40578080602001905181019061241e9190612dab565b611d405760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016103d9565b60008260000182815481106124a7576124a7612c7c565b9060005260206000200154905092915050565b6000824210156124cc57506000612519565b6124d68284612cc3565b42106124ed576124e68486612cc3565b9050612519565b816124f88442612cdb565b6125028688612cc3565b61250c9190612dcd565b6125169190612dec565b90505b949350505050565b6000611d51836001600160a01b03841661277d565b600054610100900460ff168061254f575060005460ff16155b6125b25760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff161580156125d4576000805461ffff19166101011790555b6001805580156105a4576000805461ff001916905550565b600054610100900460ff1680612605575060005460ff16155b6126685760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff16158015611017576000805461ffff191661010117905580156105a4576000805461ff001916905550565b600054610100900460ff16806126b6575060005460ff16155b6127195760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016103d9565b600054610100900460ff1615801561273b576000805461ffff19166101011790555b6065805460ff1916905580156105a4576000805461ff001916905550565b6000611d51836001600160a01b038416612870565b606061251984846000856128bf565b600081815260018301602052604081205480156128665760006127a1600183612cdb565b85549091506000906127b590600190612cdb565b905081811461281a5760008660000182815481106127d5576127d5612c7c565b90600052602060002001549050808760000184815481106127f8576127f8612c7c565b6000918252602080832090910192909255918252600188019052604090208390555b855486908061282b5761282b612e0e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610663565b6000915050610663565b60008181526001830160205260408120546128b757508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610663565b506000610663565b6060824710156129375760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016103d9565b843b6129855760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103d9565b600080866001600160a01b031685876040516129a19190612e50565b60006040518083038185875af1925050503d80600081146129de576040519150601f19603f3d011682016040523d82523d6000602084013e6129e3565b606091505b50915091506129f38282866129fe565b979650505050505050565b60608315612a0d575081611d51565b825115612a1d5782518084602001fd5b8160405162461bcd60e51b81526004016103d99190612e6c565b6020808252825182820181905260009190848201906040850190845b81811015612a785783516001600160a01b031683529284019291840191600101612a53565b50909695505050505050565b6001600160a01b03811681146105a457600080fd5b600060208284031215612aab57600080fd5b8135611d5181612a84565b600060208284031215612ac857600080fd5b5035919050565b60008060008060808587031215612ae557600080fd5b8435612af081612a84565b9350602085013592506040850135612b0781612a84565b9396929550929360600135925050565b60008060408385031215612b2a57600080fd5b8235612b3581612a84565b946020939093013593505050565b60ff811681146105a457600080fd5b60008060408385031215612b6557600080fd5b8235612b7081612a84565b91506020830135612b8081612b43565b809150509250929050565b60008060208385031215612b9e57600080fd5b823567ffffffffffffffff80821115612bb657600080fd5b818501915085601f830112612bca57600080fd5b813581811115612bd957600080fd5b86602060e083028501011115612bee57600080fd5b60209290920196919550909350505050565b600060e08284031215612c1257600080fd5b50919050565b600080600060608486031215612c2d57600080fd5b8335612c3881612a84565b95602085013595506040909401359392505050565b600060208284031215612c5f57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612cbc57612cbc612c92565b5060010190565b60008219821115612cd657612cd6612c92565b500190565b600082821015612ced57612ced612c92565b500390565b600060208284031215612d0457600080fd5b8135611d5181612b43565b8135612d1a81612b43565b60ff8116905081548160ff1982161783556020840135612d3981612a84565b74ffffffffffffffffffffffffffffffffffffffff008160081b168374ffffffffffffffffffffffffffffffffffffffffff1984161717845550505060408201356001820155606082013560028201556080820135600382015560a0820135600482015560c082013560058201555050565b600060208284031215612dbd57600080fd5b81518015158114611d5157600080fd5b6000816000190483118215151615612de757612de7612c92565b500290565b600082612e0957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fd5b60005b83811015612e3f578181015183820152602001612e27565b8381111561231d5750506000910152565b60008251612e62818460208701612e24565b9190910192915050565b6020815260008251806020840152612e8b816040850160208701612e24565b601f01601f1916919091016040019291505056fea2646970667358221220587201f8849550589ddc86181fb9a9ab1cf99b61063f15cc1d022d42d9fd0cc464736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f3
-----Decoded View---------------
Arg [0] : token_ (address): 0x15b7c0c907e4C6b9AdaAaabC300C08991D6CEA05
Arg [1] : vestingTreasury_ (address): 0xFfa67f8aEc99c144f887a5864aEC5d1Bff5062F3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000015b7c0c907e4c6b9adaaaabc300c08991d6cea05
Arg [1] : 000000000000000000000000ffa67f8aec99c144f887a5864aec5d1bff5062f3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.