ETH Price: $3,243.01 (+1.46%)

Contract

0x2325d6222F107F37936b0B4E0dB938F394569c93
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Withdraw201760182024-06-26 12:59:11208 days ago1719406751IN
0x2325d622...394569c93
0 ETH0.000306053.5313322
Withdraw201753392024-06-26 10:43:11208 days ago1719398591IN
0x2325d622...394569c93
0 ETH0.000256963.45527989
Withdraw201700742024-06-25 17:04:59209 days ago1719335099IN
0x2325d622...394569c93
0 ETH0.0009497710.3835536
Withdraw200607692024-06-10 10:14:35224 days ago1718014475IN
0x2325d622...394569c93
0 ETH0.000442814.84111141
Withdraw198028202024-05-05 8:52:35260 days ago1714899155IN
0x2325d622...394569c93
0 ETH0.000473446.36756001
Withdraw194630092024-03-18 16:57:59308 days ago1710781079IN
0x2325d622...394569c93
0 ETH0.0031286742.06955756
Withdraw191117092024-01-29 10:52:23357 days ago1706525543IN
0x2325d622...394569c93
0 ETH0.0008054710.83075707
Withdraw190493232024-01-20 16:38:47366 days ago1705768727IN
0x2325d622...394569c93
0 ETH0.0017301818.9155143
Withdraw190469792024-01-20 8:47:59366 days ago1705740479IN
0x2325d622...394569c93
0 ETH0.0012276216.51096884
Withdraw188763702023-12-27 10:21:47390 days ago1703672507IN
0x2325d622...394569c93
0 ETH0.0027215629.75393078
Withdraw187651192023-12-11 19:43:11406 days ago1702323791IN
0x2325d622...394569c93
0 ETH0.0031808142.7706736
Withdraw186817992023-11-30 3:40:11417 days ago1701315611IN
0x2325d622...394569c93
0 ETH0.0031746834.71419985
Withdraw186428882023-11-24 16:54:47423 days ago1700844887IN
0x2325d622...394569c93
0 ETH0.0043224258.13467837
Withdraw185756582023-11-15 6:58:23432 days ago1700031503IN
0x2325d622...394569c93
0 ETH0.0021632223.65422684
Withdraw185423652023-11-10 15:13:23437 days ago1699629203IN
0x2325d622...394569c93
0 ETH0.0040049343.79271368
Withdraw185145932023-11-06 18:01:59441 days ago1699293719IN
0x2325d622...394569c93
0 ETH0.0027455236.92604432
Withdraw185120092023-11-06 9:20:11441 days ago1699262411IN
0x2325d622...394569c93
0 ETH0.0022951725.09703357
Withdraw184636242023-10-30 14:39:23448 days ago1698676763IN
0x2325d622...394569c93
0 ETH0.0028483631.1459582
Withdraw184152472023-10-23 20:07:11455 days ago1698091631IN
0x2325d622...394569c93
0 ETH0.0034990538.26109745
Withdraw183636142023-10-16 14:44:23462 days ago1697467463IN
0x2325d622...394569c93
0 ETH0.001041811.39181851
Withdraw183206512023-10-10 14:28:23468 days ago1696948103IN
0x2325d622...394569c93
0 ETH0.0010724911.72740526
Withdraw182634892023-10-02 14:36:59476 days ago1696257419IN
0x2325d622...394569c93
0 ETH0.0018730420.48114307
Withdraw182143022023-09-25 17:31:23483 days ago1695663083IN
0x2325d622...394569c93
0 ETH0.0020665122.59672355
Withdraw181422642023-09-15 14:39:23493 days ago1694788763IN
0x2325d622...394569c93
0 ETH0.0014925920.07473743
Withdraw181212422023-09-12 15:48:35496 days ago1694533715IN
0x2325d622...394569c93
0 ETH0.0022537624.64428938
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
VTVLVesting

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Vesting.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.14;
// Note: using solidity 0.8, SafeMath not needed any more

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "./AccessProtected.sol";

