ETH Price: $2,606.29 (-2.67%)
Gas: 1 Gwei

Token

Vesting Swarm Markets Token v2 (vSMT2)
 

Overview

Max Total Supply

556,826.133014418779997019 vSMT2

Holders

30

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
camero.eth
Balance
2,654.0607023995 vSMT2

Value
$0.00
0x4D12220cde781c79fdE6c532CAe280F183aaB442
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SmtVesting

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-21
*/

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity >=0.6.0 <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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/utils/Pausable.sol



pragma solidity ^0.7.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.7.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/EnumerableSet.sol



pragma solidity ^0.7.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/access/AccessControl.sol



pragma solidity ^0.7.0;




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.7.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.7.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.7.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Pausable.sol



pragma solidity ^0.7.0;



/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        require(!paused(), "ERC20Pausable: token transfer while paused");
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity ^0.7.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/presets/ERC20PresetMinterPauser.sol



pragma solidity ^0.7.0;






/**
 * @dev {ERC20} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC20PresetMinterPauser is Context, AccessControl, ERC20Burnable, ERC20Pausable {
    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * See {ERC20-constructor}.
     */
    constructor(string memory name, string memory symbol) ERC20(name, symbol) {
        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

    /**
     * @dev Creates `amount` new tokens for `to`.
     *
     * See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, uint256 amount) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have minter role to mint");
        _mint(to, amount);
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC20Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC20PresetMinterPauser: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: contracts/SmtVesting.sol

//SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.7.0;




/**
 * @title SmtVesting
 * @author Protofire
 * @dev Contract module used to lock SMT during Vesting period.
 */
contract SmtVesting is ERC20PresetMinterPauser {
    using SafeMath for uint256;

    /// @dev ERC20 basic token contract being held
    IERC20 public acceptedToken;

    /// @dev distribution start timestamp
    uint256 public distributionStartTime;

    /// @dev Know Your Asset
    string public KYA;

    /// @dev time constants
    uint256 private constant SECONDS_IN_QUARTER = 7889238; // 60*60*24×30,436875*3 = 7889238  number of seconds in one quarter
    // uint256 private constant SECONDS_IN_12HOURS = 43200; // 60*60*12
    // uint256 private constant SECONDS_IN_15_MINUTES = 900; // 60*15

    /// @dev trasnferable addresses whitelist
    mapping(address => bool) public whitelist;

    /// @dev trasnferable addresses whitelist
    mapping(address => uint256) public claimings;

    /// @dev Emitted when `owner` claims.
    event Claim(address indexed owner, uint256 amount);

    /// @dev Emitted when `owner` claims.
    event AcceptedTokenSet(address _acceptedToken);

    /// @dev Emitted when `owner` claims.
    event StartTimeSet(uint256 startTime);

    /// @dev Emitted when one address is included in trasnferable whitelist.
    event WhitelistedAddress(address whitelisted);

    /**
     * @dev Sets the value for {distributionStartTime}, signaling that distribution yet needs to be determined by admin
     *
     * Sets ownership to the given `_owner`.
     *
     */
    constructor(string memory name_, string memory symbol_) ERC20PresetMinterPauser(name_, symbol_) {
        distributionStartTime = 0;
    }

    /**
     * @dev Sets the value for `acceptedToken`.
     *
     * Requirements:
     *
     * - the caller must have DEFAULT_ADMIN_ROLE.
     * - `_token` can't be zero address
     * - `acceptedToken` should not be already set
     *
     */
    function setAcceptedToken(address _token) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SmtVesting: only DEFAULT_ADMIN_ROLE");
        require(_token != address(0), "SmtVesting: zero address error");
        require(address(acceptedToken) == address(0), "SmtVesting: token is already set");

        acceptedToken = IERC20(_token);
        emit AcceptedTokenSet(_token);
    }

    /**
     * @dev Locks certain  _amount of `acceptedToken`.
     *
     * Requirements:
     *
     * - the caller must have DEFAULT_ADMIN_ROLE.
     * - `acceptedToken` need tbe approved first by caller on `acceptedToken` contract
     */
    function deposit(uint256 _amount) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SmtVesting: only DEFAULT_ADMIN_ROLE");
        acceptedToken.transferFrom(_msgSender(), address(this), _amount);
        _mint(_msgSender(), _amount);
    }

    /**
     * @dev check funds locked by this contract in terms of acceptedToken's balance
     * should be alkways equal to totalSupply, usefull as a doublecheck control
     */
    function getCurrentLockedAmount() external view returns (uint256 balanceOfAcceptedToken) {
        return acceptedToken.balanceOf(address(this));
    }

    /**
     * @dev sets KYA
     *
     * Requirements:
     *
     * - the caller must have DEFAULT_ADMIN_ROLE.
     *
     */
    function setKYA(string calldata _knowYourAsset) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SmtVesting: only DEFAULT_ADMIN_ROLE");
        KYA = _knowYourAsset;
    }

    /**
     * @dev add _address to the whitlist, signaling that it can make transfers of this token
     *
     * Requirements:
     *
     * - the caller must have DEFAULT_ADMIN_ROLE.
     * - `_address` can not be zero address
     */
    function addWhitelistedAddress(address _address) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SmtVesting: only DEFAULT_ADMIN_ROLE");
        require(_address != address(0), "SmtVesting: zero address error");

        whitelist[_address] = true;

        emit WhitelistedAddress(_address);
    }

    /**
     * @dev burns certain `amount` of vSMT token and release quivalent balance of acceptedToken
     *
     * Requirements:
     *
     * - amount must be lower or equal than ClaimableAmount
     * - distributionStartTime must be different than 0
     * - `_address` can not be zero address
     */
    function claim(uint256 amount) public {
        require(distributionStartTime != 0, "SmtVesting: distributionStartTime not set");
        uint256 claimableAmount = getClaimableAmount(_msgSender());
        require(claimableAmount >= amount, "SmtVesting: amount too big");
        acceptedToken.transfer(_msgSender(), amount);
        _burn(_msgSender(), amount);

        claimings[_msgSender()] = claimings[_msgSender()].add(amount);
        emit Claim(_msgSender(), amount);
    }

    /**
     * @dev minting directly is disallowed
     *
     */
    function mint(address to, uint256 amount) public pure override {
        revert("SmtVesting: minting is only allowed using deposit function");
    }

    /**
     * @dev burning directly is disallowed
     *
     */
    function burn(uint256 amount) public pure override {
        revert("SmtVesting: burning is only allowed using claim function");
    }

    function burnFrom(address account, uint256 amount) public pure override {
        revert("SmtVesting: burning is only allowed using claim function");
    }

    /**
     * @dev only whitelisted address are allowed to transfer this token's ownership
     * - address 0x0 are allowed by default cause we need to burn and mint tokens
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused(), "SmtVesting:: token transfer while paused");
        bool allowed = whitelist[from] || from == address(0) || to == address(0);
        require(allowed, "SmtVesting: trasnfer is just allowed for whitelisted addresses");
    }

    /**
     * @dev claims maximun available amount from caller's holdings
     *
     */
    function claimMaximunAmount() external {
        uint256 amount = getClaimableAmount(_msgSender());
        require(amount != 0, "SmtVesting: nothing to claim");
        claim(amount);
    }

    /**
     * @dev calculates how much is currently available to be claimed by caller
     * on Q1 20%, on Q2 40%, on Q3 60%, on Q4 80%, 100% after Q4
     *
     * Requirements:
     *
     * - distributionStartTime must be different from 0
     * - if distributionStartTime os differenct in grater than current timestamp, this function reverts
     */
    function getClaimableAmount(address awarded) public view returns (uint256 amount) {
        require(distributionStartTime != 0, "SmtVesting: distributionSartTime not set");

        uint256 currentQuarter = currentQuarterSinceStartTime();
        uint256 balanceOnAuction = balanceOf(awarded).add(claimings[awarded]);

        if (currentQuarter == 0) {
            return (balanceOnAuction.mul(2).div(10)).sub(claimings[awarded]);
        }
        if (currentQuarter == 1) {
            return (balanceOnAuction.mul(4).div(10)).sub(claimings[awarded]);
        }
        if (currentQuarter == 2) {
            return (balanceOnAuction.mul(6).div(10)).sub(claimings[awarded]);
        }
        if (currentQuarter == 3) {
            return (balanceOnAuction.mul(8).div(10)).sub(claimings[awarded]);
        }
        if (currentQuarter >= 4) {
            return balanceOf(awarded);
        }
    }

    /**
     * @dev returns number of quarters passed from distributionStartTime
     */
    function currentQuarterSinceStartTime() public view returns (uint256 currentQuarter) {
        require(distributionStartTime != 0, "SmtVesting: distributionStartTime not set");
        require(distributionStartTime < block.timestamp, "SmtVesting: vesting did not start yet");
        return (block.timestamp.sub(distributionStartTime)).div(SECONDS_IN_QUARTER);
    }

    /**
     * @dev sets distributionStartTime as the timestamp on which funds starts a progresive release
     *
     * Requirements:
     *
     * - distributionStartTime must be equal to 0
     * - distributionStartTime must be a unix timestamp format, grater than current timestamp
     */
    function setStartTime(uint256 startTime) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SmtVesting: only DEFAULT_ADMIN_ROLE");
        require((distributionStartTime == 0), "SmtVesting: distributionStartTime can be set just one time");
        require(startTime > block.timestamp, "SmtVesting: start time must be a future timestamp");

        distributionStartTime = startTime;
        emit StartTimeSet(startTime);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_acceptedToken","type":"address"}],"name":"AcceptedTokenSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"StartTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"whitelisted","type":"address"}],"name":"WhitelistedAddress","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"KYA","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptedToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhitelistedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimMaximunAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentQuarterSinceStartTime","outputs":[{"internalType":"uint256","name":"currentQuarter","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distributionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"awarded","type":"address"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentLockedAmount","outputs":[{"internalType":"uint256","name":"balanceOfAcceptedToken","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"setAcceptedToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_knowYourAsset","type":"string"}],"name":"setKYA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200458038038062004580833981810160405260408110156200003757600080fd5b81019080805160405193929190846401000000008211156200005857600080fd5b838201915060208201858111156200006f57600080fd5b82518660018202830111640100000000821117156200008d57600080fd5b8083526020830192505050908051906020019080838360005b83811015620000c3578082015181840152602081019050620000a6565b50505050905090810190601f168015620000f15780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011557600080fd5b838201915060208201858111156200012c57600080fd5b82518660018202830111640100000000821117156200014a57600080fd5b8083526020830192505050908051906020019080838360005b838110156200018057808201518184015260208101905062000163565b50505050905090810190601f168015620001ae5780820380516001836020036101000a031916815260200191505b50604052505050818181818160049080519060200190620001d192919062000472565b508060059080519060200190620001ea92919062000472565b506012600660006101000a81548160ff021916908360ff16021790555050506000600660016101000a81548160ff021916908315150217905550620002486000801b6200023c620002dc60201b60201c565b620002e460201b60201c565b620002897f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200027d620002dc60201b60201c565b620002e460201b60201c565b620002ca7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620002be620002dc60201b60201c565b620002e460201b60201c565b50506000600781905550505062000528565b600033905090565b620002f68282620002fa60201b60201c565b5050565b62000328816000808581526020019081526020016000206000016200039d60201b620027e31790919060201c565b1562000399576200033e620002dc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620003cd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620003d560201b60201c565b905092915050565b6000620003e983836200044f60201b60201c565b6200044457826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000449565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004aa5760008555620004f6565b82601f10620004c557805160ff1916838001178555620004f6565b82800160010185558215620004f6579182015b82811115620004f5578251825591602001919060010190620004d8565b5b50905062000505919062000509565b5090565b5b80821115620005245760008160009055506001016200050a565b5090565b61404880620005386000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a0823111610146578063a217fddf116100c3578063ca15c87311610087578063ca15c87314610c2c578063d539139314610c6e578063d547741f14610c8c578063dd62ed3e14610cda578063e12f3a6114610d52578063e63ab1e914610daa5761025e565b8063a217fddf14610ac0578063a457c2d714610ade578063a9059cbb14610b42578063b6b55f2514610ba6578063c281c4c714610bd45761025e565b80638da859b01161010a5780638da859b0146108ff5780639010d07c1461091d57806391d148541461097f57806395d89b41146109e35780639b19251a14610a665761025e565b806370a08231146107885780637487f528146107e057806379cc6790146108245780638109a271146108725780638456cb59146108f55761025e565b8063313ce567116101df5780633f4ba83a116101a35780633f4ba83a1461063557806340c10f191461063f57806342966c681461068d578063451c3d80146106bb57806356204f8c146106ef5780635c975abb146107685761025e565b8063313ce5671461050657806336568abe14610527578063379607f51461057557806339509351146105a35780633e0a322d146106075761025e565b8063248a9ca311610226578063248a9ca3146103f6578063257476df1461043857806329975b43146104565780632cd4312c1461049a5780632f2ff15d146104b85761025e565b806306fdde0314610263578063095ea7b3146102e657806314acbd1c1461034a57806318160ddd1461035457806323b872dd14610372575b600080fd5b61026b610dc8565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e6a565b60405180821515815260200191505060405180910390f35b610352610e88565b005b61035c610f1f565b6040518082815260200191505060405180910390f35b6103de6004803603606081101561038857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f29565b60405180821515815260200191505060405180910390f35b6104226004803603602081101561040c57600080fd5b8101908080359060200190929190505050611002565b6040518082815260200191505060405180910390f35b610440611021565b6040518082815260200191505060405180910390f35b6104986004803603602081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ec565b005b6104a26112a0565b6040518082815260200191505060405180910390f35b610504600480360360408110156104ce57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611386565b005b61050e61140f565b604051808260ff16815260200191505060405180910390f35b6105736004803603604081101561053d57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611426565b005b6105a16004803603602081101561058b57600080fd5b81019080803590602001909291905050506114bf565b005b6105ef600480360360408110156105b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611788565b60405180821515815260200191505060405180910390f35b6106336004803603602081101561061d57600080fd5b810190808035906020019092919050505061183b565b005b61063d611998565b005b61068b6004803603604081101561065557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a28565b005b6106b9600480360360208110156106a357600080fd5b8101908080359060200190929190505050611a79565b005b6106c3611aca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107666004803603602081101561070557600080fd5b810190808035906020019064010000000081111561072257600080fd5b82018360208201111561073457600080fd5b8035906020019184600183028401116401000000008311171561075657600080fd5b9091929391929390505050611af0565b005b610770611b6f565b60405180821515815260200191505060405180910390f35b6107ca6004803603602081101561079e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b86565b6040518082815260200191505060405180910390f35b610822600480360360208110156107f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcf565b005b6108706004803603604081101561083a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e30565b005b61087a611e81565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108ba57808201518184015260208101905061089f565b50505050905090810190601f1680156108e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108fd611f1f565b005b610907611faf565b6040518082815260200191505060405180910390f35b6109536004803603604081101561093357600080fd5b810190808035906020019092919080359060200190929190505050611fb5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109cb6004803603604081101561099557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe6565b60405180821515815260200191505060405180910390f35b6109eb612017565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a2b578082015181840152602081019050610a10565b50505050905090810190601f168015610a585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610aa860048036036020811015610a7c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120b9565b60405180821515815260200191505060405180910390f35b610ac86120d9565b6040518082815260200191505060405180910390f35b610b2a60048036036040811015610af457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120e0565b60405180821515815260200191505060405180910390f35b610b8e60048036036040811015610b5857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121ad565b60405180821515815260200191505060405180910390f35b610bd260048036036020811015610bbc57600080fd5b81019080803590602001909291905050506121cb565b005b610c1660048036036020811015610bea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061233c565b6040518082815260200191505060405180910390f35b610c5860048036036020811015610c4257600080fd5b8101908080359060200190929190505050612354565b6040518082815260200191505060405180910390f35b610c7661237a565b6040518082815260200191505060405180910390f35b610cd860048036036040811015610ca257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061239e565b005b610d3c60048036036040811015610cf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612427565b6040518082815260200191505060405180910390f35b610d9460048036036020811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ae565b6040518082815260200191505060405180910390f35b610db26127bf565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b5050505050905090565b6000610e7e610e77612813565b848461281b565b6001905092915050565b6000610e9a610e95612813565b6124ae565b90506000811415610f13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f536d7456657374696e673a206e6f7468696e6720746f20636c61696d0000000081525060200191505060405180910390fd5b610f1c816114bf565b50565b6000600354905090565b6000610f36848484612a12565b610ff784610f42612813565b610ff285604051806060016040528060288152602001613e3360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa8612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b61281b565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110ac57600080fd5b505afa1580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b8101908080519060200190929190505050905090565b6111006000801b6110fb612813565b611fe6565b611155576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536d7456657374696e673a207a65726f2061646472657373206572726f72000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9659de77bedae44137acf94b0b2a83c1a7e51fec986c5d6098bbde7e4f0d02e881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60008060075414156112fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ea46029913960400191505060405180910390fd5b4260075410611357576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613f166025913960400191505060405180910390fd5b6113816278615661137360075442612d9190919063ffffffff16565b612e1490919063ffffffff16565b905090565b6113ac600080848152602001908152602001600020600201546113a7612813565b611fe6565b611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613bfe602f913960400191505060405180910390fd5b61140b8282612e9d565b5050565b6000600660009054906101000a900460ff16905090565b61142e612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613fba602f913960400191505060405180910390fd5b6114bb8282612f30565b5050565b6000600754141561151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ea46029913960400191505060405180910390fd5b600061152d611528612813565b6124ae565b9050818110156115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536d7456657374696e673a20616d6f756e7420746f6f2062696700000000000081525060200191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6115eb612813565b846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561163f57600080fd5b505af1158015611653573d6000803e3d6000fd5b505050506040513d602081101561166957600080fd5b81019080805190602001909291905050505061168c611686612813565b83612fc3565b6116e582600a600061169c612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600a60006116f1612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611737612813565b73ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4836040518082815260200191505060405180910390a25050565b6000611831611795612813565b8461182c85600260006117a6612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b61281b565b6001905092915050565b61184f6000801b61184a612813565b611fe6565b6118a4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b6000600754146118ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613d44603a913960400191505060405180910390fd5b428111611957576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613bcd6031913960400191505060405180910390fd5b806007819055507faad53c4362ef2fe5a5390cc046e71fd8423a0a8dceebc156ac9bbcd15997eec2816040518082815260200191505060405180910390a150565b6119c97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6119c4612813565b611fe6565b611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180613c776039913960400191505060405180910390fd5b611a26613211565b565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613cd2603a913960400191505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613d0c6038913960400191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b046000801b611aff612813565b611fe6565b611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b818160089190611b6a929190613adc565b505050565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be36000801b611bde612813565b611fe6565b611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536d7456657374696e673a207a65726f2061646472657373206572726f72000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f536d7456657374696e673a20746f6b656e20697320616c72656164792073657481525060200191505060405180910390fd5b80600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff7c0fe7a51d0794a3e28012d55fbba215e22cb4fe85bc05c9c47715ac796043881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613d0c6038913960400191505060405180910390fd5b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f175780601f10611eec57610100808354040283529160200191611f17565b820191906000526020600020905b815481529060010190602001808311611efa57829003601f168201915b505050505081565b611f507f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611f4b612813565b611fe6565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180613f5e6037913960400191505060405180910390fd5b611fad6132fc565b565b60075481565b6000611fde826000808681526020019081526020016000206000016133e890919063ffffffff16565b905092915050565b600061200f8260008086815260200190815260200160002060000161340290919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120af5780601f10612084576101008083540402835291602001916120af565b820191906000526020600020905b81548152906001019060200180831161209257829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b60006121a36120ed612813565b8461219e85604051806060016040528060258152602001613f956025913960026000612117612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b61281b565b6001905092915050565b60006121c16121ba612813565b8484612a12565b6001905092915050565b6121df6000801b6121da612813565b611fe6565b612234576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61227a612813565b30846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156122ec57600080fd5b505af1158015612300573d6000803e3d6000fd5b505050506040513d602081101561231657600080fd5b810190808051906020019092919050505050612339612333612813565b82613432565b50565b600a6020528060005260406000206000915090505481565b60006123736000808481526020019081526020016000206000016135fb565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6123c4600080848152602001908152602001600020600201546123bf612813565b611fe6565b612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613de26030913960400191505060405180910390fd5b6124238282612f30565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600754141561250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613e5b6028913960400191505060405180910390fd5b60006125156112a0565b90506000612573600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256586611b86565b61318990919063ffffffff16565b905060008214156125ff576125f6600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e8600a6125da60028661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600182141561268957612680600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612672600a61266460048661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b60028214156127135761270a600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fc600a6126ee60068661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600382141561279d57612794600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612786600a61277860088661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600482106127b7576127ae84611b86565b925050506127ba565b50505b919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600061280b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613696565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613ef26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612927576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613cb06022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613ecd6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613baa6023913960400191505060405180910390fd5b612b29838383613706565b612b9581604051806060016040528060268152602001613d7e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612d84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d49578082015181840152602081019050612d2e565b50505050905090810190601f168015612d765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600082821115612e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808211612e8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612e9457fe5b04905092915050565b612ec4816000808581526020019081526020016000206000016127e390919063ffffffff16565b15612f2c57612ed1612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612f578160008085815260200190815260200160002060000161388a90919063ffffffff16565b15612fbf57612f64612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e836021913960400191505060405180910390fd5b61305582600083613706565b6130c181604051806060016040528060228152602001613c2d60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061311981600354612d9190919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015613207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b613219611b6f565b61328b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6132cf612813565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613304611b6f565b15613377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586133bb612813565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006133f783600001836138ba565b60001c905092915050565b600061342a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61393d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6134e160008383613706565b6134f68160035461318990919063ffffffff16565b60038190555061354e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061360982600001613960565b9050919050565b6000808314156136235760009050613690565b600082840290508284828161363457fe5b041461368b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e126021913960400191505060405180910390fd5b809150505b92915050565b60006136a2838361393d565b6136fb578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613700565b600090505b92915050565b613711838383613971565b613719611b6f565b1561376f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4f6028913960400191505060405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137f55750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061382c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b905080613884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613da4603e913960400191505060405180910390fd5b50505050565b60006138b2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613981565b905092915050565b60008183600001805490501161391b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613b886022913960400191505060405180910390fd5b82600001828154811061392a57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b61397c838383613a69565b505050565b60008083600101600084815260200190815260200160002054905060008114613a5d57600060018203905060006001866000018054905003905060008660000182815481106139cc57fe5b90600052602060002001549050808760000184815481106139e957fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613a2157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613a63565b60009150505b92915050565b613a74838383613ad7565b613a7c611b6f565b15613ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613fe9602a913960400191505060405180910390fd5b505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613b125760008555613b59565b82601f10613b2b57803560ff1916838001178555613b59565b82800160010185558215613b59579182015b82811115613b58578235825591602001919060010190613b3d565b5b509050613b669190613b6a565b5090565b5b80821115613b83576000816000905550600101613b6b565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373536d7456657374696e673a2073746172742074696d65206d7573742062652061206675747572652074696d657374616d70416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e6365536d7456657374696e673a3a20746f6b656e207472616e73666572207768696c652070617573656445524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f2061646472657373536d7456657374696e673a206d696e74696e67206973206f6e6c7920616c6c6f776564207573696e67206465706f7369742066756e6374696f6e536d7456657374696e673a206275726e696e67206973206f6e6c7920616c6c6f776564207573696e6720636c61696d2066756e6374696f6e536d7456657374696e673a20646973747269627574696f6e537461727454696d652063616e20626520736574206a757374206f6e652074696d6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536d7456657374696e673a20747261736e666572206973206a75737420616c6c6f77656420666f722077686974656c697374656420616464726573736573416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536d7456657374696e673a20646973747269627574696f6e5361727454696d65206e6f742073657445524332303a206275726e2066726f6d20746865207a65726f2061646472657373536d7456657374696e673a20646973747269627574696f6e537461727454696d65206e6f742073657445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373536d7456657374696e673a2076657374696e6720646964206e6f7420737461727420796574536d7456657374696e673a206f6e6c792044454641554c545f41444d494e5f524f4c4545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220350ec15377facbb85a5bbb3f14ddbc36cf146e8a789cadf4724a4ce95d204b7364736f6c6343000706003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001e56657374696e6720537761726d204d61726b65747320546f6b656e2076320000000000000000000000000000000000000000000000000000000000000000000576534d5432000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061025e5760003560e01c806370a0823111610146578063a217fddf116100c3578063ca15c87311610087578063ca15c87314610c2c578063d539139314610c6e578063d547741f14610c8c578063dd62ed3e14610cda578063e12f3a6114610d52578063e63ab1e914610daa5761025e565b8063a217fddf14610ac0578063a457c2d714610ade578063a9059cbb14610b42578063b6b55f2514610ba6578063c281c4c714610bd45761025e565b80638da859b01161010a5780638da859b0146108ff5780639010d07c1461091d57806391d148541461097f57806395d89b41146109e35780639b19251a14610a665761025e565b806370a08231146107885780637487f528146107e057806379cc6790146108245780638109a271146108725780638456cb59146108f55761025e565b8063313ce567116101df5780633f4ba83a116101a35780633f4ba83a1461063557806340c10f191461063f57806342966c681461068d578063451c3d80146106bb57806356204f8c146106ef5780635c975abb146107685761025e565b8063313ce5671461050657806336568abe14610527578063379607f51461057557806339509351146105a35780633e0a322d146106075761025e565b8063248a9ca311610226578063248a9ca3146103f6578063257476df1461043857806329975b43146104565780632cd4312c1461049a5780632f2ff15d146104b85761025e565b806306fdde0314610263578063095ea7b3146102e657806314acbd1c1461034a57806318160ddd1461035457806323b872dd14610372575b600080fd5b61026b610dc8565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156102ab578082015181840152602081019050610290565b50505050905090810190601f1680156102d85780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610332600480360360408110156102fc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e6a565b60405180821515815260200191505060405180910390f35b610352610e88565b005b61035c610f1f565b6040518082815260200191505060405180910390f35b6103de6004803603606081101561038857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f29565b60405180821515815260200191505060405180910390f35b6104226004803603602081101561040c57600080fd5b8101908080359060200190929190505050611002565b6040518082815260200191505060405180910390f35b610440611021565b6040518082815260200191505060405180910390f35b6104986004803603602081101561046c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110ec565b005b6104a26112a0565b6040518082815260200191505060405180910390f35b610504600480360360408110156104ce57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611386565b005b61050e61140f565b604051808260ff16815260200191505060405180910390f35b6105736004803603604081101561053d57600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611426565b005b6105a16004803603602081101561058b57600080fd5b81019080803590602001909291905050506114bf565b005b6105ef600480360360408110156105b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611788565b60405180821515815260200191505060405180910390f35b6106336004803603602081101561061d57600080fd5b810190808035906020019092919050505061183b565b005b61063d611998565b005b61068b6004803603604081101561065557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a28565b005b6106b9600480360360208110156106a357600080fd5b8101908080359060200190929190505050611a79565b005b6106c3611aca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107666004803603602081101561070557600080fd5b810190808035906020019064010000000081111561072257600080fd5b82018360208201111561073457600080fd5b8035906020019184600183028401116401000000008311171561075657600080fd5b9091929391929390505050611af0565b005b610770611b6f565b60405180821515815260200191505060405180910390f35b6107ca6004803603602081101561079e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b86565b6040518082815260200191505060405180910390f35b610822600480360360208110156107f657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611bcf565b005b6108706004803603604081101561083a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611e30565b005b61087a611e81565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108ba57808201518184015260208101905061089f565b50505050905090810190601f1680156108e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108fd611f1f565b005b610907611faf565b6040518082815260200191505060405180910390f35b6109536004803603604081101561093357600080fd5b810190808035906020019092919080359060200190929190505050611fb5565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6109cb6004803603604081101561099557600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fe6565b60405180821515815260200191505060405180910390f35b6109eb612017565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a2b578082015181840152602081019050610a10565b50505050905090810190601f168015610a585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610aa860048036036020811015610a7c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120b9565b60405180821515815260200191505060405180910390f35b610ac86120d9565b6040518082815260200191505060405180910390f35b610b2a60048036036040811015610af457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506120e0565b60405180821515815260200191505060405180910390f35b610b8e60048036036040811015610b5857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506121ad565b60405180821515815260200191505060405180910390f35b610bd260048036036020811015610bbc57600080fd5b81019080803590602001909291905050506121cb565b005b610c1660048036036020811015610bea57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061233c565b6040518082815260200191505060405180910390f35b610c5860048036036020811015610c4257600080fd5b8101908080359060200190929190505050612354565b6040518082815260200191505060405180910390f35b610c7661237a565b6040518082815260200191505060405180910390f35b610cd860048036036040811015610ca257600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061239e565b005b610d3c60048036036040811015610cf057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612427565b6040518082815260200191505060405180910390f35b610d9460048036036020811015610d6857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124ae565b6040518082815260200191505060405180910390f35b610db26127bf565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e605780601f10610e3557610100808354040283529160200191610e60565b820191906000526020600020905b815481529060010190602001808311610e4357829003601f168201915b5050505050905090565b6000610e7e610e77612813565b848461281b565b6001905092915050565b6000610e9a610e95612813565b6124ae565b90506000811415610f13576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f536d7456657374696e673a206e6f7468696e6720746f20636c61696d0000000081525060200191505060405180910390fd5b610f1c816114bf565b50565b6000600354905090565b6000610f36848484612a12565b610ff784610f42612813565b610ff285604051806060016040528060288152602001613e3360289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fa8612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b61281b565b600190509392505050565b6000806000838152602001908152602001600020600201549050919050565b6000600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110ac57600080fd5b505afa1580156110c0573d6000803e3d6000fd5b505050506040513d60208110156110d657600080fd5b8101908080519060200190929190505050905090565b6111006000801b6110fb612813565b611fe6565b611155576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536d7456657374696e673a207a65726f2061646472657373206572726f72000081525060200191505060405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9659de77bedae44137acf94b0b2a83c1a7e51fec986c5d6098bbde7e4f0d02e881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b60008060075414156112fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ea46029913960400191505060405180910390fd5b4260075410611357576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613f166025913960400191505060405180910390fd5b6113816278615661137360075442612d9190919063ffffffff16565b612e1490919063ffffffff16565b905090565b6113ac600080848152602001908152602001600020600201546113a7612813565b611fe6565b611401576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613bfe602f913960400191505060405180910390fd5b61140b8282612e9d565b5050565b6000600660009054906101000a900460ff16905090565b61142e612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f815260200180613fba602f913960400191505060405180910390fd5b6114bb8282612f30565b5050565b6000600754141561151b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180613ea46029913960400191505060405180910390fd5b600061152d611528612813565b6124ae565b9050818110156115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536d7456657374696e673a20616d6f756e7420746f6f2062696700000000000081525060200191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6115eb612813565b846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561163f57600080fd5b505af1158015611653573d6000803e3d6000fd5b505050506040513d602081101561166957600080fd5b81019080805190602001909291905050505061168c611686612813565b83612fc3565b6116e582600a600061169c612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600a60006116f1612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611737612813565b73ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d4836040518082815260200191505060405180910390a25050565b6000611831611795612813565b8461182c85600260006117a6612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b61281b565b6001905092915050565b61184f6000801b61184a612813565b611fe6565b6118a4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b6000600754146118ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613d44603a913960400191505060405180910390fd5b428111611957576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180613bcd6031913960400191505060405180910390fd5b806007819055507faad53c4362ef2fe5a5390cc046e71fd8423a0a8dceebc156ac9bbcd15997eec2816040518082815260200191505060405180910390a150565b6119c97f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6119c4612813565b611fe6565b611a1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526039815260200180613c776039913960400191505060405180910390fd5b611a26613211565b565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a815260200180613cd2603a913960400191505060405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613d0c6038913960400191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611b046000801b611aff612813565b611fe6565b611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b818160089190611b6a929190613adc565b505050565b6000600660019054906101000a900460ff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611be36000801b611bde612813565b611fe6565b611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611cdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536d7456657374696e673a207a65726f2061646472657373206572726f72000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d9f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f536d7456657374696e673a20746f6b656e20697320616c72656164792073657481525060200191505060405180910390fd5b80600660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ff7c0fe7a51d0794a3e28012d55fbba215e22cb4fe85bc05c9c47715ac796043881604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180613d0c6038913960400191505060405180910390fd5b60088054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f175780601f10611eec57610100808354040283529160200191611f17565b820191906000526020600020905b815481529060010190602001808311611efa57829003601f168201915b505050505081565b611f507f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a611f4b612813565b611fe6565b611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526037815260200180613f5e6037913960400191505060405180910390fd5b611fad6132fc565b565b60075481565b6000611fde826000808681526020019081526020016000206000016133e890919063ffffffff16565b905092915050565b600061200f8260008086815260200190815260200160002060000161340290919063ffffffff16565b905092915050565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120af5780601f10612084576101008083540402835291602001916120af565b820191906000526020600020905b81548152906001019060200180831161209257829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000801b81565b60006121a36120ed612813565b8461219e85604051806060016040528060258152602001613f956025913960026000612117612813565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b61281b565b6001905092915050565b60006121c16121ba612813565b8484612a12565b6001905092915050565b6121df6000801b6121da612813565b611fe6565b612234576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613f3b6023913960400191505060405180910390fd5b600660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd61227a612813565b30846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b1580156122ec57600080fd5b505af1158015612300573d6000803e3d6000fd5b505050506040513d602081101561231657600080fd5b810190808051906020019092919050505050612339612333612813565b82613432565b50565b600a6020528060005260406000206000915090505481565b60006123736000808481526020019081526020016000206000016135fb565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6123c4600080848152602001908152602001600020600201546123bf612813565b611fe6565b612419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180613de26030913960400191505060405180910390fd5b6124238282612f30565b5050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600080600754141561250b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613e5b6028913960400191505060405180910390fd5b60006125156112a0565b90506000612573600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461256586611b86565b61318990919063ffffffff16565b905060008214156125ff576125f6600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546125e8600a6125da60028661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600182141561268957612680600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612672600a61266460048661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b60028214156127135761270a600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126fc600a6126ee60068661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600382141561279d57612794600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612786600a61277860088661361090919063ffffffff16565b612e1490919063ffffffff16565b612d9190919063ffffffff16565b925050506127ba565b600482106127b7576127ae84611b86565b925050506127ba565b50505b919050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b600061280b836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613696565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613ef26024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612927576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613cb06022913960400191505060405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613ecd6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180613baa6023913960400191505060405180910390fd5b612b29838383613706565b612b9581604051806060016040528060268152602001613d7e60269139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c2a81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000838311158290612d84576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d49578082015181840152602081019050612d2e565b50505050905090810190601f168015612d765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600082821115612e09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b818303905092915050565b6000808211612e8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060200191505060405180910390fd5b818381612e9457fe5b04905092915050565b612ec4816000808581526020019081526020016000206000016127e390919063ffffffff16565b15612f2c57612ed1612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612f578160008085815260200190815260200160002060000161388a90919063ffffffff16565b15612fbf57612f64612813565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613049576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e836021913960400191505060405180910390fd5b61305582600083613706565b6130c181604051806060016040528060228152602001613c2d60229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612cd79092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061311981600354612d9190919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015613207576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b613219611b6f565b61328b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600660016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6132cf612813565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b613304611b6f565b15613377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600660016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586133bb612813565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006133f783600001836138ba565b60001c905092915050565b600061342a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61393d565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6134e160008383613706565b6134f68160035461318990919063ffffffff16565b60038190555061354e81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461318990919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061360982600001613960565b9050919050565b6000808314156136235760009050613690565b600082840290508284828161363457fe5b041461368b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613e126021913960400191505060405180910390fd5b809150505b92915050565b60006136a2838361393d565b6136fb578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050613700565b600090505b92915050565b613711838383613971565b613719611b6f565b1561376f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526028815260200180613c4f6028913960400191505060405180910390fd5b6000600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806137f55750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b8061382c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b905080613884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603e815260200180613da4603e913960400191505060405180910390fd5b50505050565b60006138b2836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613981565b905092915050565b60008183600001805490501161391b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613b886022913960400191505060405180910390fd5b82600001828154811061392a57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b61397c838383613a69565b505050565b60008083600101600084815260200190815260200160002054905060008114613a5d57600060018203905060006001866000018054905003905060008660000182815481106139cc57fe5b90600052602060002001549050808760000184815481106139e957fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480613a2157fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613a63565b60009150505b92915050565b613a74838383613ad7565b613a7c611b6f565b15613ad2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613fe9602a913960400191505060405180910390fd5b505050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613b125760008555613b59565b82601f10613b2b57803560ff1916838001178555613b59565b82800160010185558215613b59579182015b82811115613b58578235825591602001919060010190613b3d565b5b509050613b669190613b6a565b5090565b5b80821115613b83576000816000905550600101613b6b565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373536d7456657374696e673a2073746172742074696d65206d7573742062652061206675747572652074696d657374616d70416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e6365536d7456657374696e673a3a20746f6b656e207472616e73666572207768696c652070617573656445524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20756e706175736545524332303a20617070726f766520746f20746865207a65726f2061646472657373536d7456657374696e673a206d696e74696e67206973206f6e6c7920616c6c6f776564207573696e67206465706f7369742066756e6374696f6e536d7456657374696e673a206275726e696e67206973206f6e6c7920616c6c6f776564207573696e6720636c61696d2066756e6374696f6e536d7456657374696e673a20646973747269627574696f6e537461727454696d652063616e20626520736574206a757374206f6e652074696d6545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536d7456657374696e673a20747261736e666572206973206a75737420616c6c6f77656420666f722077686974656c697374656420616464726573736573416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365536d7456657374696e673a20646973747269627574696f6e5361727454696d65206e6f742073657445524332303a206275726e2066726f6d20746865207a65726f2061646472657373536d7456657374696e673a20646973747269627574696f6e537461727454696d65206e6f742073657445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373536d7456657374696e673a2076657374696e6720646964206e6f7420737461727420796574536d7456657374696e673a206f6e6c792044454641554c545f41444d494e5f524f4c4545524332305072657365744d696e7465725061757365723a206d75737420686176652070617573657220726f6c6520746f20706175736545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c6645524332305061757361626c653a20746f6b656e207472616e73666572207768696c6520706175736564a2646970667358221220350ec15377facbb85a5bbb3f14ddbc36cf146e8a789cadf4724a4ce95d204b7364736f6c63430007060033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001e56657374696e6720537761726d204d61726b65747320546f6b656e2076320000000000000000000000000000000000000000000000000000000000000000000576534d5432000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Vesting Swarm Markets Token v2
Arg [1] : symbol_ (string): vSMT2

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [3] : 56657374696e6720537761726d204d61726b65747320546f6b656e2076320000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 76534d5432000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54832:8899:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40942:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43088:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;61008:194;;;:::i;:::-;;42041:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43739:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25307:114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57805:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;58553:327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;62595:370;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25683:227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41885:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26892:209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;59204:491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;44469:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;63275:453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54226:178;;;:::i;:::-;;59773:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60001:136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54973:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;58103:196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;2062:86;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42212:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56681:408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;60145:157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55127:17;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53836:172;;;:::i;:::-;;55052:36;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24980:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;23941:139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41152:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55504:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;22686:49;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45190:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;42552:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;57348:265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55601:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24254:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52659:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26155:230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42790:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;61574:921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52728:62;;;:::i;:::-;;;;;;;;;;;;;;;;;;;40942:91;40987:13;41020:5;41013:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40942:91;:::o;43088:169::-;43171:4;43188:39;43197:12;:10;:12::i;:::-;43211:7;43220:6;43188:8;:39::i;:::-;43245:4;43238:11;;43088:169;;;;:::o;61008:194::-;61058:14;61075:32;61094:12;:10;:12::i;:::-;61075:18;:32::i;:::-;61058:49;;61136:1;61126:6;:11;;61118:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61181:13;61187:6;61181:5;:13::i;:::-;61008:194;:::o;42041:108::-;42102:7;42129:12;;42122:19;;42041:108;:::o;43739:321::-;43845:4;43862:36;43872:6;43880:9;43891:6;43862:9;:36::i;:::-;43909:121;43918:6;43926:12;:10;:12::i;:::-;43940:89;43978:6;43940:89;;;;;;;;;;;;;;;;;:11;:19;43952:6;43940:19;;;;;;;;;;;;;;;:33;43960:12;:10;:12::i;:::-;43940:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;43909:8;:121::i;:::-;44048:4;44041:11;;43739:321;;;;;:::o;25307:114::-;25364:7;25391:6;:12;25398:4;25391:12;;;;;;;;;;;:22;;;25384:29;;25307:114;;;:::o;57805:153::-;57862:30;57912:13;;;;;;;;;;;:23;;;57944:4;57912:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57905:45;;57805:153;:::o;58553:327::-;58630:41;22731:4;58638:18;;58658:12;:10;:12::i;:::-;58630:7;:41::i;:::-;58622:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58750:1;58730:22;;:8;:22;;;;58722:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58822:4;58800:9;:19;58810:8;58800:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;58844:28;58863:8;58844:28;;;;;;;;;;;;;;;;;;;;58553:327;:::o;62595:370::-;62656:22;62724:1;62699:21;;:26;;62691:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62814:15;62790:21;;:39;62782:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62889:68;55228:7;62890:42;62910:21;;62890:15;:19;;:42;;;;:::i;:::-;62889:48;;:68;;;;:::i;:::-;62882:75;;62595:370;:::o;25683:227::-;25767:45;25775:6;:12;25782:4;25775:12;;;;;;;;;;;:22;;;25799:12;:10;:12::i;:::-;25767:7;:45::i;:::-;25759:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25877:25;25888:4;25894:7;25877:10;:25::i;:::-;25683:227;;:::o;41885:91::-;41934:5;41959:9;;;;;;;;;;;41952:16;;41885:91;:::o;26892:209::-;26990:12;:10;:12::i;:::-;26979:23;;:7;:23;;;26971:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27067:26;27079:4;27085:7;27067:11;:26::i;:::-;26892:209;;:::o;59204:491::-;59286:1;59261:21;;:26;;59253:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59344:23;59370:32;59389:12;:10;:12::i;:::-;59370:18;:32::i;:::-;59344:58;;59440:6;59421:15;:25;;59413:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59488:13;;;;;;;;;;;:22;;;59511:12;:10;:12::i;:::-;59525:6;59488:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59543:27;59549:12;:10;:12::i;:::-;59563:6;59543:5;:27::i;:::-;59609:35;59637:6;59609:9;:23;59619:12;:10;:12::i;:::-;59609:23;;;;;;;;;;;;;;;;:27;;:35;;;;:::i;:::-;59583:9;:23;59593:12;:10;:12::i;:::-;59583:23;;;;;;;;;;;;;;;:61;;;;59666:12;:10;:12::i;:::-;59660:27;;;59680:6;59660:27;;;;;;;;;;;;;;;;;;59204:491;;:::o;44469:218::-;44557:4;44574:83;44583:12;:10;:12::i;:::-;44597:7;44606:50;44645:10;44606:11;:25;44618:12;:10;:12::i;:::-;44606:25;;;;;;;;;;;;;;;:34;44632:7;44606:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;44574:8;:83::i;:::-;44675:4;44668:11;;44469:218;;;;:::o;63275:453::-;63344:41;22731:4;63352:18;;63372:12;:10;:12::i;:::-;63344:7;:41::i;:::-;63336:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63470:1;63445:21;;:26;63436:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63566:15;63554:9;:27;63546:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63672:9;63648:21;:33;;;;63697:23;63710:9;63697:23;;;;;;;;;;;;;;;;;;63275:453;:::o;54226:178::-;54279:34;52766:24;54300:12;:10;:12::i;:::-;54279:7;:34::i;:::-;54271:104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54386:10;:8;:10::i;:::-;54226:178::o;59773:150::-;59847:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60001:136;60063:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54973:27;;;;;;;;;;;;;:::o;58103:196::-;58179:41;22731:4;58187:18;;58207:12;:10;:12::i;:::-;58179:7;:41::i;:::-;58171:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58277:14;;58271:3;:20;;;;;;;:::i;:::-;;58103:196;;:::o;2062:86::-;2109:4;2133:7;;;;;;;;;;;2126:14;;2062:86;:::o;42212:127::-;42286:7;42313:9;:18;42323:7;42313:18;;;;;;;;;;;;;;;;42306:25;;42212:127;;;:::o;56681:408::-;56751:41;22731:4;56759:18;;56779:12;:10;:12::i;:::-;56751:7;:41::i;:::-;56743:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56869:1;56851:20;;:6;:20;;;;56843:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56959:1;56925:36;;56933:13;;;;;;;;;;;56925:36;;;56917:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57034:6;57011:13;;:30;;;;;;;;;;;;;;;;;;57057:24;57074:6;57057:24;;;;;;;;;;;;;;;;;;;;56681:408;:::o;60145:157::-;60228:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55127:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53836:172::-;53887:34;52766:24;53908:12;:10;:12::i;:::-;53887:7;:34::i;:::-;53879:102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53992:8;:6;:8::i;:::-;53836:172::o;55052:36::-;;;;:::o;24980:138::-;25053:7;25080:30;25104:5;25080:6;:12;25087:4;25080:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;25073:37;;24980:138;;;;:::o;23941:139::-;24010:4;24034:38;24064:7;24034:6;:12;24041:4;24034:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;24027:45;;23941:139;;;;:::o;41152:95::-;41199:13;41232:7;41225:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41152:95;:::o;55504:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;22686:49::-;22731:4;22686:49;;;:::o;45190:269::-;45283:4;45300:129;45309:12;:10;:12::i;:::-;45323:7;45332:96;45371:15;45332:96;;;;;;;;;;;;;;;;;:11;:25;45344:12;:10;:12::i;:::-;45332:25;;;;;;;;;;;;;;;:34;45358:7;45332:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;45300:8;:129::i;:::-;45447:4;45440:11;;45190:269;;;;:::o;42552:175::-;42638:4;42655:42;42665:12;:10;:12::i;:::-;42679:9;42690:6;42655:9;:42::i;:::-;42715:4;42708:11;;42552:175;;;;:::o;57348:265::-;57410:41;22731:4;57418:18;;57438:12;:10;:12::i;:::-;57410:7;:41::i;:::-;57402:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57502:13;;;;;;;;;;;:26;;;57529:12;:10;:12::i;:::-;57551:4;57558:7;57502:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57577:28;57583:12;:10;:12::i;:::-;57597:7;57577:5;:28::i;:::-;57348:265;:::o;55601:44::-;;;;;;;;;;;;;;;;;:::o;24254:127::-;24317:7;24344:29;:6;:12;24351:4;24344:12;;;;;;;;;;;:20;;:27;:29::i;:::-;24337:36;;24254:127;;;:::o;52659:62::-;52697:24;52659:62;:::o;26155:230::-;26240:45;26248:6;:12;26255:4;26248:12;;;;;;;;;;;:22;;;26272:12;:10;:12::i;:::-;26240:7;:45::i;:::-;26232:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26351:26;26363:4;26369:7;26351:11;:26::i;:::-;26155:230;;:::o;42790:151::-;42879:7;42906:11;:18;42918:5;42906:18;;;;;;;;;;;;;;;:27;42925:7;42906:27;;;;;;;;;;;;;;;;42899:34;;42790:151;;;;:::o;61574:921::-;61640:14;61700:1;61675:21;;:26;;61667:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61759:22;61784:30;:28;:30::i;:::-;61759:55;;61825:24;61852:42;61875:9;:18;61885:7;61875:18;;;;;;;;;;;;;;;;61852;61862:7;61852:9;:18::i;:::-;:22;;:42;;;;:::i;:::-;61825:69;;61929:1;61911:14;:19;61907:116;;;61954:57;61992:9;:18;62002:7;61992:18;;;;;;;;;;;;;;;;61955:31;61983:2;61955:23;61976:1;61955:16;:20;;:23;;;;:::i;:::-;:27;;:31;;;;:::i;:::-;61954:37;;:57;;;;:::i;:::-;61947:64;;;;;;61907:116;62055:1;62037:14;:19;62033:116;;;62080:57;62118:9;:18;62128:7;62118:18;;;;;;;;;;;;;;;;62081:31;62109:2;62081:23;62102:1;62081:16;:20;;:23;;;;:::i;:::-;:27;;:31;;;;:::i;:::-;62080:37;;:57;;;;:::i;:::-;62073:64;;;;;;62033:116;62181:1;62163:14;:19;62159:116;;;62206:57;62244:9;:18;62254:7;62244:18;;;;;;;;;;;;;;;;62207:31;62235:2;62207:23;62228:1;62207:16;:20;;:23;;;;:::i;:::-;:27;;:31;;;;:::i;:::-;62206:37;;:57;;;;:::i;:::-;62199:64;;;;;;62159:116;62307:1;62289:14;:19;62285:116;;;62332:57;62370:9;:18;62380:7;62370:18;;;;;;;;;;;;;;;;62333:31;62361:2;62333:23;62354:1;62333:16;:20;;:23;;;;:::i;:::-;:27;;:31;;;;:::i;:::-;62332:37;;:57;;;;:::i;:::-;62325:64;;;;;;62285:116;62433:1;62415:14;:19;62411:77;;62458:18;62468:7;62458:9;:18::i;:::-;62451:25;;;;;;62411:77;61574:921;;;;;;:::o;52728:62::-;52766:24;52728:62;:::o;17923:152::-;17993:4;18017:50;18022:3;:10;;18058:5;18042:23;;18034:32;;18017:4;:50::i;:::-;18010:57;;17923:152;;;;:::o;636:106::-;689:15;724:10;717:17;;636:106;:::o;48337:346::-;48456:1;48439:19;;:5;:19;;;;48431:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48537:1;48518:21;;:7;:21;;;;48510:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48621:6;48591:11;:18;48603:5;48591:18;;;;;;;;;;;;;;;:27;48610:7;48591:27;;;;;;;;;;;;;;;:36;;;;48659:7;48643:32;;48652:5;48643:32;;;48668:6;48643:32;;;;;;;;;;;;;;;;;;48337:346;;;:::o;45949:539::-;46073:1;46055:20;;:6;:20;;;;46047:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46157:1;46136:23;;:9;:23;;;;46128:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46212:47;46233:6;46241:9;46252:6;46212:20;:47::i;:::-;46292:71;46314:6;46292:71;;;;;;;;;;;;;;;;;:9;:17;46302:6;46292:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;46272:9;:17;46282:6;46272:17;;;;;;;;;;;;;;;:91;;;;46397:32;46422:6;46397:9;:20;46407:9;46397:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;46374:9;:20;46384:9;46374:20;;;;;;;;;;;;;;;:55;;;;46462:9;46445:35;;46454:6;46445:35;;;46473:6;46445:35;;;;;;;;;;;;;;;;;;45949:539;;;:::o;36949:166::-;37035:7;37068:1;37063;:6;;37071:12;37055:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37106:1;37102;:5;37095:12;;36949:166;;;;;:::o;34584:158::-;34642:7;34675:1;34670;:6;;34662:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34733:1;34729;:5;34722:12;;34584:158;;;;:::o;35699:153::-;35757:7;35789:1;35785;:5;35777:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35843:1;35839;:5;;;;;;35832:12;;35699:153;;;;:::o;28135:188::-;28209:33;28234:7;28209:6;:12;28216:4;28209:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;28205:111;;;28291:12;:10;:12::i;:::-;28264:40;;28282:7;28264:40;;28276:4;28264:40;;;;;;;;;;28205:111;28135:188;;:::o;28331:192::-;28406:36;28434:7;28406:6;:12;28413:4;28406:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;28402:114;;;28491:12;:10;:12::i;:::-;28464:40;;28482:7;28464:40;;28476:4;28464:40;;;;;;;;;;28402:114;28331:192;;:::o;47481:418::-;47584:1;47565:21;;:7;:21;;;;47557:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47637:49;47658:7;47675:1;47679:6;47637:20;:49::i;:::-;47720:68;47743:6;47720:68;;;;;;;;;;;;;;;;;:9;:18;47730:7;47720:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;47699:9;:18;47709:7;47699:18;;;;;;;;;;;;;;;:89;;;;47814:24;47831:6;47814:12;;:16;;:24;;;;:::i;:::-;47799:12;:39;;;;47880:1;47854:37;;47863:7;47854:37;;;47884:6;47854:37;;;;;;;;;;;;;;;;;;47481:418;;:::o;34122:179::-;34180:7;34200:9;34216:1;34212;:5;34200:17;;34241:1;34236;:6;;34228:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34292:1;34285:8;;;34122:179;;;;:::o;3121:120::-;2665:8;:6;:8::i;:::-;2657:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3190:5:::1;3180:7;;:15;;;;;;;;;;;;;;;;;;3211:22;3220:12;:10;:12::i;:::-;3211:22;;;;;;;;;;;;;;;;;;;;3121:120::o:0;2862:118::-;2388:8;:6;:8::i;:::-;2387:9;2379:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2932:4:::1;2922:7;;:14;;;;;;;;;;;;;;;;;;2952:20;2959:12;:10;:12::i;:::-;2952:20;;;;;;;;;;;;;;;;;;;;2862:118::o:0;19209:158::-;19283:7;19334:22;19338:3;:10;;19350:5;19334:3;:22::i;:::-;19326:31;;19303:56;;19209:158;;;;:::o;18495:167::-;18575:4;18599:55;18609:3;:10;;18645:5;18629:23;;18621:32;;18599:9;:55::i;:::-;18592:62;;18495:167;;;;:::o;46770:378::-;46873:1;46854:21;;:7;:21;;;;46846:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46924:49;46953:1;46957:7;46966:6;46924:20;:49::i;:::-;47001:24;47018:6;47001:12;;:16;;:24;;;;:::i;:::-;46986:12;:39;;;;47057:30;47080:6;47057:9;:18;47067:7;47057:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;47036:9;:18;47046:7;47036:18;;;;;;;;;;;;;;;:51;;;;47124:7;47103:37;;47120:1;47103:37;;;47133:6;47103:37;;;;;;;;;;;;;;;;;;46770:378;;:::o;18748:117::-;18811:7;18838:19;18846:3;:10;;18838:7;:19::i;:::-;18831:26;;18748:117;;;:::o;35001:220::-;35059:7;35088:1;35083;:6;35079:20;;;35098:1;35091:8;;;;35079:20;35110:9;35126:1;35122;:5;35110:17;;35155:1;35150;35146;:5;;;;;;:10;35138:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35212:1;35205:8;;;35001:220;;;;;:::o;12987:414::-;13050:4;13072:21;13082:3;13087:5;13072:9;:21::i;:::-;13067:327;;13110:3;:11;;13127:5;13110:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13293:3;:11;;:18;;;;13271:3;:12;;:19;13284:5;13271:19;;;;;;;;;;;:40;;;;13333:4;13326:11;;;;13067:327;13377:5;13370:12;;12987:414;;;;;:::o;60496:410::-;60605:44;60632:4;60638:2;60642:6;60605:26;:44::i;:::-;60669:8;:6;:8::i;:::-;60668:9;60660:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60733:12;60748:9;:15;60758:4;60748:15;;;;;;;;;;;;;;;;;;;;;;;;;:37;;;;60783:1;60767:18;;:4;:18;;;60748:37;:57;;;;60803:1;60789:16;;:2;:16;;;60748:57;60733:72;;60824:7;60816:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60496:410;;;;:::o;18251:158::-;18324:4;18348:53;18356:3;:10;;18392:5;18376:23;;18368:32;;18348:7;:53::i;:::-;18341:60;;18251:158;;;;:::o;15875:204::-;15942:7;15991:5;15970:3;:11;;:18;;;;:26;15962:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16053:3;:11;;16065:5;16053:18;;;;;;;;;;;;;;;;16046:25;;15875:204;;;;:::o;15207:129::-;15280:4;15327:1;15304:3;:12;;:19;15317:5;15304:19;;;;;;;;;;;;:24;;15297:31;;15207:129;;;;:::o;15422:109::-;15478:7;15505:3;:11;;:18;;;;15498:25;;15422:109;;;:::o;54412:183::-;54543:44;54570:4;54576:2;54580:6;54543:26;:44::i;:::-;54412:183;;;:::o;13577:1544::-;13643:4;13761:18;13782:3;:12;;:19;13795:5;13782:19;;;;;;;;;;;;13761:40;;13832:1;13818:10;:15;13814:1300;;14180:21;14217:1;14204:10;:14;14180:38;;14233:17;14274:1;14253:3;:11;;:18;;;;:22;14233:42;;14520:17;14540:3;:11;;14552:9;14540:22;;;;;;;;;;;;;;;;14520:42;;14686:9;14657:3;:11;;14669:13;14657:26;;;;;;;;;;;;;;;:38;;;;14805:1;14789:13;:17;14763:3;:12;;:23;14776:9;14763:23;;;;;;;;;;;:43;;;;14915:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;15010:3;:12;;:19;15023:5;15010:19;;;;;;;;;;;15003:26;;;15053:4;15046:11;;;;;;;;13814:1300;15097:5;15090:12;;;13577:1544;;;;;:::o;50397:238::-;50506:44;50533:4;50539:2;50543:6;50506:26;:44::i;:::-;50572:8;:6;:8::i;:::-;50571:9;50563:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50397:238;;;:::o;49716:92::-;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

ipfs://350ec15377facbb85a5bbb3f14ddbc36cf146e8a789cadf4724a4ce95d204b73
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.