contract VTVLVesting is Context, AccessProtected {
    using SafeERC20 for IERC20;

    /**
    @notice Address of the token that we're vesting
     */
    IERC20 public immutable tokenAddress;

    /**
    @notice How many tokens are already allocated to vesting schedules.
    @dev Our balance of the token must always be greater than this amount.
    * Otherwise we risk some users not getting their shares.
    * This gets reduced as the users are paid out or when their schedules are revoked (as it is not reserved any more).
    * In other words, this represents the amount the contract is scheduled to pay out at some point if the 
    * owner were to never interact with the contract.
    */
    uint112 public numTokensReservedForVesting = 0;

    /**
    @notice A structure representing a single claim - supporting linear and cliff vesting.
     */
    struct Claim {
        // Using 40 bits for timestamp (seconds)
        // Gives us a range from 1 Jan 1970 (Unix epoch) up to approximately 35 thousand years from then (2^40 / (365 * 24 * 60 * 60) ~= 35k)
        uint40 startTimestamp; // When does the vesting start (40 bits is enough for TS)
        uint40 endTimestamp; // When does the vesting end - the vesting goes linearly between the start and end timestamps
        uint40 cliffReleaseTimestamp; // At which timestamp is the cliffAmount released. This must be <= startTimestamp
        uint40 releaseIntervalSecs; // Every how many seconds does the vested amount increase. 
        
        // uint112 range: range 0 –     5,192,296,858,534,827,628,530,496,329,220,095.
        // uint112 range: range 0 –                             5,192,296,858,534,827.
        uint112 linearVestAmount; // total entitlement
        uint112 cliffAmount; // how much is released at the cliff
        uint112 amountWithdrawn; // how much was withdrawn thus far - released at the cliffReleaseTimestamp
        bool isActive; // whether this claim is active (or revoked)
    }    

    // Mapping every user address to his/her Claim
    // Only one Claim possible per address
    mapping (address => Claim) internal claims;

    // Track the recipients of the vesting
    address[] internal vestingRecipients;

    // Events:
    /**
    @notice Emitted when a founder adds a vesting schedule.
     */
    event ClaimCreated(address indexed _recipient, Claim _claim); 

    /**
    @notice Emitted when someone withdraws a vested amount
    */
    event Claimed(address indexed _recipient, uint112 _withdrawalAmount); 

    /** 
    @notice Emitted when a claim is revoked
    */
    event ClaimRevoked(address indexed _recipient, uint112 _numTokensWithheld, uint256 revocationTimestamp, Claim _claim);
    
    /** 
    @notice Emitted when admin withdraws.
    */
    event AdminWithdrawn(address indexed _recipient, uint112 _amountRequested);

    // 
    /**
    @notice Construct the contract, taking the ERC20 token to be vested as the parameter.
    @dev The owner can set the contract in question when creating the contract.
     */
    constructor(IERC20 _tokenAddress) {
        require(address(_tokenAddress) != address(0), "INVALID_ADDRESS");
        tokenAddress = _tokenAddress;
    }

    /**
    @notice Basic getter for a claim. 
    @dev Could be using public claims var, but this is cleaner in terms of naming. (getClaim(address) as opposed to claims(address)). 
    @param _recipient - the address for which we fetch the claim.
     */
    function getClaim(address _recipient) external view returns (Claim memory) {
        return claims[_recipient];
    }

    /**
    @notice This modifier requires that an user has a claim attached.
    @dev  To determine this, we check that a claim:
    * - is active
    * - start timestamp is nonzero.
    * These are sufficient conditions because we only ever set startTimestamp in 
    * createClaim, and we never change it. Therefore, startTimestamp will be set
    * IFF a claim has been created. In addition to that, we need to check
    * a claim is active (since this is has_*Active*_Claim)
    */
    modifier hasActiveClaim(address _recipient) {
        Claim storage _claim = claims[_recipient];
        require(_claim.startTimestamp > 0, "NO_ACTIVE_CLAIM");

        // We however still need the active check, since (due to the name of the function)
        // we want to only allow active claims
        require(_claim.isActive == true, "NO_ACTIVE_CLAIM");

        // Save gas, omit further checks
        // require(_claim.linearVestAmount + _claim.cliffAmount > 0, "INVALID_VESTED_AMOUNT");
        // require(_claim.endTimestamp > 0, "NO_END_TIMESTAMP");
        _;
    }

    /** 
    @notice Modifier which is opposite hasActiveClaim
    @dev Requires that all fields are unset
    */ 
    modifier hasNoClaim(address _recipient) {
        Claim storage _claim = claims[_recipient];
        // Start timestamp != 0 is a sufficient condition for a claim to exist
        // This is because we only ever add claims (or modify startTs) in the createClaim function 
        // Which requires that its input startTimestamp be nonzero
        // So therefore, a zero value for this indicates the claim does not exist.
        require(_claim.startTimestamp == 0, "CLAIM_ALREADY_EXISTS");
        
        // We don't even need to check for active to be unset, since this function only 
        // determines that a claim hasn't been set
        // require(_claim.isActive == false, "CLAIM_ALREADY_EXISTS");
    
        // Further checks aren't necessary (to save gas), as they're done at creation time (createClaim)
        // require(_claim.endTimestamp == 0, "CLAIM_ALREADY_EXISTS");
        // require(_claim.linearVestAmount + _claim.cliffAmount == 0, "CLAIM_ALREADY_EXISTS");
        // require(_claim.amountWithdrawn == 0, "CLAIM_ALREADY_EXISTS");
        _;
    }

    /**
    @notice Pure function to calculate the vested amount from a given _claim, at a reference timestamp
    @param _claim The claim in question
    @param _referenceTs Timestamp for which we're calculating
     */
    function _baseVestedAmount(Claim memory _claim, uint40 _referenceTs) internal pure returns (uint112) {
        uint112 vestAmt = 0;
        
        // the condition to have anything vested is to be active
        if(_claim.isActive) {
            // no point of looking past the endTimestamp as nothing should vest afterwards
            // So if we're past the end, just get the ref frame back to the end
            if(_referenceTs > _claim.endTimestamp) {
                _referenceTs = _claim.endTimestamp;
            }

            // If we're past the cliffReleaseTimestamp, we release the cliffAmount
            // We don't check here that cliffReleaseTimestamp is after the startTimestamp 
            if(_referenceTs >= _claim.cliffReleaseTimestamp) {
                vestAmt += _claim.cliffAmount;
            }

            // Calculate the linearly vested amount - this is relevant only if we're past the schedule start
            // at _referenceTs == _claim.startTimestamp, the period proportion will be 0 so we don't need to start the calc
            if(_referenceTs > _claim.startTimestamp) {
                uint40 currentVestingDurationSecs = _referenceTs - _claim.startTimestamp; // How long since the start
                // Next, we need to calculated the duration truncated to nearest releaseIntervalSecs
                uint40 truncatedCurrentVestingDurationSecs = (currentVestingDurationSecs / _claim.releaseIntervalSecs) * _claim.releaseIntervalSecs;
                uint40 finalVestingDurationSecs = _claim.endTimestamp - _claim.startTimestamp; // length of the interval

                // Calculate the linear vested amount - fraction_of_interval_completed * linearVestedAmount
                // Since fraction_of_interval_completed is truncatedCurrentVestingDurationSecs / finalVestingDurationSecs, the formula becomes
                // truncatedCurrentVestingDurationSecs / finalVestingDurationSecs * linearVestAmount, so we can rewrite as below to avoid 
                // rounding errors
                uint112 linearVestAmount = _claim.linearVestAmount * truncatedCurrentVestingDurationSecs / finalVestingDurationSecs;

                // Having calculated the linearVestAmount, simply add it to the vested amount
                vestAmt += linearVestAmount;
            }
        }
        
        // Return the bigger of (vestAmt, _claim.amountWithdrawn)
        // Rationale: no matter how we calculate the vestAmt, we can never return that less was vested than was already withdrawn.
        // Case where this could be relevant - If the claim is inactive, vestAmt would be 0, yet if something was already withdrawn 
        // on that claim, we want to return that as vested thus far - as we want the function to be monotonic.
        return (vestAmt > _claim.amountWithdrawn) ? vestAmt : _claim.amountWithdrawn;
    }

    /**
    @notice Calculate the amount vested for a given _recipient at a reference timestamp.
    @param _recipient - The address for whom we're calculating
    @param _referenceTs - The timestamp at which we want to calculate the vested amount.
    @dev Simply call the _baseVestedAmount for the claim in question
    */
    function vestedAmount(address _recipient, uint40 _referenceTs) public view returns (uint112) {
        Claim storage _claim = claims[_recipient];
        return _baseVestedAmount(_claim, _referenceTs);
    }

    /**
    @notice Calculate the total vested at the end of the schedule, by simply feeding in the end timestamp to the function above.
    @dev This fn is somewhat superfluous, should probably be removed.
    @param _recipient - The address for whom we're calculating
     */
    function finalVestedAmount(address _recipient) public view returns (uint112) {
        Claim storage _claim = claims[_recipient];
        return _baseVestedAmount(_claim, _claim.endTimestamp);
    }
    
    /**
    @notice Calculates how much can we claim, by subtracting the already withdrawn amount from the vestedAmount at this moment.
    @param _recipient - The address for whom we're calculating
    */
    function claimableAmount(address _recipient) external view returns (uint112) {
        Claim storage _claim = claims[_recipient];
        return _baseVestedAmount(_claim, uint40(block.timestamp)) - _claim.amountWithdrawn;
    }
    
    /** 
    @notice Return all the addresses that have vesting schedules attached.
    */ 
    function allVestingRecipients() external view returns (address[] memory) {
        return vestingRecipients;
    }

    /** 
    @notice Get the total number of vesting recipients.
    */
    function numVestingRecipients() external view returns (uint256) {
        return vestingRecipients.length;
    }

    /** 
    @notice Permission-unchecked version of claim creation (no onlyAdmin). Actual logic for create claim, to be run within either createClaim or createClaimBatch.
    @dev This'll simply check the input parameters, and create the structure verbatim based on passed in parameters.
    @param _recipient - The address of the recipient of the schedule
    @param _startTimestamp - The timestamp when the linear vesting starts
    @param _endTimestamp - The timestamp when the linear vesting ends
    @param _cliffReleaseTimestamp - The timestamp when the cliff is released (must be <= _startTimestamp, or 0 if no vesting)
    @param _releaseIntervalSecs - The release interval for the linear vesting. If this is, for example, 60, that means that the linearly vested amount gets released every 60 seconds.
    @param _linearVestAmount - The total amount to be linearly vested between _startTimestamp and _endTimestamp
    @param _cliffAmount - The amount released at _cliffReleaseTimestamp. Can be 0 if _cliffReleaseTimestamp is also 0.
     */
    function _createClaimUnchecked(
            address _recipient, 
            uint40 _startTimestamp, 
            uint40 _endTimestamp, 
            uint40 _cliffReleaseTimestamp, 
            uint40 _releaseIntervalSecs, 
            uint112 _linearVestAmount, 
            uint112 _cliffAmount
                ) private  hasNoClaim(_recipient) {

        require(_recipient != address(0), "INVALID_ADDRESS");
        require(_linearVestAmount + _cliffAmount > 0, "INVALID_VESTED_AMOUNT"); // Actually only one of linearvested/cliff amount must be 0, not necessarily both
        require(_startTimestamp > 0, "INVALID_START_TIMESTAMP");
        // Do we need to check whether _startTimestamp is greater than the current block.timestamp? 
        // Or do we allow schedules that started in the past? 
        // -> Conclusion: we want to allow this, for founders that might have forgotten to add some users, or to avoid issues with transactions not going through because of discoordination between block.timestamp and sender's local time
        // require(_endTimestamp > 0, "_endTimestamp must be valid"); // not necessary because of the next condition (transitively)
        require(_startTimestamp < _endTimestamp, "INVALID_END_TIMESTAMP"); // _endTimestamp must be after _startTimestamp
        require(_releaseIntervalSecs > 0, "INVALID_RELEASE_INTERVAL");
        require((_endTimestamp - _startTimestamp) % _releaseIntervalSecs == 0, "INVALID_INTERVAL_LENGTH");

        // Potential TODO: sanity check, if _linearVestAmount == 0, should we perhaps force that start and end ts are the same?

        // No point in allowing cliff TS without the cliff amount or vice versa.
        // Both or neither of _cliffReleaseTimestamp and _cliffAmount must be set. If cliff is set, _cliffReleaseTimestamp must be before or at the _startTimestamp
        require( 
            (
                _cliffReleaseTimestamp > 0 && 
                _cliffAmount > 0 && 
                _cliffReleaseTimestamp <= _startTimestamp
            ) || (
                _cliffReleaseTimestamp == 0 && 
                _cliffAmount == 0
        ), "INVALID_CLIFF");

        Claim memory _claim = Claim({
            startTimestamp: _startTimestamp,
            endTimestamp: _endTimestamp,
            cliffReleaseTimestamp: _cliffReleaseTimestamp,
            releaseIntervalSecs: _releaseIntervalSecs,
            cliffAmount: _cliffAmount,
            linearVestAmount: _linearVestAmount,
            amountWithdrawn: 0,
            isActive: true
        });
        // Our total allocation is simply the full sum of the two amounts, _cliffAmount + _linearVestAmount
        // Not necessary to use the more complex logic from _baseVestedAmount
        uint112 allocatedAmount = _cliffAmount + _linearVestAmount;

        // Still no effects up to this point (and tokenAddress is selected by contract deployer and is immutable), so no reentrancy risk 
        require(tokenAddress.balanceOf(address(this)) >= numTokensReservedForVesting + allocatedAmount, "INSUFFICIENT_BALANCE");

        // Done with checks

        // Effects limited to lines below
        claims[_recipient] = _claim; // store the claim
        numTokensReservedForVesting += allocatedAmount; // track the allocated amount
        vestingRecipients.push(_recipient); // add the vesting recipient to the list
        emit ClaimCreated(_recipient, _claim); // let everyone know
    }

    /** 
    @notice Create a claim based on the input parameters.
    @dev This'll simply check the input parameters, and create the structure verbatim based on passed in parameters.
    @param _recipient - The address of the recipient of the schedule
    @param _startTimestamp - The timestamp when the linear vesting starts
    @param _endTimestamp - The timestamp when the linear vesting ends
    @param _cliffReleaseTimestamp - The timestamp when the cliff is released (must be <= _startTimestamp, or 0 if no vesting)
    @param _releaseIntervalSecs - The release interval for the linear vesting. If this is, for example, 60, that means that the linearly vested amount gets released every 60 seconds.
    @param _linearVestAmount - The total amount to be linearly vested between _startTimestamp and _endTimestamp
    @param _cliffAmount - The amount released at _cliffReleaseTimestamp. Can be 0 if _cliffReleaseTimestamp is also 0.
     */
    function createClaim(
            address _recipient, 
            uint40 _startTimestamp, 
            uint40 _endTimestamp, 
            uint40 _cliffReleaseTimestamp, 
            uint40 _releaseIntervalSecs, 
            uint112 _linearVestAmount, 
            uint112 _cliffAmount
                ) external onlyAdmin {
        _createClaimUnchecked(_recipient, _startTimestamp, _endTimestamp, _cliffReleaseTimestamp, _releaseIntervalSecs, _linearVestAmount, _cliffAmount);
    }

    /**
    @notice The batch version of the createClaim function. Each argument is an array, and this function simply repeatedly calls the createClaim.
    
     */
    function createClaimsBatch(
        address[] memory _recipients, 
        uint40[] memory _startTimestamps, 
        uint40[] memory _endTimestamps, 
        uint40[] memory _cliffReleaseTimestamps, 
        uint40[] memory _releaseIntervalsSecs, 
        uint112[] memory _linearVestAmounts, 
        uint112[] memory _cliffAmounts) 
        external onlyAdmin {
        
        uint256 length = _recipients.length;
        require(_startTimestamps.length == length &&
                _endTimestamps.length == length &&
                _cliffReleaseTimestamps.length == length &&
                _releaseIntervalsSecs.length == length &&
                _linearVestAmounts.length == length &&
                _cliffAmounts.length == length, 
                "ARRAY_LENGTH_MISMATCH"
        );

        for (uint256 i = 0; i < length; i++) {
            _createClaimUnchecked(_recipients[i], _startTimestamps[i], _endTimestamps[i], _cliffReleaseTimestamps[i], _releaseIntervalsSecs[i], _linearVestAmounts[i], _cliffAmounts[i]);
        }

        // No need for separate emit, since createClaim will emit for each claim (and this function is merely a convenience/gas-saver for multiple claims creation)
    }

    /**
    @notice Withdraw the full claimable balance.
    @dev hasActiveClaim throws off anyone without a claim.
     */
    function withdraw() hasActiveClaim(_msgSender()) external {
        // Get the message sender claim - if any

        Claim storage usrClaim = claims[_msgSender()];

        // we can use block.timestamp directly here as reference TS, as the function itself will make sure to cap it to endTimestamp
        // Conversion of timestamp to uint40 should be safe since 48 bit allows for a lot of years.
        uint112 allowance = vestedAmount(_msgSender(), uint40(block.timestamp));

        // Make sure we didn't already withdraw more that we're allowed.
        require(allowance > usrClaim.amountWithdrawn, "NOTHING_TO_WITHDRAW");

        // Calculate how much can we withdraw (equivalent to the above inequality)
        uint112 amountRemaining = allowance - usrClaim.amountWithdrawn;

        // "Double-entry bookkeeping"
        // Carry out the withdrawal by noting the withdrawn amount, and by transferring the tokens.
        usrClaim.amountWithdrawn += amountRemaining;
        // Reduce the allocated amount since the following transaction pays out so the "debt" gets reduced
        numTokensReservedForVesting -= amountRemaining;
        
        // After the "books" are set, transfer the tokens
        // Reentrancy note - internal vars have been changed by now
        // Also following Checks-effects-interactions pattern
        tokenAddress.safeTransfer(_msgSender(), amountRemaining);

        // Let withdrawal known to everyone.
        emit Claimed(_msgSender(), amountRemaining);
    }

    /**
    @notice Admin withdrawal of the unallocated tokens.
    @param _amountRequested - the amount that we want to withdraw
     */
    function withdrawAdmin(uint112 _amountRequested) public onlyAdmin {    
        // Allow the owner to withdraw any balance not currently tied up in contracts.
        uint256 amountRemaining = tokenAddress.balanceOf(address(this)) - numTokensReservedForVesting;

        require(amountRemaining >= _amountRequested, "INSUFFICIENT_BALANCE");

        // Actually withdraw the tokens
        // Reentrancy note - this operation doesn't touch any of the internal vars, simply transfers
        // Also following Checks-effects-interactions pattern
        tokenAddress.safeTransfer(_msgSender(), _amountRequested);

        // Let the withdrawal known to everyone
        emit AdminWithdrawn(_msgSender(), _amountRequested);
    }


    /** 
    @notice Allow an Owner to revoke a claim that is already active.
    @dev The requirement is that a claim exists and that it's active.
    */ 
    function revokeClaim(address _recipient) external onlyAdmin hasActiveClaim(_recipient) {
        // Fetch the claim
        Claim storage _claim = claims[_recipient];
        // Calculate what the claim should finally vest to
        uint112 finalVestAmt = finalVestedAmount(_recipient);

        // No point in revoking something that has been fully consumed
        // so require that there be unconsumed amount
        require( _claim.amountWithdrawn < finalVestAmt, "NO_UNVESTED_AMOUNT");

        // The amount that is "reclaimed" is equal to the total allocation less what was already withdrawn
        uint112 amountRemaining = finalVestAmt - _claim.amountWithdrawn;

        // Deactivate the claim, and release the appropriate amount of tokens
        _claim.isActive = false;    // This effectively reduces the liability by amountRemaining, so we can reduce the liability numTokensReservedForVesting by that much
        numTokensReservedForVesting -= amountRemaining; // Reduces the allocation

        // Tell everyone a claim has been revoked.
        emit ClaimRevoked(_recipient, amountRemaining, uint40(block.timestamp), _claim);
    }

    /**
    @notice Withdraw a token which isn't controlled by the vesting contract.
    @dev This contract controls/vests token at "tokenAddress". However, someone might send a different token. 
    To make sure these don't get accidentally trapped, give admin the ability to withdraw them (to their own address).
    Note that the token to be withdrawn can't be the one at "tokenAddress".
    @param _otherTokenAddress - the token which we want to withdraw
     */
    function withdrawOtherToken(IERC20 _otherTokenAddress) external onlyAdmin {
        require(_otherTokenAddress != tokenAddress, "INVALID_TOKEN"); // tokenAddress address is already sure to be nonzero due to constructor
        uint256 bal = _otherTokenAddress.balanceOf(address(this));
        require(bal > 0, "INSUFFICIENT_BALANCE");
        _otherTokenAddress.safeTransfer(_msgSender(), bal);
    }
}

File 2 of 9 : AccessProtected.sol
//SPDX-License-Identifier: Unlicense
pragma solidity 0.8.14;
// Note: using solidity 0.8, SafeMath not needed any more

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

abstract contract AccessProtected is Context {
    mapping(address => bool) private _admins; // user address => admin? mapping

    event AdminAccessSet(address indexed _admin, bool _enabled);

    constructor() {
        _admins[_msgSender()] = true;
        emit AdminAccessSet(_msgSender(), true);
    }

    /**
     * Throws if called by any account that isn't an admin or an owner.
     */
    modifier onlyAdmin() {
        require(_admins[_msgSender()], "ADMIN_ACCESS_REQUIRED");
        _;
    }

    function isAdmin(address _addressToCheck) external view returns (bool) {
        return _admins[_addressToCheck];
    }

    /**
     * @notice Set/unset Admin Access for a given address.
     *
     * @param admin - Address of the new admin (or the one to be removed)
     * @param isEnabled - Enable/Disable Admin Access
     */
    function setAdmin(address admin, bool isEnabled) public onlyAdmin {
        require(admin != address(0), "INVALID_ADDRESS");
        _admins[admin] = isEnabled;
        emit AdminAccessSet(admin, isEnabled);
    }
}

File 3 of 9 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.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));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 4 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

File 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 6 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return 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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 8 of 9 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 9 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_tokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_admin","type":"address"},{"indexed":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"AdminAccessSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint112","name":"_amountRequested","type":"uint112"}],"name":"AdminWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"components":[{"internalType":"uint40","name":"startTimestamp","type":"uint40"},{"internalType":"uint40","name":"endTimestamp","type":"uint40"},{"internalType":"uint40","name":"cliffReleaseTimestamp","type":"uint40"},{"internalType":"uint40","name":"releaseIntervalSecs","type":"uint40"},{"internalType":"uint112","name":"linearVestAmount","type":"uint112"},{"internalType":"uint112","name":"cliffAmount","type":"uint112"},{"internalType":"uint112","name":"amountWithdrawn","type":"uint112"},{"internalType":"bool","name":"isActive","type":"bool"}],"indexed":false,"internalType":"struct VTVLVesting.Claim","name":"_claim","type":"tuple"}],"name":"ClaimCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint112","name":"_numTokensWithheld","type":"uint112"},{"indexed":false,"internalType":"uint256","name":"revocationTimestamp","type":"uint256"},{"components":[{"internalType":"uint40","name":"startTimestamp","type":"uint40"},{"internalType":"uint40","name":"endTimestamp","type":"uint40"},{"internalType":"uint40","name":"cliffReleaseTimestamp","type":"uint40"},{"internalType":"uint40","name":"releaseIntervalSecs","type":"uint40"},{"internalType":"uint112","name":"linearVestAmount","type":"uint112"},{"internalType":"uint112","name":"cliffAmount","type":"uint112"},{"internalType":"uint112","name":"amountWithdrawn","type":"uint112"},{"internalType":"bool","name":"isActive","type":"bool"}],"indexed":false,"internalType":"struct VTVLVesting.Claim","name":"_claim","type":"tuple"}],"name":"ClaimRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint112","name":"_withdrawalAmount","type":"uint112"}],"name":"Claimed","type":"event"},{"inputs":[],"name":"allVestingRecipients","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"claimableAmount","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint40","name":"_startTimestamp","type":"uint40"},{"internalType":"uint40","name":"_endTimestamp","type":"uint40"},{"internalType":"uint40","name":"_cliffReleaseTimestamp","type":"uint40"},{"internalType":"uint40","name":"_releaseIntervalSecs","type":"uint40"},{"internalType":"uint112","name":"_linearVestAmount","type":"uint112"},{"internalType":"uint112","name":"_cliffAmount","type":"uint112"}],"name":"createClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint40[]","name":"_startTimestamps","type":"uint40[]"},{"internalType":"uint40[]","name":"_endTimestamps","type":"uint40[]"},{"internalType":"uint40[]","name":"_cliffReleaseTimestamps","type":"uint40[]"},{"internalType":"uint40[]","name":"_releaseIntervalsSecs","type":"uint40[]"},{"internalType":"uint112[]","name":"_linearVestAmounts","type":"uint112[]"},{"internalType":"uint112[]","name":"_cliffAmounts","type":"uint112[]"}],"name":"createClaimsBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"finalVestedAmount","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"getClaim","outputs":[{"components":[{"internalType":"uint40","name":"startTimestamp","type":"uint40"},{"internalType":"uint40","name":"endTimestamp","type":"uint40"},{"internalType":"uint40","name":"cliffReleaseTimestamp","type":"uint40"},{"internalType":"uint40","name":"releaseIntervalSecs","type":"uint40"},{"internalType":"uint112","name":"linearVestAmount","type":"uint112"},{"internalType":"uint112","name":"cliffAmount","type":"uint112"},{"internalType":"uint112","name":"amountWithdrawn","type":"uint112"},{"internalType":"bool","name":"isActive","type":"bool"}],"internalType":"struct VTVLVesting.Claim","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addressToCheck","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensReservedForVesting","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numVestingRecipients","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"revokeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint40","name":"_referenceTs","type":"uint40"}],"name":"vestedAmount","outputs":[{"internalType":"uint112","name":"","type":"uint112"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint112","name":"_amountRequested","type":"uint112"}],"name":"withdrawAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_otherTokenAddress","type":"address"}],"name":"withdrawOtherToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000600160006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff1602179055503480156200004757600080fd5b50604051620045e1380380620045e183398181016040528101906200006d919062000266565b600160008062000082620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620000e3620001e060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff167fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb7860016040516200012b9190620002b5565b60405180910390a2600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620001a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019c9062000333565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505062000355565b600033905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200021a82620001ed565b9050919050565b60006200022e826200020d565b9050919050565b620002408162000221565b81146200024c57600080fd5b50565b600081519050620002608162000235565b92915050565b6000602082840312156200027f576200027e620001e8565b5b60006200028f848285016200024f565b91505092915050565b60008115159050919050565b620002af8162000298565b82525050565b6000602082019050620002cc6000830184620002a4565b92915050565b600082825260208201905092915050565b7f494e56414c49445f414444524553530000000000000000000000000000000000600082015250565b60006200031b600f83620002d2565b91506200032882620002e3565b602082019050919050565b600060208201905081810360008301526200034e816200030c565b9050919050565b60805161424d62000394600039600081816109e9015281816113550152818161163f0152818161175401528181611885015261221b015261424d6000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80637197dec311610097578063ae9741aa11610066578063ae9741aa1461029b578063b3a026b1146102b7578063e50373f9146102d3578063ed83a4b2146102ef57610100565b80637197dec314610213578063852e72e914610231578063898850491461024d5780639d76ea581461027d57610100565b80633ccfd60b116100d35780633ccfd60b1461018d5780634a0e701e146101975780634b0bddd2146101c75780634cd3723a146101e357610100565b80630216ee4114610105578063137c68fa14610121578063241c5b1f1461013f57806324d7806c1461015d575b600080fd5b61011f600480360381019061011a9190612949565b61031f565b005b61012961067e565b604051610136919061299f565b60405180910390f35b61014761069e565b60405161015491906129d3565b60405180910390f35b61017760048036038101906101729190612949565b6106ab565b6040516101849190612a09565b60405180910390f35b610195610700565b005b6101b160048036038101906101ac9190612a61565b610a89565b6040516101be919061299f565b60405180910390f35b6101e160048036038101906101dc9190612acd565b610c77565b005b6101fd60048036038101906101f89190612949565b610e20565b60405161020a9190612bdc565b60405180910390f35b61021b611005565b6040516102289190612cb6565b60405180910390f35b61024b60048036038101906102469190612d04565b611093565b005b61026760048036038101906102629190612949565b61113d565b604051610274919061299f565b60405180910390f35b610285611353565b6040516102929190612e05565b60405180910390f35b6102b560048036038101906102b091906130ff565b611377565b005b6102d160048036038101906102cc9190613265565b61157c565b005b6102ed60048036038101906102e891906132d0565b6117f1565b005b61030960048036038101906103049190612949565b611a08565b604051610316919061299f565b60405180910390f35b60008061032a611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166103b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a89061335a565b60405180910390fd5b806000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff1611610454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044b906133c6565b60405180910390fd5b6001151581600201600e9054906101000a900460ff161515146104ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a3906133c6565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006104fa85611a08565b9050806dffffffffffffffffffffffffffff168260020160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff161061057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390613432565b60405180910390fd5b60008260020160009054906101000a90046dffffffffffffffffffffffffffff16826105a89190613481565b9050600083600201600e6101000a81548160ff02191690831515021790555080600160008282829054906101000a90046dffffffffffffffffffffffffffff166105f29190613481565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff167f33dd3909387f8e5a36be260ddd69080def445805af1761f8bdf809f81658be5782428660405161066e939291906136ee565b60405180910390a2505050505050565b600160009054906101000a90046dffffffffffffffffffffffffffff1681565b6000600380549050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610708611c0a565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff16116107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906133c6565b60405180910390fd5b6001151581600201600e9054906101000a900460ff16151514610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f9906133c6565b60405180910390fd5b600060026000610810611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061085f610859611c0a565b42610a89565b90508160020160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff16116108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613772565b60405180910390fd5b60008260020160009054906101000a90046dffffffffffffffffffffffffffff168261090d9190613481565b9050808360020160008282829054906101000a90046dffffffffffffffffffffffffffff1661093c9190613792565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555080600160008282829054906101000a90046dffffffffffffffffffffffffffff166109999190613481565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550610a2d6109d6611c0a565b826dffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b610a35611c0a565b73ffffffffffffffffffffffffffffffffffffffff167f27febd2ce374435f33b4d2a794a201df2f20a352431a123b1bb385fe6a0e073082604051610a7a919061299f565b60405180910390a25050505050565b600080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610c6e81604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff16151515158152505084611c98565b91505092915050565b600080610c82611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061335a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613822565b60405180910390fd5b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb7882604051610e149190612a09565b60405180910390a25050565b610e28612844565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff1615151515815250509050919050565b6060600380548060200260200160405190810160405280929190818152602001828054801561108957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161103f575b5050505050905090565b60008061109e611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c9061335a565b60405180910390fd5b61113487878787878787611de1565b50505050505050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020160009054906101000a90046dffffffffffffffffffffffffffff1661134182604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff16151515158152505042611c98565b61134b9190613481565b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080611382611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061335a565b60405180910390fd5b60008751905080875114801561141f5750808651145b801561142b5750808551145b80156114375750808451145b80156114435750808351145b801561144f5750808251145b61148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061388e565b60405180910390fd5b60005b818110156115715761155e8982815181106114af576114ae6138ae565b5b60200260200101518983815181106114ca576114c96138ae565b5b60200260200101518984815181106114e5576114e46138ae565b5b6020026020010151898581518110611500576114ff6138ae565b5b602002602001015189868151811061151b5761151a6138ae565b5b6020026020010151898781518110611536576115356138ae565b5b6020026020010151898881518110611551576115506138ae565b5b6020026020010151611de1565b8080611569906138dd565b915050611491565b505050505050505050565b600080611587611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061335a565b60405180910390fd5b6000600160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116969190613934565b602060405180830381865afa1580156116b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d7919061397b565b6116e191906139a8565b9050816dffffffffffffffffffffffffffff16811015611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613a28565b60405180910390fd5b611798611741611c0a565b836dffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b6117a0611c0a565b73ffffffffffffffffffffffffffffffffffffffff167ff0b3e02cc573c93409e1425c1f06bd1b3f25701c587835b3af2d2bb6f7589429836040516117e5919061299f565b60405180910390a25050565b6000806117fc611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061335a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613a94565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161194c9190613934565b602060405180830381865afa158015611969573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198d919061397b565b9050600081116119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613a28565b60405180910390fd5b611a046119dd611c0a565b828473ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b5050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611c0281604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff1615151515815250508260000160059054906101000a900464ffffffffff16611c98565b915050919050565b600033905090565b611c938363a9059cbb60e01b8484604051602401611c31929190613ab4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506125c7565b505050565b600080600090508360e0015115611da157836020015164ffffffffff168364ffffffffff161115611ccb57836020015192505b836040015164ffffffffff168364ffffffffff1610611cf7578360a0015181611cf49190613792565b90505b836000015164ffffffffff168364ffffffffff161115611da0576000846000015184611d239190613add565b905060008560600151866060015183611d3c9190613b40565b611d469190613b71565b9050600086600001518760200151611d5e9190613add565b905060008164ffffffffff168364ffffffffff168960800151611d819190613bb0565b611d8b9190613bf8565b90508085611d999190613792565b9450505050505b5b8360c001516dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff1611611dd6578360c00151611dd8565b805b91505092915050565b866000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613c75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1603611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90613822565b60405180910390fd5b60008385611f019190613792565b6dffffffffffffffffffffffffffff1611611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613ce1565b60405180910390fd5b60008864ffffffffff1611611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613d4d565b60405180910390fd5b8664ffffffffff168864ffffffffff1610611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613db9565b60405180910390fd5b60008564ffffffffff1611612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613e25565b60405180910390fd5b60008589896120449190613add565b61204e9190613e45565b64ffffffffff1614612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613ec2565b60405180910390fd5b60008664ffffffffff161180156120bc57506000836dffffffffffffffffffffffffffff16115b80156120d657508764ffffffffff168664ffffffffff1611155b80612104575060008664ffffffffff1614801561210357506000836dffffffffffffffffffffffffffff16145b5b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613f2e565b60405180910390fd5b60006040518061010001604052808a64ffffffffff1681526020018964ffffffffff1681526020018864ffffffffff1681526020018764ffffffffff168152602001866dffffffffffffffffffffffffffff168152602001856dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff168152602001600115158152509050600085856121df9190613792565b905080600160009054906101000a90046dffffffffffffffffffffffffffff166122099190613792565b6dffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122729190613934565b602060405180830381865afa15801561228f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b3919061397b565b10156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613a28565b60405180910390fd5b81600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548164ffffffffff021916908364ffffffffff160217905550604082015181600001600a6101000a81548164ffffffffff021916908364ffffffffff160217905550606082015181600001600f6101000a81548164ffffffffff021916908364ffffffffff16021790555060808201518160010160006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060a082015181600101600e6101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060c08201518160020160006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060e082015181600201600e6101000a81548160ff02191690831515021790555090505080600160008282829054906101000a90046dffffffffffffffffffffffffffff166124d79190613792565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060038b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff167f4e79c332b2ee19f0319021953d9dff3b084e37b4ccff045cef74fc22572f4730836040516125b29190612bdc565b60405180910390a25050505050505050505050565b6000612629826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661268e9092919063ffffffff16565b905060008151111561268957808060200190518101906126499190613f63565b612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90614002565b60405180910390fd5b5b505050565b606061269d84846000856126a6565b90509392505050565b6060824710156126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614094565b60405180910390fd5b6126f4856127ba565b612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614100565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161275c919061419a565b60006040518083038185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b50915091506127ae8282866127dd565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606083156127ed5782905061283d565b6000835111156128005782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283491906141f5565b60405180910390fd5b9392505050565b604051806101000160405280600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff16815260200160006dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612916826128eb565b9050919050565b6129268161290b565b811461293157600080fd5b50565b6000813590506129438161291d565b92915050565b60006020828403121561295f5761295e6128e1565b5b600061296d84828501612934565b91505092915050565b60006dffffffffffffffffffffffffffff82169050919050565b61299981612976565b82525050565b60006020820190506129b46000830184612990565b92915050565b6000819050919050565b6129cd816129ba565b82525050565b60006020820190506129e860008301846129c4565b92915050565b60008115159050919050565b612a03816129ee565b82525050565b6000602082019050612a1e60008301846129fa565b92915050565b600064ffffffffff82169050919050565b612a3e81612a24565b8114612a4957600080fd5b50565b600081359050612a5b81612a35565b92915050565b60008060408385031215612a7857612a776128e1565b5b6000612a8685828601612934565b9250506020612a9785828601612a4c565b9150509250929050565b612aaa816129ee565b8114612ab557600080fd5b50565b600081359050612ac781612aa1565b92915050565b60008060408385031215612ae457612ae36128e1565b5b6000612af285828601612934565b9250506020612b0385828601612ab8565b9150509250929050565b612b1681612a24565b82525050565b612b2581612976565b82525050565b612b34816129ee565b82525050565b61010082016000820151612b516000850182612b0d565b506020820151612b646020850182612b0d565b506040820151612b776040850182612b0d565b506060820151612b8a6060850182612b0d565b506080820151612b9d6080850182612b1c565b5060a0820151612bb060a0850182612b1c565b5060c0820151612bc360c0850182612b1c565b5060e0820151612bd660e0850182612b2b565b50505050565b600061010082019050612bf26000830184612b3a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c2d8161290b565b82525050565b6000612c3f8383612c24565b60208301905092915050565b6000602082019050919050565b6000612c6382612bf8565b612c6d8185612c03565b9350612c7883612c14565b8060005b83811015612ca9578151612c908882612c33565b9750612c9b83612c4b565b925050600181019050612c7c565b5085935050505092915050565b60006020820190508181036000830152612cd08184612c58565b905092915050565b612ce181612976565b8114612cec57600080fd5b50565b600081359050612cfe81612cd8565b92915050565b600080600080600080600060e0888a031215612d2357612d226128e1565b5b6000612d318a828b01612934565b9750506020612d428a828b01612a4c565b9650506040612d538a828b01612a4c565b9550506060612d648a828b01612a4c565b9450506080612d758a828b01612a4c565b93505060a0612d868a828b01612cef565b92505060c0612d978a828b01612cef565b91505092959891949750929550565b6000819050919050565b6000612dcb612dc6612dc1846128eb565b612da6565b6128eb565b9050919050565b6000612ddd82612db0565b9050919050565b6000612def82612dd2565b9050919050565b612dff81612de4565b82525050565b6000602082019050612e1a6000830184612df6565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6e82612e25565b810181811067ffffffffffffffff82111715612e8d57612e8c612e36565b5b80604052505050565b6000612ea06128d7565b9050612eac8282612e65565b919050565b600067ffffffffffffffff821115612ecc57612ecb612e36565b5b602082029050602081019050919050565b600080fd5b6000612ef5612ef084612eb1565b612e96565b90508083825260208201905060208402830185811115612f1857612f17612edd565b5b835b81811015612f415780612f2d8882612934565b845260208401935050602081019050612f1a565b5050509392505050565b600082601f830112612f6057612f5f612e20565b5b8135612f70848260208601612ee2565b91505092915050565b600067ffffffffffffffff821115612f9457612f93612e36565b5b602082029050602081019050919050565b6000612fb8612fb384612f79565b612e96565b90508083825260208201905060208402830185811115612fdb57612fda612edd565b5b835b818110156130045780612ff08882612a4c565b845260208401935050602081019050612fdd565b5050509392505050565b600082601f83011261302357613022612e20565b5b8135613033848260208601612fa5565b91505092915050565b600067ffffffffffffffff82111561305757613056612e36565b5b602082029050602081019050919050565b600061307b6130768461303c565b612e96565b9050808382526020820190506020840283018581111561309e5761309d612edd565b5b835b818110156130c757806130b38882612cef565b8452602084019350506020810190506130a0565b5050509392505050565b600082601f8301126130e6576130e5612e20565b5b81356130f6848260208601613068565b91505092915050565b600080600080600080600060e0888a03121561311e5761311d6128e1565b5b600088013567ffffffffffffffff81111561313c5761313b6128e6565b5b6131488a828b01612f4b565b975050602088013567ffffffffffffffff811115613169576131686128e6565b5b6131758a828b0161300e565b965050604088013567ffffffffffffffff811115613196576131956128e6565b5b6131a28a828b0161300e565b955050606088013567ffffffffffffffff8111156131c3576131c26128e6565b5b6131cf8a828b0161300e565b945050608088013567ffffffffffffffff8111156131f0576131ef6128e6565b5b6131fc8a828b0161300e565b93505060a088013567ffffffffffffffff81111561321d5761321c6128e6565b5b6132298a828b016130d1565b92505060c088013567ffffffffffffffff81111561324a576132496128e6565b5b6132568a828b016130d1565b91505092959891949750929550565b60006020828403121561327b5761327a6128e1565b5b600061328984828501612cef565b91505092915050565b600061329d8261290b565b9050919050565b6132ad81613292565b81146132b857600080fd5b50565b6000813590506132ca816132a4565b92915050565b6000602082840312156132e6576132e56128e1565b5b60006132f4848285016132bb565b91505092915050565b600082825260208201905092915050565b7f41444d494e5f4143434553535f52455155495245440000000000000000000000600082015250565b60006133446015836132fd565b915061334f8261330e565b602082019050919050565b6000602082019050818103600083015261337381613337565b9050919050565b7f4e4f5f4143544956455f434c41494d0000000000000000000000000000000000600082015250565b60006133b0600f836132fd565b91506133bb8261337a565b602082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b7f4e4f5f554e5645535445445f414d4f554e540000000000000000000000000000600082015250565b600061341c6012836132fd565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061348c82612976565b915061349783612976565b9250828210156134aa576134a9613452565b5b828203905092915050565b60006134d06134cb6134c684612a24565b612da6565b6129ba565b9050919050565b6134e0816134b5565b82525050565b60008160001c9050919050565b600064ffffffffff82169050919050565b6000613517613512836134e6565b6134f3565b9050919050565b60008160281c9050919050565b600061353e6135398361351e565b6134f3565b9050919050565b60008160501c9050919050565b600061356561356083613545565b6134f3565b9050919050565b60008160781c9050919050565b600061358c6135878361356c565b6134f3565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b60006135c06135bb836134e6565b613593565b9050919050565b60008160701c9050919050565b60006135e76135e2836135c7565b613593565b9050919050565b600060ff82169050919050565b600061360e613609836135c7565b6135ee565b9050919050565b6101008201600080830154905061362b81613504565b6136386000860182612b0d565b506136428161352b565b61364f6020860182612b0d565b5061365981613552565b6136666040860182612b0d565b5061367081613579565b61367d6060860182612b0d565b506001830154905061368e816135ad565b61369b6080860182612b1c565b506136a5816135d4565b6136b260a0860182612b1c565b50600283015490506136c3816135ad565b6136d060c0860182612b1c565b506136da816135fb565b6136e760e0860182612b2b565b5050505050565b6000610140820190506137046000830186612990565b61371160208301856134d7565b61371e6040830184613615565b949350505050565b7f4e4f5448494e475f544f5f574954484452415700000000000000000000000000600082015250565b600061375c6013836132fd565b915061376782613726565b602082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b600061379d82612976565b91506137a883612976565b9250826dffffffffffffffffffffffffffff038211156137cb576137ca613452565b5b828201905092915050565b7f494e56414c49445f414444524553530000000000000000000000000000000000600082015250565b600061380c600f836132fd565b9150613817826137d6565b602082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b7f41525241595f4c454e4754485f4d49534d415443480000000000000000000000600082015250565b60006138786015836132fd565b915061388382613842565b602082019050919050565b600060208201905081810360008301526138a78161386b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138e8826129ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361391a57613919613452565b5b600182019050919050565b61392e8161290b565b82525050565b60006020820190506139496000830184613925565b92915050565b613958816129ba565b811461396357600080fd5b50565b6000815190506139758161394f565b92915050565b600060208284031215613991576139906128e1565b5b600061399f84828501613966565b91505092915050565b60006139b3826129ba565b91506139be836129ba565b9250828210156139d1576139d0613452565b5b828203905092915050565b7f494e53554646494349454e545f42414c414e4345000000000000000000000000600082015250565b6000613a126014836132fd565b9150613a1d826139dc565b602082019050919050565b60006020820190508181036000830152613a4181613a05565b9050919050565b7f494e56414c49445f544f4b454e00000000000000000000000000000000000000600082015250565b6000613a7e600d836132fd565b9150613a8982613a48565b602082019050919050565b60006020820190508181036000830152613aad81613a71565b9050919050565b6000604082019050613ac96000830185613925565b613ad660208301846129c4565b9392505050565b6000613ae882612a24565b9150613af383612a24565b925082821015613b0657613b05613452565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4b82612a24565b9150613b5683612a24565b925082613b6657613b65613b11565b5b828204905092915050565b6000613b7c82612a24565b9150613b8783612a24565b92508164ffffffffff0483118215151615613ba557613ba4613452565b5b828202905092915050565b6000613bbb82612976565b9150613bc683612976565b9250816dffffffffffffffffffffffffffff0483118215151615613bed57613bec613452565b5b828202905092915050565b6000613c0382612976565b9150613c0e83612976565b925082613c1e57613c1d613b11565b5b828204905092915050565b7f434c41494d5f414c52454144595f455849535453000000000000000000000000600082015250565b6000613c5f6014836132fd565b9150613c6a82613c29565b602082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f494e56414c49445f5645535445445f414d4f554e540000000000000000000000600082015250565b6000613ccb6015836132fd565b9150613cd682613c95565b602082019050919050565b60006020820190508181036000830152613cfa81613cbe565b9050919050565b7f494e56414c49445f53544152545f54494d455354414d50000000000000000000600082015250565b6000613d376017836132fd565b9150613d4282613d01565b602082019050919050565b60006020820190508181036000830152613d6681613d2a565b9050919050565b7f494e56414c49445f454e445f54494d455354414d500000000000000000000000600082015250565b6000613da36015836132fd565b9150613dae82613d6d565b602082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b7f494e56414c49445f52454c454153455f494e54455256414c0000000000000000600082015250565b6000613e0f6018836132fd565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b6000613e5082612a24565b9150613e5b83612a24565b925082613e6b57613e6a613b11565b5b828206905092915050565b7f494e56414c49445f494e54455256414c5f4c454e475448000000000000000000600082015250565b6000613eac6017836132fd565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f494e56414c49445f434c49464600000000000000000000000000000000000000600082015250565b6000613f18600d836132fd565b9150613f2382613ee2565b602082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b600081519050613f5d81612aa1565b92915050565b600060208284031215613f7957613f786128e1565b5b6000613f8784828501613f4e565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000613fec602a836132fd565b9150613ff782613f90565b604082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061407e6026836132fd565b915061408982614022565b604082019050919050565b600060208201905081810360008301526140ad81614071565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006140ea601d836132fd565b91506140f5826140b4565b602082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015614154578082015181840152602081019050614139565b83811115614163576000848401525b50505050565b600061417482614120565b61417e818561412b565b935061418e818560208601614136565b80840191505092915050565b60006141a68284614169565b915081905092915050565b600081519050919050565b60006141c7826141b1565b6141d181856132fd565b93506141e1818560208601614136565b6141ea81612e25565b840191505092915050565b6000602082019050818103600083015261420f81846141bc565b90509291505056fea26469706673582212202fb42cf54a45b30eceda39f3af8487391ef6ee2f68601e7add892f799dc7400264736f6c634300080e0033000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80637197dec311610097578063ae9741aa11610066578063ae9741aa1461029b578063b3a026b1146102b7578063e50373f9146102d3578063ed83a4b2146102ef57610100565b80637197dec314610213578063852e72e914610231578063898850491461024d5780639d76ea581461027d57610100565b80633ccfd60b116100d35780633ccfd60b1461018d5780634a0e701e146101975780634b0bddd2146101c75780634cd3723a146101e357610100565b80630216ee4114610105578063137c68fa14610121578063241c5b1f1461013f57806324d7806c1461015d575b600080fd5b61011f600480360381019061011a9190612949565b61031f565b005b61012961067e565b604051610136919061299f565b60405180910390f35b61014761069e565b60405161015491906129d3565b60405180910390f35b61017760048036038101906101729190612949565b6106ab565b6040516101849190612a09565b60405180910390f35b610195610700565b005b6101b160048036038101906101ac9190612a61565b610a89565b6040516101be919061299f565b60405180910390f35b6101e160048036038101906101dc9190612acd565b610c77565b005b6101fd60048036038101906101f89190612949565b610e20565b60405161020a9190612bdc565b60405180910390f35b61021b611005565b6040516102289190612cb6565b60405180910390f35b61024b60048036038101906102469190612d04565b611093565b005b61026760048036038101906102629190612949565b61113d565b604051610274919061299f565b60405180910390f35b610285611353565b6040516102929190612e05565b60405180910390f35b6102b560048036038101906102b091906130ff565b611377565b005b6102d160048036038101906102cc9190613265565b61157c565b005b6102ed60048036038101906102e891906132d0565b6117f1565b005b61030960048036038101906103049190612949565b611a08565b604051610316919061299f565b60405180910390f35b60008061032a611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166103b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a89061335a565b60405180910390fd5b806000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff1611610454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044b906133c6565b60405180910390fd5b6001151581600201600e9054906101000a900460ff161515146104ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104a3906133c6565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060006104fa85611a08565b9050806dffffffffffffffffffffffffffff168260020160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff161061057c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057390613432565b60405180910390fd5b60008260020160009054906101000a90046dffffffffffffffffffffffffffff16826105a89190613481565b9050600083600201600e6101000a81548160ff02191690831515021790555080600160008282829054906101000a90046dffffffffffffffffffffffffffff166105f29190613481565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff1602179055508573ffffffffffffffffffffffffffffffffffffffff167f33dd3909387f8e5a36be260ddd69080def445805af1761f8bdf809f81658be5782428660405161066e939291906136ee565b60405180910390a2505050505050565b600160009054906101000a90046dffffffffffffffffffffffffffff1681565b6000600380549050905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610708611c0a565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff16116107aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a1906133c6565b60405180910390fd5b6001151581600201600e9054906101000a900460ff16151514610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f9906133c6565b60405180910390fd5b600060026000610810611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050600061085f610859611c0a565b42610a89565b90508160020160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff16116108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613772565b60405180910390fd5b60008260020160009054906101000a90046dffffffffffffffffffffffffffff168261090d9190613481565b9050808360020160008282829054906101000a90046dffffffffffffffffffffffffffff1661093c9190613792565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555080600160008282829054906101000a90046dffffffffffffffffffffffffffff166109999190613481565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff160217905550610a2d6109d6611c0a565b826dffffffffffffffffffffffffffff167f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c273ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b610a35611c0a565b73ffffffffffffffffffffffffffffffffffffffff167f27febd2ce374435f33b4d2a794a201df2f20a352431a123b1bb385fe6a0e073082604051610a7a919061299f565b60405180910390a25050505050565b600080600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050610c6e81604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff16151515158152505084611c98565b91505092915050565b600080610c82611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061335a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90613822565b60405180910390fd5b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fe529461c8529abc0e0fe7c5ee361f74fe22e0b7574df1fc0b7558a282091fb7882604051610e149190612a09565b60405180910390a25050565b610e28612844565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff1615151515815250509050919050565b6060600380548060200260200160405190810160405280929190818152602001828054801561108957602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161103f575b5050505050905090565b60008061109e611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111c9061335a565b60405180910390fd5b61113487878787878787611de1565b50505050505050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508060020160009054906101000a90046dffffffffffffffffffffffffffff1661134182604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff16151515158152505042611c98565b61134b9190613481565b915050919050565b7f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c281565b600080611382611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611409576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114009061335a565b60405180910390fd5b60008751905080875114801561141f5750808651145b801561142b5750808551145b80156114375750808451145b80156114435750808351145b801561144f5750808251145b61148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061388e565b60405180910390fd5b60005b818110156115715761155e8982815181106114af576114ae6138ae565b5b60200260200101518983815181106114ca576114c96138ae565b5b60200260200101518984815181106114e5576114e46138ae565b5b6020026020010151898581518110611500576114ff6138ae565b5b602002602001015189868151811061151b5761151a6138ae565b5b6020026020010151898781518110611536576115356138ae565b5b6020026020010151898881518110611551576115506138ae565b5b6020026020010151611de1565b8080611569906138dd565b915050611491565b505050505050505050565b600080611587611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661160e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116059061335a565b60405180910390fd5b6000600160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff167f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016116969190613934565b602060405180830381865afa1580156116b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d7919061397b565b6116e191906139a8565b9050816dffffffffffffffffffffffffffff16811015611736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172d90613a28565b60405180910390fd5b611798611741611c0a565b836dffffffffffffffffffffffffffff167f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c273ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b6117a0611c0a565b73ffffffffffffffffffffffffffffffffffffffff167ff0b3e02cc573c93409e1425c1f06bd1b3f25701c587835b3af2d2bb6f7589429836040516117e5919061299f565b60405180910390a25050565b6000806117fc611c0a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a9061335a565b60405180910390fd5b7f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190890613a94565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161194c9190613934565b602060405180830381865afa158015611969573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061198d919061397b565b9050600081116119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613a28565b60405180910390fd5b611a046119dd611c0a565b828473ffffffffffffffffffffffffffffffffffffffff16611c129092919063ffffffff16565b5050565b600080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611c0281604051806101000160405290816000820160009054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016000820160059054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600a9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff16815260200160008201600f9054906101000a900464ffffffffff1664ffffffffff1664ffffffffff1681526020016001820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160018201600e9054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff1681526020016002820160009054906101000a90046dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff166dffffffffffffffffffffffffffff16815260200160028201600e9054906101000a900460ff1615151515815250508260000160059054906101000a900464ffffffffff16611c98565b915050919050565b600033905090565b611c938363a9059cbb60e01b8484604051602401611c31929190613ab4565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506125c7565b505050565b600080600090508360e0015115611da157836020015164ffffffffff168364ffffffffff161115611ccb57836020015192505b836040015164ffffffffff168364ffffffffff1610611cf7578360a0015181611cf49190613792565b90505b836000015164ffffffffff168364ffffffffff161115611da0576000846000015184611d239190613add565b905060008560600151866060015183611d3c9190613b40565b611d469190613b71565b9050600086600001518760200151611d5e9190613add565b905060008164ffffffffff168364ffffffffff168960800151611d819190613bb0565b611d8b9190613bf8565b90508085611d999190613792565b9450505050505b5b8360c001516dffffffffffffffffffffffffffff16816dffffffffffffffffffffffffffff1611611dd6578360c00151611dd8565b805b91505092915050565b866000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000160009054906101000a900464ffffffffff1664ffffffffff1614611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b90613c75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1603611ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eea90613822565b60405180910390fd5b60008385611f019190613792565b6dffffffffffffffffffffffffffff1611611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890613ce1565b60405180910390fd5b60008864ffffffffff1611611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613d4d565b60405180910390fd5b8664ffffffffff168864ffffffffff1610611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe290613db9565b60405180910390fd5b60008564ffffffffff1611612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90613e25565b60405180910390fd5b60008589896120449190613add565b61204e9190613e45565b64ffffffffff1614612095576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208c90613ec2565b60405180910390fd5b60008664ffffffffff161180156120bc57506000836dffffffffffffffffffffffffffff16115b80156120d657508764ffffffffff168664ffffffffff1611155b80612104575060008664ffffffffff1614801561210357506000836dffffffffffffffffffffffffffff16145b5b612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90613f2e565b60405180910390fd5b60006040518061010001604052808a64ffffffffff1681526020018964ffffffffff1681526020018864ffffffffff1681526020018764ffffffffff168152602001866dffffffffffffffffffffffffffff168152602001856dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff168152602001600115158152509050600085856121df9190613792565b905080600160009054906101000a90046dffffffffffffffffffffffffffff166122099190613792565b6dffffffffffffffffffffffffffff167f000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016122729190613934565b602060405180830381865afa15801561228f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122b3919061397b565b10156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb90613a28565b60405180910390fd5b81600260008d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a81548164ffffffffff021916908364ffffffffff16021790555060208201518160000160056101000a81548164ffffffffff021916908364ffffffffff160217905550604082015181600001600a6101000a81548164ffffffffff021916908364ffffffffff160217905550606082015181600001600f6101000a81548164ffffffffff021916908364ffffffffff16021790555060808201518160010160006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060a082015181600101600e6101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060c08201518160020160006101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060e082015181600201600e6101000a81548160ff02191690831515021790555090505080600160008282829054906101000a90046dffffffffffffffffffffffffffff166124d79190613792565b92506101000a8154816dffffffffffffffffffffffffffff02191690836dffffffffffffffffffffffffffff16021790555060038b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508a73ffffffffffffffffffffffffffffffffffffffff167f4e79c332b2ee19f0319021953d9dff3b084e37b4ccff045cef74fc22572f4730836040516125b29190612bdc565b60405180910390a25050505050505050505050565b6000612629826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661268e9092919063ffffffff16565b905060008151111561268957808060200190518101906126499190613f63565b612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90614002565b60405180910390fd5b5b505050565b606061269d84846000856126a6565b90509392505050565b6060824710156126eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e290614094565b60405180910390fd5b6126f4856127ba565b612733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272a90614100565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161275c919061419a565b60006040518083038185875af1925050503d8060008114612799576040519150601f19603f3d011682016040523d82523d6000602084013e61279e565b606091505b50915091506127ae8282866127dd565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606083156127ed5782905061283d565b6000835111156128005782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283491906141f5565b60405180910390fd5b9392505050565b604051806101000160405280600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff16815260200160006dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff16815260200160006dffffffffffffffffffffffffffff1681526020016000151581525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612916826128eb565b9050919050565b6129268161290b565b811461293157600080fd5b50565b6000813590506129438161291d565b92915050565b60006020828403121561295f5761295e6128e1565b5b600061296d84828501612934565b91505092915050565b60006dffffffffffffffffffffffffffff82169050919050565b61299981612976565b82525050565b60006020820190506129b46000830184612990565b92915050565b6000819050919050565b6129cd816129ba565b82525050565b60006020820190506129e860008301846129c4565b92915050565b60008115159050919050565b612a03816129ee565b82525050565b6000602082019050612a1e60008301846129fa565b92915050565b600064ffffffffff82169050919050565b612a3e81612a24565b8114612a4957600080fd5b50565b600081359050612a5b81612a35565b92915050565b60008060408385031215612a7857612a776128e1565b5b6000612a8685828601612934565b9250506020612a9785828601612a4c565b9150509250929050565b612aaa816129ee565b8114612ab557600080fd5b50565b600081359050612ac781612aa1565b92915050565b60008060408385031215612ae457612ae36128e1565b5b6000612af285828601612934565b9250506020612b0385828601612ab8565b9150509250929050565b612b1681612a24565b82525050565b612b2581612976565b82525050565b612b34816129ee565b82525050565b61010082016000820151612b516000850182612b0d565b506020820151612b646020850182612b0d565b506040820151612b776040850182612b0d565b506060820151612b8a6060850182612b0d565b506080820151612b9d6080850182612b1c565b5060a0820151612bb060a0850182612b1c565b5060c0820151612bc360c0850182612b1c565b5060e0820151612bd660e0850182612b2b565b50505050565b600061010082019050612bf26000830184612b3a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c2d8161290b565b82525050565b6000612c3f8383612c24565b60208301905092915050565b6000602082019050919050565b6000612c6382612bf8565b612c6d8185612c03565b9350612c7883612c14565b8060005b83811015612ca9578151612c908882612c33565b9750612c9b83612c4b565b925050600181019050612c7c565b5085935050505092915050565b60006020820190508181036000830152612cd08184612c58565b905092915050565b612ce181612976565b8114612cec57600080fd5b50565b600081359050612cfe81612cd8565b92915050565b600080600080600080600060e0888a031215612d2357612d226128e1565b5b6000612d318a828b01612934565b9750506020612d428a828b01612a4c565b9650506040612d538a828b01612a4c565b9550506060612d648a828b01612a4c565b9450506080612d758a828b01612a4c565b93505060a0612d868a828b01612cef565b92505060c0612d978a828b01612cef565b91505092959891949750929550565b6000819050919050565b6000612dcb612dc6612dc1846128eb565b612da6565b6128eb565b9050919050565b6000612ddd82612db0565b9050919050565b6000612def82612dd2565b9050919050565b612dff81612de4565b82525050565b6000602082019050612e1a6000830184612df6565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612e6e82612e25565b810181811067ffffffffffffffff82111715612e8d57612e8c612e36565b5b80604052505050565b6000612ea06128d7565b9050612eac8282612e65565b919050565b600067ffffffffffffffff821115612ecc57612ecb612e36565b5b602082029050602081019050919050565b600080fd5b6000612ef5612ef084612eb1565b612e96565b90508083825260208201905060208402830185811115612f1857612f17612edd565b5b835b81811015612f415780612f2d8882612934565b845260208401935050602081019050612f1a565b5050509392505050565b600082601f830112612f6057612f5f612e20565b5b8135612f70848260208601612ee2565b91505092915050565b600067ffffffffffffffff821115612f9457612f93612e36565b5b602082029050602081019050919050565b6000612fb8612fb384612f79565b612e96565b90508083825260208201905060208402830185811115612fdb57612fda612edd565b5b835b818110156130045780612ff08882612a4c565b845260208401935050602081019050612fdd565b5050509392505050565b600082601f83011261302357613022612e20565b5b8135613033848260208601612fa5565b91505092915050565b600067ffffffffffffffff82111561305757613056612e36565b5b602082029050602081019050919050565b600061307b6130768461303c565b612e96565b9050808382526020820190506020840283018581111561309e5761309d612edd565b5b835b818110156130c757806130b38882612cef565b8452602084019350506020810190506130a0565b5050509392505050565b600082601f8301126130e6576130e5612e20565b5b81356130f6848260208601613068565b91505092915050565b600080600080600080600060e0888a03121561311e5761311d6128e1565b5b600088013567ffffffffffffffff81111561313c5761313b6128e6565b5b6131488a828b01612f4b565b975050602088013567ffffffffffffffff811115613169576131686128e6565b5b6131758a828b0161300e565b965050604088013567ffffffffffffffff811115613196576131956128e6565b5b6131a28a828b0161300e565b955050606088013567ffffffffffffffff8111156131c3576131c26128e6565b5b6131cf8a828b0161300e565b945050608088013567ffffffffffffffff8111156131f0576131ef6128e6565b5b6131fc8a828b0161300e565b93505060a088013567ffffffffffffffff81111561321d5761321c6128e6565b5b6132298a828b016130d1565b92505060c088013567ffffffffffffffff81111561324a576132496128e6565b5b6132568a828b016130d1565b91505092959891949750929550565b60006020828403121561327b5761327a6128e1565b5b600061328984828501612cef565b91505092915050565b600061329d8261290b565b9050919050565b6132ad81613292565b81146132b857600080fd5b50565b6000813590506132ca816132a4565b92915050565b6000602082840312156132e6576132e56128e1565b5b60006132f4848285016132bb565b91505092915050565b600082825260208201905092915050565b7f41444d494e5f4143434553535f52455155495245440000000000000000000000600082015250565b60006133446015836132fd565b915061334f8261330e565b602082019050919050565b6000602082019050818103600083015261337381613337565b9050919050565b7f4e4f5f4143544956455f434c41494d0000000000000000000000000000000000600082015250565b60006133b0600f836132fd565b91506133bb8261337a565b602082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b7f4e4f5f554e5645535445445f414d4f554e540000000000000000000000000000600082015250565b600061341c6012836132fd565b9150613427826133e6565b602082019050919050565b6000602082019050818103600083015261344b8161340f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061348c82612976565b915061349783612976565b9250828210156134aa576134a9613452565b5b828203905092915050565b60006134d06134cb6134c684612a24565b612da6565b6129ba565b9050919050565b6134e0816134b5565b82525050565b60008160001c9050919050565b600064ffffffffff82169050919050565b6000613517613512836134e6565b6134f3565b9050919050565b60008160281c9050919050565b600061353e6135398361351e565b6134f3565b9050919050565b60008160501c9050919050565b600061356561356083613545565b6134f3565b9050919050565b60008160781c9050919050565b600061358c6135878361356c565b6134f3565b9050919050565b60006dffffffffffffffffffffffffffff82169050919050565b60006135c06135bb836134e6565b613593565b9050919050565b60008160701c9050919050565b60006135e76135e2836135c7565b613593565b9050919050565b600060ff82169050919050565b600061360e613609836135c7565b6135ee565b9050919050565b6101008201600080830154905061362b81613504565b6136386000860182612b0d565b506136428161352b565b61364f6020860182612b0d565b5061365981613552565b6136666040860182612b0d565b5061367081613579565b61367d6060860182612b0d565b506001830154905061368e816135ad565b61369b6080860182612b1c565b506136a5816135d4565b6136b260a0860182612b1c565b50600283015490506136c3816135ad565b6136d060c0860182612b1c565b506136da816135fb565b6136e760e0860182612b2b565b5050505050565b6000610140820190506137046000830186612990565b61371160208301856134d7565b61371e6040830184613615565b949350505050565b7f4e4f5448494e475f544f5f574954484452415700000000000000000000000000600082015250565b600061375c6013836132fd565b915061376782613726565b602082019050919050565b6000602082019050818103600083015261378b8161374f565b9050919050565b600061379d82612976565b91506137a883612976565b9250826dffffffffffffffffffffffffffff038211156137cb576137ca613452565b5b828201905092915050565b7f494e56414c49445f414444524553530000000000000000000000000000000000600082015250565b600061380c600f836132fd565b9150613817826137d6565b602082019050919050565b6000602082019050818103600083015261383b816137ff565b9050919050565b7f41525241595f4c454e4754485f4d49534d415443480000000000000000000000600082015250565b60006138786015836132fd565b915061388382613842565b602082019050919050565b600060208201905081810360008301526138a78161386b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006138e8826129ba565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361391a57613919613452565b5b600182019050919050565b61392e8161290b565b82525050565b60006020820190506139496000830184613925565b92915050565b613958816129ba565b811461396357600080fd5b50565b6000815190506139758161394f565b92915050565b600060208284031215613991576139906128e1565b5b600061399f84828501613966565b91505092915050565b60006139b3826129ba565b91506139be836129ba565b9250828210156139d1576139d0613452565b5b828203905092915050565b7f494e53554646494349454e545f42414c414e4345000000000000000000000000600082015250565b6000613a126014836132fd565b9150613a1d826139dc565b602082019050919050565b60006020820190508181036000830152613a4181613a05565b9050919050565b7f494e56414c49445f544f4b454e00000000000000000000000000000000000000600082015250565b6000613a7e600d836132fd565b9150613a8982613a48565b602082019050919050565b60006020820190508181036000830152613aad81613a71565b9050919050565b6000604082019050613ac96000830185613925565b613ad660208301846129c4565b9392505050565b6000613ae882612a24565b9150613af383612a24565b925082821015613b0657613b05613452565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b4b82612a24565b9150613b5683612a24565b925082613b6657613b65613b11565b5b828204905092915050565b6000613b7c82612a24565b9150613b8783612a24565b92508164ffffffffff0483118215151615613ba557613ba4613452565b5b828202905092915050565b6000613bbb82612976565b9150613bc683612976565b9250816dffffffffffffffffffffffffffff0483118215151615613bed57613bec613452565b5b828202905092915050565b6000613c0382612976565b9150613c0e83612976565b925082613c1e57613c1d613b11565b5b828204905092915050565b7f434c41494d5f414c52454144595f455849535453000000000000000000000000600082015250565b6000613c5f6014836132fd565b9150613c6a82613c29565b602082019050919050565b60006020820190508181036000830152613c8e81613c52565b9050919050565b7f494e56414c49445f5645535445445f414d4f554e540000000000000000000000600082015250565b6000613ccb6015836132fd565b9150613cd682613c95565b602082019050919050565b60006020820190508181036000830152613cfa81613cbe565b9050919050565b7f494e56414c49445f53544152545f54494d455354414d50000000000000000000600082015250565b6000613d376017836132fd565b9150613d4282613d01565b602082019050919050565b60006020820190508181036000830152613d6681613d2a565b9050919050565b7f494e56414c49445f454e445f54494d455354414d500000000000000000000000600082015250565b6000613da36015836132fd565b9150613dae82613d6d565b602082019050919050565b60006020820190508181036000830152613dd281613d96565b9050919050565b7f494e56414c49445f52454c454153455f494e54455256414c0000000000000000600082015250565b6000613e0f6018836132fd565b9150613e1a82613dd9565b602082019050919050565b60006020820190508181036000830152613e3e81613e02565b9050919050565b6000613e5082612a24565b9150613e5b83612a24565b925082613e6b57613e6a613b11565b5b828206905092915050565b7f494e56414c49445f494e54455256414c5f4c454e475448000000000000000000600082015250565b6000613eac6017836132fd565b9150613eb782613e76565b602082019050919050565b60006020820190508181036000830152613edb81613e9f565b9050919050565b7f494e56414c49445f434c49464600000000000000000000000000000000000000600082015250565b6000613f18600d836132fd565b9150613f2382613ee2565b602082019050919050565b60006020820190508181036000830152613f4781613f0b565b9050919050565b600081519050613f5d81612aa1565b92915050565b600060208284031215613f7957613f786128e1565b5b6000613f8784828501613f4e565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000613fec602a836132fd565b9150613ff782613f90565b604082019050919050565b6000602082019050818103600083015261401b81613fdf565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b600061407e6026836132fd565b915061408982614022565b604082019050919050565b600060208201905081810360008301526140ad81614071565b9050919050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b60006140ea601d836132fd565b91506140f5826140b4565b602082019050919050565b60006020820190508181036000830152614119816140dd565b9050919050565b600081519050919050565b600081905092915050565b60005b83811015614154578082015181840152602081019050614139565b83811115614163576000848401525b50505050565b600061417482614120565b61417e818561412b565b935061418e818560208601614136565b80840191505092915050565b60006141a68284614169565b915081905092915050565b600081519050919050565b60006141c7826141b1565b6141d181856132fd565b93506141e1818560208601614136565b6141ea81612e25565b840191505092915050565b6000602082019050818103600083015261420f81846141bc565b90509291505056fea26469706673582212202fb42cf54a45b30eceda39f3af8487391ef6ee2f68601e7add892f799dc7400264736f6c634300080e0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2

-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xF17e65822b568B3903685a7c9F496CF7656Cc6C2

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2
Arg [1] : 000000000000000000000000f17e65822b568b3903685a7c9f496cf7656cc6c2


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.