ETH Price: $2,891.46 (-3.43%)
Gas: 19 Gwei

Token

New Order (NEWO)
 

Overview

Max Total Supply

800,000,000 NEWO

Holders

1,178

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
thetolkienblackguy.eth
Balance
18,575 NEWO

Value
$0.00
0x7ccc3139c8ab02ec82407a7faeb8ff7ec7c5ce9c
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:
NewOrderGovernance

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-06
*/

// SPDX-License-Identifier: MIT

// References:
//https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol
//https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol

/**
Copyright 2021 New Order


Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 * */
 
pragma solidity ^0.8.4;

/**
* @dev Inteface for the token lock features in this contract
*/
interface ITOKENLOCK {
    /**
     * @dev Emitted when the token lock is initialized  
     * `tokenHolder` is the address the lock pertains to
     *  `amountLocked` is the amount of tokens locked 
     *  `time` is the (initial) time at which tokens were locked
     *  `unlockPeriod` is the time interval at which tokens become unlockedPerPeriod
     *  `unlockedPerPeriod` is the amount of token unlocked earch unlockPeriod
     */
    event  NewTokenLock(address tokenHolder, uint256 amountLocked, uint256 time, uint256 unlockPeriod, uint256 unlockedPerPeriod);
    /**
     * @dev Emitted when the token lock is updated  to be more strict
     * `tokenHolder` is the address the lock pertains to
     *  `amountLocked` is the amount of tokens locked 
     *  `time` is the (initial) time at which tokens were locked
     *  `unlockPeriod` is the time interval at which tokens become unlockedPerPeriod
     *  `unlockedPerPeriod` is the amount of token unlocked earch unlockPeriod
     */
    event  UpdateTokenLock(address tokenHolder, uint256 amountLocked, uint256 time, uint256 unlockPeriod, uint256 unlockedPerPeriod);
    
    /**
     * @dev Lock `baseTokensLocked_` held by the caller with `unlockedPerEpoch_` tokens unlocking each `unlockEpoch_`
     *
     *
     * Emits an {NewTokenLock} event indicating the updated terms of the token lockup.
     *
     * Requires msg.sender to:
     *
     * - If there was a prevoius lock for this address, tokens must first unlock through the passage of time, 
     *      after which the lock must be cleared with a call to {clearLock} before calling this function again for the same address.     
     * - Must have at least a balance of `baseTokensLocked_` to lock
     * - Must provide non-zero `unlockEpoch_`
     * - Must have at least `unlockedPerEpoch_` tokens to unlock 
     *  - `unlockedPerEpoch_` must be greater than zero
     */
    
    function newTokenLock(uint256 baseTokensLocked_, uint256 unlockEpoch_, uint256 unlockedPerEpoch_) external;
    
    /**
     * @dev Reset the lock state
     *
     * Requirements:
     *
     * - msg.sender must not have any tokens locked, currently;
     *      if there were tokens locked for msg.sender previously,
     *      they must have all become unlocked through the passage of time
     *      before calling this function.
     */
    function clearLock() external;
    
    /**
     * @dev Returns the amount of tokens that are unlocked i.e. transferrable by `who`
     *
     */
    function balanceUnlocked(address who) external view returns (uint256 amount);
    /**
     * @dev Returns the amount of tokens that are locked and not transferrable by `who`
     *
     */
    function balanceLocked(address who) external view returns (uint256 amount);

    /**
     * @dev Reduce the amount of token unlocked each period by `subtractedValue`
     * 
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `subtractedValue` is greater than 0
     *  - cannot reduce the unlockedPerEpoch to 0
     *
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     */
    function decreaseUnlockAmount(uint256 subtractedValue) external;
    /**
     * @dev Increase the duration of the period at which tokens are unlocked by `addedValue`
     * this will have the net effect of slowing the rate at which tokens are unlocked
     * 
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `addedValue` is greater than 0
     * 
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     */
    function increaseUnlockTime(uint256 addedValue) external;
    /**
     * @dev Increase the number of tokens locked by `addedValue`
     * i.e. locks up more tokens.
     * 
     *      
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `addedValue` is greater than zero
     *  - msg.sender must have sufficient unlocked tokens to lock
     * 
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     *
     */
    function increaseTokensLocked(uint256 addedValue) external;

}
/**
 * @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);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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

}

/**
 * @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, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, 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 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 { }

}

contract NewOrderGovernance is ERC20, ITOKENLOCK {


    constructor(string memory name_, string memory symbol_, uint256 amount_, address deployer_) ERC20(name_, symbol_){
        _mint(deployer_, amount_);
    }
    
    string private constant ERROR_INSUFFICIENT_UNLOCKED = "Not enough unlocked tokens for transfer";
    string private constant ERROR_LOCK_EXISTS = "Token lock already exists";
    string private constant ERROR_INSUFFICIENT_TOKENS = "Not enough tokens to lock";
    string private constant ERROR_EPOCH_ZERO = "Unlock interval must be greater than zero";
    string private constant ERROR_BAD_UNLOCK_AMOUNT = "Unlock amount must be between 1 and the locked amount";
    string private constant ERROR_CLEARING_LOCK = "Cannot clear lock while tokens are locked";
    string private constant ERROR_BAD_NEW_UNLOCK_AMT = "New unlock amount must be lower than current";
    string private constant ERROR_BAD_NEW_UNLOCK_TIME = "New unlock time must be greater than current";
    string private constant ERROR_BAD_NEW_LOCKED_AMT = "New amount locked must be greater than current";
    string private constant ERROR_NO_LOCKED_TOKENS = "No tokens are locked, create new lock first";
    
    
    mapping (address => uint256) public lockTime; //the time tokens were locked
    mapping (address => uint256) public unlockEpoch; //the time interval at which tokens unlock
    mapping (address => uint256) public unlockedPerEpoch; // the number of tokens unlocked per unlockEpoch
    mapping (address => uint256) public baseTokensLocked; // the number of tokens locked up by HOLDER
    /**
     * @dev require that at least `amount` tokens are unlocked before transfer is possible
     *  also permit if minting tokens (coming from 0x0)
     *
    */
    function _beforeTokenTransfer(address from, address /*to*/, uint256 amount) internal  virtual override {
            require(from == address(0x0) || amount <= balanceUnlocked(from), ERROR_INSUFFICIENT_UNLOCKED);
    }
    
    /**
     * @dev Lock `baseTokensLocked_` held by the caller with `unlockedPerEpoch_` tokens unlocking each `unlockEpoch_`
     *
     *
     * Emits an {NewTokenLock} event indicating the updated terms of the token lockup.
     *
     * Requires msg.sender to:
     *
     * - If there was a prevoius lock for this address, tokens must first unlock through the passage of time, 
     *      after which the lock must be cleared with a call to {clearLock} before calling this function again for the same address.
     * - Must have at least a balance of `baseTokensLocked_` to lock
     * - Must provide non-zero `unlockEpoch_`
     * - Must have at least `unlockedPerEpoch_` tokens to unlock 
     *  - `unlockedPerEpoch_` must be greater than zero
     */
    
    function newTokenLock(uint256 baseTokensLocked_, uint256 unlockEpoch_, uint256 unlockedPerEpoch_) public virtual override{
        require(balanceLocked(msg.sender) == 0, ERROR_LOCK_EXISTS);
        require(balanceOf(msg.sender) >= baseTokensLocked_, ERROR_INSUFFICIENT_TOKENS); 
        require(unlockEpoch_ > 0, ERROR_EPOCH_ZERO);
        require(unlockedPerEpoch_ <= baseTokensLocked_ &&  unlockedPerEpoch_ > 0, ERROR_BAD_UNLOCK_AMOUNT);
        lockTime[msg.sender] = block.timestamp;
        unlockEpoch[msg.sender] = unlockEpoch_;
        unlockedPerEpoch[msg.sender] = unlockedPerEpoch_;
        baseTokensLocked[msg.sender] = baseTokensLocked_;
        emit NewTokenLock(msg.sender, baseTokensLocked[msg.sender], lockTime[msg.sender], unlockEpoch[msg.sender], unlockedPerEpoch[msg.sender]);
    }
    
    /**
     * @dev Reset the lock state
     *
     * Requirements:
     *
     * - msg.sender must not have any tokens locked, currently;
     *      if there were tokens locked for msg.sender previously,
     *      they must have all become unlocked through the passage of time
     *      before calling this function.
     */
    function clearLock() public virtual override{
        require(balanceLocked(msg.sender) == 0, ERROR_CLEARING_LOCK);
        lockTime[msg.sender] = 0;
        unlockEpoch[msg.sender] = 0;
        unlockedPerEpoch[msg.sender] = 0;
        baseTokensLocked[msg.sender] = 0;
    }
    
    /**
     * @dev Returns the amount of tokens that are unlocked i.e. transferrable by `who`
     *
     */
    function balanceUnlocked(address who) public virtual override view returns (uint256 amount) {
        
        return (balanceOf(who)- balanceLocked(who));
        
    }
    /**
     * @dev Returns the amount of tokens that are locked and not transferrable by `who`
     *
     */
    function balanceLocked(address who) public virtual override view returns (uint256 amount){
        if(baseTokensLocked[who] == 0){
            return 0;
        }
        uint256 unlockedOverTime = unlockedPerEpoch[who] * (block.timestamp - lockTime[who]) / unlockEpoch[who];
        if(baseTokensLocked[who] <  unlockedOverTime){
            return 0;
        }
        return baseTokensLocked[who]- unlockedOverTime;
        
    }

     /**
     * @dev Emits the UpdateTokenLock event
     */
    function emitUpdateTokenLock() internal {
        emit UpdateTokenLock(msg.sender, baseTokensLocked[msg.sender], lockTime[msg.sender], unlockEpoch[msg.sender], unlockedPerEpoch[msg.sender]);

    }
 

    /**
     * @dev Reduce the amount of token unlocked each period by `subtractedValue`
     * 
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `subtractedValue` is greater than 0
     *  - cannot reduce the unlockedPerEpoch to 0
     *
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     */
    function decreaseUnlockAmount(uint256 subtractedValue) public virtual override{
        require(balanceLocked(msg.sender) > 0, ERROR_NO_LOCKED_TOKENS);
        require(subtractedValue > 0 && (unlockedPerEpoch[msg.sender]- subtractedValue) > 0, ERROR_BAD_NEW_UNLOCK_AMT);

        baseTokensLocked[msg.sender] = balanceLocked(msg.sender);
        lockTime[msg.sender] = block.timestamp;
    
        unlockedPerEpoch[msg.sender] = (unlockedPerEpoch[msg.sender]- subtractedValue);
        emitUpdateTokenLock();
    
    }
    /**
     * @dev Increase the duration of the period at which tokens are unlocked by `addedValue`
     * this will have the net effect of slowing the rate at which tokens are unlocked
     * 
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `addedValue` is greater than 0
     * 
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     */
    function increaseUnlockTime(uint256 addedValue) public virtual override{
        require(addedValue > 0, ERROR_BAD_NEW_UNLOCK_TIME);
        require(balanceLocked(msg.sender) > 0, ERROR_NO_LOCKED_TOKENS);

        baseTokensLocked[msg.sender] = balanceLocked(msg.sender);
        lockTime[msg.sender] = block.timestamp;
    
        unlockEpoch[msg.sender] = (addedValue+ unlockEpoch[msg.sender]);

        emitUpdateTokenLock();
    
    }
    /**
     * @dev Increase the number of tokens locked by `addedValue`
     * i.e. locks up more tokens.
     * 
     *      
     * Emits an {UpdateTokenLock} event indicating the updated terms of the token lockup.
     * 
     * Requires: 
     *  - msg.sender must have tokens currently locked
     *  - `addedValue` is greater than zero
     *  - msg.sender must have sufficient unlocked tokens to lock
     * 
     *  NOTE: As a side effect resets the baseTokensLocked and lockTime for msg.sender 
     *
     */
    function increaseTokensLocked(uint256 addedValue) public virtual override{
        require(addedValue > 0, ERROR_BAD_NEW_LOCKED_AMT);
        require(balanceLocked(msg.sender) > 0, ERROR_NO_LOCKED_TOKENS);
        require(addedValue <= balanceUnlocked(msg.sender), ERROR_INSUFFICIENT_TOKENS);
        baseTokensLocked[msg.sender] = (addedValue+ balanceLocked(msg.sender));
        lockTime[msg.sender] = block.timestamp;
        emitUpdateTokenLock();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount_","type":"uint256"},{"internalType":"address","name":"deployer_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"tokenHolder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountLocked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockedPerPeriod","type":"uint256"}],"name":"NewTokenLock","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":"tokenHolder","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountLocked","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockPeriod","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unlockedPerPeriod","type":"uint256"}],"name":"UpdateTokenLock","type":"event"},{"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":"who","type":"address"}],"name":"balanceLocked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceUnlocked","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"baseTokensLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearLock","outputs":[],"stateMutability":"nonpayable","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":"subtractedValue","type":"uint256"}],"name":"decreaseUnlockAmount","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseTokensLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseUnlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"baseTokensLocked_","type":"uint256"},{"internalType":"uint256","name":"unlockEpoch_","type":"uint256"},{"internalType":"uint256","name":"unlockedPerEpoch_","type":"uint256"}],"name":"newTokenLock","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":[{"internalType":"address","name":"","type":"address"}],"name":"unlockEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"unlockedPerEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620019b1380380620019b1833981016040819052620000349162000470565b8351849084906200004d906003906020850190620002f4565b50805162000063906004906020840190620002f4565b5050506200007881836200008260201b60201c565b5050505062000607565b6001600160a01b038216620000de5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620000ec6000838362000179565b80600260008282546200010091906200051b565b90915550506001600160a01b038216600090815260208190526040812080548392906200012f9084906200051b565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831615806200019a57506200019683620001db565b8111155b6040518060600160405280602781526020016200198a6027913990620001d55760405162461bcd60e51b8152600401620000d5919062000536565b50505050565b6000620001e88262000213565b6001600160a01b0383166000908152602081905260409020546200020d91906200056b565b92915050565b6001600160a01b0381166000908152600860205260408120546200023957506000919050565b6001600160a01b03821660009081526006602090815260408083205460059092528220546200026990426200056b565b6001600160a01b0385166000908152600760205260409020546200028e919062000585565b6200029a9190620005a7565b6001600160a01b038416600090815260086020526040902054909150811115620002c75750600092915050565b6001600160a01b038316600090815260086020526040902054620002ed9082906200056b565b9392505050565b8280546200030290620005ca565b90600052602060002090601f01602090048101928262000326576000855562000371565b82601f106200034157805160ff191683800117855562000371565b8280016001018555821562000371579182015b828111156200037157825182559160200191906001019062000354565b506200037f92915062000383565b5090565b5b808211156200037f576000815560010162000384565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003cd578181015183820152602001620003b3565b83811115620001d55750506000910152565b600082601f830112620003f157600080fd5b81516001600160401b03808211156200040e576200040e6200039a565b604051601f8301601f19908116603f011681019082821181831017156200043957620004396200039a565b816040528381528660208588010111156200045357600080fd5b62000466846020830160208901620003b0565b9695505050505050565b600080600080608085870312156200048757600080fd5b84516001600160401b03808211156200049f57600080fd5b620004ad88838901620003df565b95506020870151915080821115620004c457600080fd5b50620004d387828801620003df565b60408701516060880151919550935090506001600160a01b0381168114620004fa57600080fd5b939692955090935050565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000531576200053162000505565b500190565b602081526000825180602084015262000557816040850160208701620003b0565b601f01601f19169190910160400192915050565b60008282101562000580576200058062000505565b500390565b6000816000190483118215151615620005a257620005a262000505565b500290565b600082620005c557634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620005df57607f821691505b602082108114156200060157634e487b7160e01b600052602260045260246000fd5b50919050565b61137380620006176000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806374af3447116100b8578063a4beda631161007c578063a4beda63146102b4578063a9059cbb146102d4578063c19b8036146102e7578063c619af14146102ef578063d8a67fd514610302578063dd62ed3e1461032257600080fd5b806374af3447146102535780637c616fe61461027357806383f918371461028657806395d89b4114610299578063a457c2d7146102a157600080fd5b806323b872dd1161010a57806323b872dd146101cd578063313ce567146101e057806339509351146101ef5780635d7add48146102025780635fc3a3121461021757806370a082311461022a57600080fd5b80630451f5201461014757806306fdde031461016d578063095ea7b31461018257806318160ddd146101a55780631ca7925c146101ad575b600080fd5b61015a610155366004610fcf565b61035b565b6040519081526020015b60405180910390f35b61017561038f565b6040516101649190610fea565b61019561019036600461103f565b610421565b6040519015158152602001610164565b60025461015a565b61015a6101bb366004610fcf565b60066020526000908152604090205481565b6101956101db366004611069565b610437565b60405160128152602001610164565b6101956101fd36600461103f565b6104ed565b6102156102103660046110a5565b610524565b005b61015a610225366004610fcf565b61061d565b61015a610238366004610fcf565b6001600160a01b031660009081526020819052604090205490565b61015a610261366004610fcf565b60076020526000908152604090205481565b6102156102813660046110a5565b6106f4565b6102156102943660046110be565b6107c5565b610175610997565b6101956102af36600461103f565b6109a6565b61015a6102c2366004610fcf565b60056020526000908152604090205481565b6101956102e236600461103f565b610a41565b610215610a4e565b6102156102fd3660046110a5565b610ac5565b61015a610310366004610fcf565b60086020526000908152604090205481565b61015a6103303660046110ea565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006103668261061d565b6001600160a01b0383166000908152602081905260409020546103899190611133565b92915050565b60606003805461039e9061114a565b80601f01602080910402602001604051908101604052809291908181526020018280546103ca9061114a565b80156104175780601f106103ec57610100808354040283529160200191610417565b820191906000526020600020905b8154815290600101906020018083116103fa57829003601f168201915b5050505050905090565b600061042e338484610bdb565b50600192915050565b6000610444848484610cff565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e285336104dd8685611133565b610bdb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042e9185906104dd908690611185565b600061052f3361061d565b116040518060600160405280602b81526020016112e7602b9139906105675760405162461bcd60e51b81526004016104c59190610fea565b5060008111801561059057503360009081526007602052604081205461058e908390611133565b115b6040518060600160405280602c8152602001611312602c9139906105c75760405162461bcd60e51b81526004016104c59190610fea565b506105d13361061d565b3360009081526008602090815260408083209390935560058152828220429055600790522054610602908290611133565b3360009081526007602052604090205561061a610ee2565b50565b6001600160a01b03811660009081526008602052604081205461064257506000919050565b6001600160a01b03821660009081526006602090815260408083205460059092528220546106709042611133565b6001600160a01b038516600090815260076020526040902054610693919061119d565b61069d91906111bc565b6001600160a01b0384166000908152600860205260409020549091508111156106c95750600092915050565b6001600160a01b0383166000908152600860205260409020546106ed908290611133565b9392505050565b600081116040518060600160405280602c8152602001611231602c91399061072f5760405162461bcd60e51b81526004016104c59190610fea565b50600061073b3361061d565b116040518060600160405280602b81526020016112e7602b9139906107735760405162461bcd60e51b81526004016104c59190610fea565b5061077d3361061d565b33600090815260086020908152604080832093909355600581528282204290556006905220546107ad9082611185565b3360009081526006602052604090205561061a610ee2565b6107ce3361061d565b60408051808201909152601981527f546f6b656e206c6f636b20616c72656164792065786973747300000000000000602082015290156108215760405162461bcd60e51b81526004016104c59190610fea565b5033600090815260208190526040902054831115604051806040016040528060198152602001784e6f7420656e6f75676820746f6b656e7320746f206c6f636b60381b815250906108855760405162461bcd60e51b81526004016104c59190610fea565b50600082116040518060600160405280602981526020016111df60299139906108c15760405162461bcd60e51b81526004016104c59190610fea565b508281111580156108d25750600081115b60405180606001604052806035815260200161128b60359139906109095760405162461bcd60e51b81526004016104c59190610fea565b5033600081815260056020908152604080832042815560068352818420878155600780855283862088815560088652958490208a905591549054918452935482519586529285018890528482019390935260608401929092526080830152517f14dd38da30c9da84bbafc0a82aca4fe12d2802342bdff3aee7cba29b3dace69c9181900360a00190a1505050565b60606004805461039e9061114a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c5565b610a3733856104dd8685611133565b5060019392505050565b600061042e338484610cff565b610a573361061d565b6000146040518060600160405280602981526020016112086029913990610a915760405162461bcd60e51b81526004016104c59190610fea565b5033600090815260056020908152604080832083905560068252808320839055600782528083208390556008909152812055565b600081116040518060600160405280602e815260200161125d602e913990610b005760405162461bcd60e51b81526004016104c59190610fea565b506000610b0c3361061d565b116040518060600160405280602b81526020016112e7602b913990610b445760405162461bcd60e51b81526004016104c59190610fea565b50610b4e3361035b565b811115604051806040016040528060198152602001784e6f7420656e6f75676820746f6b656e7320746f206c6f636b60381b81525090610ba15760405162461bcd60e51b81526004016104c59190610fea565b50610bab3361061d565b610bb59082611185565b33600090815260086020908152604080832093909355600590522042905561061a610ee2565b6001600160a01b038316610c3d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b038216610c9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c5565b6001600160a01b038216610dc55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c5565b610dd0838383610f58565b6001600160a01b03831660009081526020819052604090205481811015610e485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b610e528282611133565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e88908490611185565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ed491815260200190565b60405180910390a350505050565b33600081815260086020908152604080832054600583528184205460068452828520546007855294839020548351968752938601919091528482015260608401929092526080830152517f42d399c266c2ecae943ad13b8b7667b66a9a94a929b64832b6fa27f5c61002a49181900360a00190a1565b6001600160a01b0383161580610f765750610f728361035b565b8111155b6040518060600160405280602781526020016112c06027913990610fad5760405162461bcd60e51b81526004016104c59190610fea565b50505050565b80356001600160a01b0381168114610fca57600080fd5b919050565b600060208284031215610fe157600080fd5b6106ed82610fb3565b600060208083528351808285015260005b8181101561101757858101830151858201604001528201610ffb565b81811115611029576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561105257600080fd5b61105b83610fb3565b946020939093013593505050565b60008060006060848603121561107e57600080fd5b61108784610fb3565b925061109560208501610fb3565b9150604084013590509250925092565b6000602082840312156110b757600080fd5b5035919050565b6000806000606084860312156110d357600080fd5b505081359360208301359350604090920135919050565b600080604083850312156110fd57600080fd5b61110683610fb3565b915061111460208401610fb3565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b6000828210156111455761114561111d565b500390565b600181811c9082168061115e57607f821691505b6020821081141561117f57634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156111985761119861111d565b500190565b60008160001904831182151516156111b7576111b761111d565b500290565b6000826111d957634e487b7160e01b600052601260045260246000fd5b50049056fe556e6c6f636b20696e74657276616c206d7573742062652067726561746572207468616e207a65726f43616e6e6f7420636c656172206c6f636b207768696c6520746f6b656e7320617265206c6f636b65644e657720756e6c6f636b2074696d65206d7573742062652067726561746572207468616e2063757272656e744e657720616d6f756e74206c6f636b6564206d7573742062652067726561746572207468616e2063757272656e74556e6c6f636b20616d6f756e74206d757374206265206265747765656e203120616e6420746865206c6f636b656420616d6f756e744e6f7420656e6f75676820756e6c6f636b656420746f6b656e7320666f72207472616e736665724e6f20746f6b656e7320617265206c6f636b65642c20637265617465206e6577206c6f636b2066697273744e657720756e6c6f636b20616d6f756e74206d757374206265206c6f776572207468616e2063757272656e74a2646970667358221220205121bcad78c232f565d9f9a51c6a658ef727429dab279ae9cd0f3fe488cc1464736f6c634300080a00334e6f7420656e6f75676820756e6c6f636b656420746f6b656e7320666f72207472616e73666572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000026104955b8280c28ca392f42422fdbdbf93c700300000000000000000000000000000000000000000000000000000000000000094e6577204f72646572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e45574f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806374af3447116100b8578063a4beda631161007c578063a4beda63146102b4578063a9059cbb146102d4578063c19b8036146102e7578063c619af14146102ef578063d8a67fd514610302578063dd62ed3e1461032257600080fd5b806374af3447146102535780637c616fe61461027357806383f918371461028657806395d89b4114610299578063a457c2d7146102a157600080fd5b806323b872dd1161010a57806323b872dd146101cd578063313ce567146101e057806339509351146101ef5780635d7add48146102025780635fc3a3121461021757806370a082311461022a57600080fd5b80630451f5201461014757806306fdde031461016d578063095ea7b31461018257806318160ddd146101a55780631ca7925c146101ad575b600080fd5b61015a610155366004610fcf565b61035b565b6040519081526020015b60405180910390f35b61017561038f565b6040516101649190610fea565b61019561019036600461103f565b610421565b6040519015158152602001610164565b60025461015a565b61015a6101bb366004610fcf565b60066020526000908152604090205481565b6101956101db366004611069565b610437565b60405160128152602001610164565b6101956101fd36600461103f565b6104ed565b6102156102103660046110a5565b610524565b005b61015a610225366004610fcf565b61061d565b61015a610238366004610fcf565b6001600160a01b031660009081526020819052604090205490565b61015a610261366004610fcf565b60076020526000908152604090205481565b6102156102813660046110a5565b6106f4565b6102156102943660046110be565b6107c5565b610175610997565b6101956102af36600461103f565b6109a6565b61015a6102c2366004610fcf565b60056020526000908152604090205481565b6101956102e236600461103f565b610a41565b610215610a4e565b6102156102fd3660046110a5565b610ac5565b61015a610310366004610fcf565b60086020526000908152604090205481565b61015a6103303660046110ea565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006103668261061d565b6001600160a01b0383166000908152602081905260409020546103899190611133565b92915050565b60606003805461039e9061114a565b80601f01602080910402602001604051908101604052809291908181526020018280546103ca9061114a565b80156104175780601f106103ec57610100808354040283529160200191610417565b820191906000526020600020905b8154815290600101906020018083116103fa57829003601f168201915b5050505050905090565b600061042e338484610bdb565b50600192915050565b6000610444848484610cff565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104ce5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e285336104dd8685611133565b610bdb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161042e9185906104dd908690611185565b600061052f3361061d565b116040518060600160405280602b81526020016112e7602b9139906105675760405162461bcd60e51b81526004016104c59190610fea565b5060008111801561059057503360009081526007602052604081205461058e908390611133565b115b6040518060600160405280602c8152602001611312602c9139906105c75760405162461bcd60e51b81526004016104c59190610fea565b506105d13361061d565b3360009081526008602090815260408083209390935560058152828220429055600790522054610602908290611133565b3360009081526007602052604090205561061a610ee2565b50565b6001600160a01b03811660009081526008602052604081205461064257506000919050565b6001600160a01b03821660009081526006602090815260408083205460059092528220546106709042611133565b6001600160a01b038516600090815260076020526040902054610693919061119d565b61069d91906111bc565b6001600160a01b0384166000908152600860205260409020549091508111156106c95750600092915050565b6001600160a01b0383166000908152600860205260409020546106ed908290611133565b9392505050565b600081116040518060600160405280602c8152602001611231602c91399061072f5760405162461bcd60e51b81526004016104c59190610fea565b50600061073b3361061d565b116040518060600160405280602b81526020016112e7602b9139906107735760405162461bcd60e51b81526004016104c59190610fea565b5061077d3361061d565b33600090815260086020908152604080832093909355600581528282204290556006905220546107ad9082611185565b3360009081526006602052604090205561061a610ee2565b6107ce3361061d565b60408051808201909152601981527f546f6b656e206c6f636b20616c72656164792065786973747300000000000000602082015290156108215760405162461bcd60e51b81526004016104c59190610fea565b5033600090815260208190526040902054831115604051806040016040528060198152602001784e6f7420656e6f75676820746f6b656e7320746f206c6f636b60381b815250906108855760405162461bcd60e51b81526004016104c59190610fea565b50600082116040518060600160405280602981526020016111df60299139906108c15760405162461bcd60e51b81526004016104c59190610fea565b508281111580156108d25750600081115b60405180606001604052806035815260200161128b60359139906109095760405162461bcd60e51b81526004016104c59190610fea565b5033600081815260056020908152604080832042815560068352818420878155600780855283862088815560088652958490208a905591549054918452935482519586529285018890528482019390935260608401929092526080830152517f14dd38da30c9da84bbafc0a82aca4fe12d2802342bdff3aee7cba29b3dace69c9181900360a00190a1505050565b60606004805461039e9061114a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610a285760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104c5565b610a3733856104dd8685611133565b5060019392505050565b600061042e338484610cff565b610a573361061d565b6000146040518060600160405280602981526020016112086029913990610a915760405162461bcd60e51b81526004016104c59190610fea565b5033600090815260056020908152604080832083905560068252808320839055600782528083208390556008909152812055565b600081116040518060600160405280602e815260200161125d602e913990610b005760405162461bcd60e51b81526004016104c59190610fea565b506000610b0c3361061d565b116040518060600160405280602b81526020016112e7602b913990610b445760405162461bcd60e51b81526004016104c59190610fea565b50610b4e3361035b565b811115604051806040016040528060198152602001784e6f7420656e6f75676820746f6b656e7320746f206c6f636b60381b81525090610ba15760405162461bcd60e51b81526004016104c59190610fea565b50610bab3361061d565b610bb59082611185565b33600090815260086020908152604080832093909355600590522042905561061a610ee2565b6001600160a01b038316610c3d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104c5565b6001600160a01b038216610c9e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104c5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d635760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104c5565b6001600160a01b038216610dc55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104c5565b610dd0838383610f58565b6001600160a01b03831660009081526020819052604090205481811015610e485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104c5565b610e528282611133565b6001600160a01b038086166000908152602081905260408082209390935590851681529081208054849290610e88908490611185565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ed491815260200190565b60405180910390a350505050565b33600081815260086020908152604080832054600583528184205460068452828520546007855294839020548351968752938601919091528482015260608401929092526080830152517f42d399c266c2ecae943ad13b8b7667b66a9a94a929b64832b6fa27f5c61002a49181900360a00190a1565b6001600160a01b0383161580610f765750610f728361035b565b8111155b6040518060600160405280602781526020016112c06027913990610fad5760405162461bcd60e51b81526004016104c59190610fea565b50505050565b80356001600160a01b0381168114610fca57600080fd5b919050565b600060208284031215610fe157600080fd5b6106ed82610fb3565b600060208083528351808285015260005b8181101561101757858101830151858201604001528201610ffb565b81811115611029576000604083870101525b50601f01601f1916929092016040019392505050565b6000806040838503121561105257600080fd5b61105b83610fb3565b946020939093013593505050565b60008060006060848603121561107e57600080fd5b61108784610fb3565b925061109560208501610fb3565b9150604084013590509250925092565b6000602082840312156110b757600080fd5b5035919050565b6000806000606084860312156110d357600080fd5b505081359360208301359350604090920135919050565b600080604083850312156110fd57600080fd5b61110683610fb3565b915061111460208401610fb3565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b6000828210156111455761114561111d565b500390565b600181811c9082168061115e57607f821691505b6020821081141561117f57634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156111985761119861111d565b500190565b60008160001904831182151516156111b7576111b761111d565b500290565b6000826111d957634e487b7160e01b600052601260045260246000fd5b50049056fe556e6c6f636b20696e74657276616c206d7573742062652067726561746572207468616e207a65726f43616e6e6f7420636c656172206c6f636b207768696c6520746f6b656e7320617265206c6f636b65644e657720756e6c6f636b2074696d65206d7573742062652067726561746572207468616e2063757272656e744e657720616d6f756e74206c6f636b6564206d7573742062652067726561746572207468616e2063757272656e74556e6c6f636b20616d6f756e74206d757374206265206265747765656e203120616e6420746865206c6f636b656420616d6f756e744e6f7420656e6f75676820756e6c6f636b656420746f6b656e7320666f72207472616e736665724e6f20746f6b656e7320617265206c6f636b65642c20637265617465206e6577206c6f636b2066697273744e657720756e6c6f636b20616d6f756e74206d757374206265206c6f776572207468616e2063757272656e74a2646970667358221220205121bcad78c232f565d9f9a51c6a658ef727429dab279ae9cd0f3fe488cc1464736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000295be96e64066972000000000000000000000000000000026104955b8280c28ca392f42422fdbdbf93c700300000000000000000000000000000000000000000000000000000000000000094e6577204f72646572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044e45574f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): New Order
Arg [1] : symbol_ (string): NEWO
Arg [2] : amount_ (uint256): 800000000000000000000000000
Arg [3] : deployer_ (address): 0x26104955B8280C28CA392f42422fdBdbF93C7003

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000295be96e640669720000000
Arg [3] : 00000000000000000000000026104955b8280c28ca392f42422fdbdbf93c7003
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4e6577204f726465720000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4e45574f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19832:8396:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24208:174;;;;;;:::i;:::-;;:::i;:::-;;;529:25:1;;;517:2;502:18;24208:174:0;;;;;;;;11884:100;;;:::i;:::-;;;;;;;:::i;14051:169::-;;;;;;:::i;:::-;;:::i;:::-;;;1591:14:1;;1584:22;1566:41;;1554:2;1539:18;14051:169:0;1426:187:1;13004:108:0;13092:12;;13004:108;;21137:47;;;;;;:::i;:::-;;;;;;;;;;;;;;14702:422;;;;;;:::i;:::-;;:::i;12846:93::-;;;12929:2;2093:36:1;;2081:2;2066:18;12846:93:0;1951:184:1;15533:215:0;;;;;;:::i;:::-;;:::i;25708:530::-;;;;;;:::i;:::-;;:::i;:::-;;24503:443;;;;;;:::i;:::-;;:::i;13175:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;13276:18:0;13249:7;13276:18;;;;;;;;;;;;13175:127;21234:52;;;;;;:::i;:::-;;;;;;;;;;;;;;26767:451;;;;;;:::i;:::-;;:::i;22632:814::-;;;;;;:::i;:::-;;:::i;12103:104::-;;;:::i;16251:377::-;;;;;;:::i;:::-;;:::i;21056:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;13515:175;;;;;;:::i;:::-;;:::i;23800:282::-;;;:::i;27759:464::-;;;;;;:::i;:::-;;:::i;21342:52::-;;;;;;:::i;:::-;;;;;;;;;;;;;;13753:151;;;;;;:::i;:::-;-1:-1:-1;;;;;13869:18:0;;;13842:7;13869:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13753:151;24208:174;24284:14;24345:18;24359:3;24345:13;:18::i;:::-;-1:-1:-1;;;;;13276:18:0;;13249:7;13276:18;;;;;;;;;;;24329:34;;;;:::i;:::-;24321:43;24208:174;-1:-1:-1;;24208:174:0:o;11884:100::-;11938:13;11971:5;11964:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11884:100;:::o;14051:169::-;14134:4;14151:39;9887:10;14174:7;14183:6;14151:8;:39::i;:::-;-1:-1:-1;14208:4:0;14051:169;;;;:::o;14702:422::-;14808:4;14825:36;14835:6;14843:9;14854:6;14825:9;:36::i;:::-;-1:-1:-1;;;;;14901:19:0;;14874:24;14901:19;;;:11;:19;;;;;;;;9887:10;14901:33;;;;;;;;14953:26;;;;14945:79;;;;-1:-1:-1;;;14945:79:0;;3760:2:1;14945:79:0;;;3742:21:1;3799:2;3779:18;;;3772:30;3838:34;3818:18;;;3811:62;-1:-1:-1;;;3889:18:1;;;3882:38;3937:19;;14945:79:0;;;;;;;;;15035:57;15044:6;9887:10;15066:25;15085:6;15066:16;:25;:::i;:::-;15035:8;:57::i;:::-;-1:-1:-1;15112:4:0;;14702:422;-1:-1:-1;;;;14702:422:0:o;15533:215::-;9887:10;15621:4;15670:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15670:34:0;;;;;;;;;;15621:4;;15638:80;;15661:7;;15670:47;;15707:10;;15670:47;:::i;25708:530::-;25833:1;25805:25;25819:10;25805:13;:25::i;:::-;:29;25836:22;;;;;;;;;;;;;;;;;25797:62;;;;;-1:-1:-1;;;25797:62:0;;;;;;;;:::i;:::-;;25896:1;25878:15;:19;:74;;;;-1:-1:-1;25919:10:0;25951:1;25902:28;;;:16;:28;;;;;;:45;;25932:15;;25902:45;:::i;:::-;25901:51;25878:74;25954:24;;;;;;;;;;;;;;;;;25870:109;;;;;-1:-1:-1;;;25870:109:0;;;;;;;;:::i;:::-;;26023:25;26037:10;26023:13;:25::i;:::-;26009:10;25992:28;;;;:16;:28;;;;;;;;:56;;;;26059:8;:20;;;;;26082:15;26059:38;;26146:16;:28;;;;:45;;26176:15;;26146:45;:::i;:::-;26131:10;26114:28;;;;:16;:28;;;;;:78;26203:21;:19;:21::i;:::-;25708:530;:::o;24503:443::-;-1:-1:-1;;;;;24606:21:0;;24577:14;24606:21;;;:16;:21;;;;;;24603:65;;-1:-1:-1;24655:1:0;;24503:443;-1:-1:-1;24503:443:0:o;24603:65::-;-1:-1:-1;;;;;24765:16:0;;24678:24;24765:16;;;:11;:16;;;;;;;;;24748:8;:13;;;;;;24730:31;;:15;:31;:::i;:::-;-1:-1:-1;;;;;24705:21:0;;;;;;:16;:21;;;;;;:57;;;;:::i;:::-;:76;;;;:::i;:::-;-1:-1:-1;;;;;24795:21:0;;;;;;:16;:21;;;;;;24678:103;;-1:-1:-1;24795:41:0;-1:-1:-1;24792:80:0;;;-1:-1:-1;24859:1:0;;24503:443;-1:-1:-1;;24503:443:0:o;24792:80::-;-1:-1:-1;;;;;24889:21:0;;;;;;:16;:21;;;;;;:39;;24912:16;;24889:39;:::i;:::-;24882:46;24503:443;-1:-1:-1;;;24503:443:0:o;26767:451::-;26870:1;26857:10;:14;26873:25;;;;;;;;;;;;;;;;;26849:50;;;;;-1:-1:-1;;;26849:50:0;;;;;;;;:::i;:::-;;26946:1;26918:25;26932:10;26918:13;:25::i;:::-;:29;26949:22;;;;;;;;;;;;;;;;;26910:62;;;;;-1:-1:-1;;;26910:62:0;;;;;;;;:::i;:::-;;27016:25;27030:10;27016:13;:25::i;:::-;27002:10;26985:28;;;;:16;:28;;;;;;;;:56;;;;27052:8;:20;;;;;27075:15;27052:38;;27146:11;:23;;;;27134:35;;:10;:35;:::i;:::-;27119:10;27107:23;;;;:11;:23;;;;;:63;27183:21;:19;:21::i;22632:814::-;22772:25;22786:10;22772:13;:25::i;:::-;22804:17;;;;;;;;;;;;;;;;;;22772:30;22764:58;;;;-1:-1:-1;;;22764:58:0;;;;;;;;:::i;:::-;-1:-1:-1;22851:10:0;13249:7;13276:18;;;;;;;;;;;22866:17;-1:-1:-1;22841:42:0;22885:25;;;;;;;;;;;;;-1:-1:-1;;;22885:25:0;;;22833:78;;;;;-1:-1:-1;;;22833:78:0;;;;;;;;:::i;:::-;;22946:1;22931:12;:16;22949;;;;;;;;;;;;;;;;;22923:43;;;;;-1:-1:-1;;;22923:43:0;;;;;;;;:::i;:::-;;23006:17;22985;:38;;:64;;;;;23048:1;23028:17;:21;22985:64;23051:23;;;;;;;;;;;;;;;;;22977:98;;;;;-1:-1:-1;;;22977:98:0;;;;;;;;:::i;:::-;-1:-1:-1;23095:10:0;23086:20;;;;:8;:20;;;;;;;;23109:15;23086:38;;23135:11;:23;;;;;:38;;;23184:16;:28;;;;;;:48;;;23243:16;:28;;;;;;:48;;;23362:20;;23384:23;;23409:28;;;;;23307:131;;4754:51:1;;;4821:18;;;4814:34;;;4864:18;;;4857:34;;;;4922:2;4907:18;;4900:34;;;;4965:3;4950:19;;4943:35;23307:131:0;;;;;;4741:3:1;23307:131:0;;;22632:814;;;:::o;12103:104::-;12159:13;12192:7;12185:14;;;;;:::i;16251:377::-;9887:10;16344:4;16388:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16388:34:0;;;;;;;;;;16441:35;;;;16433:85;;;;-1:-1:-1;;;16433:85:0;;5191:2:1;16433:85:0;;;5173:21:1;5230:2;5210:18;;;5203:30;5269:34;5249:18;;;5242:62;-1:-1:-1;;;5320:18:1;;;5313:35;5365:19;;16433:85:0;4989:401:1;16433:85:0;16529:67;9887:10;16552:7;16561:34;16580:15;16561:16;:34;:::i;16529:67::-;-1:-1:-1;16616:4:0;;16251:377;-1:-1:-1;;;16251:377:0:o;13515:175::-;13601:4;13618:42;9887:10;13642:9;13653:6;13618:9;:42::i;23800:282::-;23863:25;23877:10;23863:13;:25::i;:::-;23892:1;23863:30;23895:19;;;;;;;;;;;;;;;;;23855:60;;;;;-1:-1:-1;;;23855:60:0;;;;;;;;:::i;:::-;-1:-1:-1;23935:10:0;23949:1;23926:20;;;:8;:20;;;;;;;;:24;;;23961:11;:23;;;;;:27;;;23999:16;:28;;;;;:32;;;24042:16;:28;;;;;:32;23800:282::o;27759:464::-;27864:1;27851:10;:14;27867:24;;;;;;;;;;;;;;;;;27843:49;;;;;-1:-1:-1;;;27843:49:0;;;;;;;;:::i;:::-;;27939:1;27911:25;27925:10;27911:13;:25::i;:::-;:29;27942:22;;;;;;;;;;;;;;;;;27903:62;;;;;-1:-1:-1;;;27903:62:0;;;;;;;;:::i;:::-;;27998:27;28014:10;27998:15;:27::i;:::-;27984:10;:41;;28027:25;;;;;;;;;;;;;-1:-1:-1;;;28027:25:0;;;27976:77;;;;;-1:-1:-1;;;27976:77:0;;;;;;;;:::i;:::-;;28108:25;28122:10;28108:13;:25::i;:::-;28096:37;;:10;:37;:::i;:::-;28081:10;28064:28;;;;:16;:28;;;;;;;;:70;;;;28145:8;:20;;;28168:15;28145:38;;28194:21;:19;:21::i;18782:346::-;-1:-1:-1;;;;;18884:19:0;;18876:68;;;;-1:-1:-1;;;18876:68:0;;5597:2:1;18876:68:0;;;5579:21:1;5636:2;5616:18;;;5609:30;5675:34;5655:18;;;5648:62;-1:-1:-1;;;5726:18:1;;;5719:34;5770:19;;18876:68:0;5395:400:1;18876:68:0;-1:-1:-1;;;;;18963:21:0;;18955:68;;;;-1:-1:-1;;;18955:68:0;;6002:2:1;18955:68:0;;;5984:21:1;6041:2;6021:18;;;6014:30;6080:34;6060:18;;;6053:62;-1:-1:-1;;;6131:18:1;;;6124:32;6173:19;;18955:68:0;5800:398:1;18955:68:0;-1:-1:-1;;;;;19036:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19088:32;;529:25:1;;;19088:32:0;;502:18:1;19088:32:0;;;;;;;18782:346;;;:::o;17118:604::-;-1:-1:-1;;;;;17224:20:0;;17216:70;;;;-1:-1:-1;;;17216:70:0;;6405:2:1;17216:70:0;;;6387:21:1;6444:2;6424:18;;;6417:30;6483:34;6463:18;;;6456:62;-1:-1:-1;;;6534:18:1;;;6527:35;6579:19;;17216:70:0;6203:401:1;17216:70:0;-1:-1:-1;;;;;17305:23:0;;17297:71;;;;-1:-1:-1;;;17297:71:0;;6811:2:1;17297:71:0;;;6793:21:1;6850:2;6830:18;;;6823:30;6889:34;6869:18;;;6862:62;-1:-1:-1;;;6940:18:1;;;6933:33;6983:19;;17297:71:0;6609:399:1;17297:71:0;17381:47;17402:6;17410:9;17421:6;17381:20;:47::i;:::-;-1:-1:-1;;;;;17465:17:0;;17441:21;17465:17;;;;;;;;;;;17501:23;;;;17493:74;;;;-1:-1:-1;;;17493:74:0;;7215:2:1;17493:74:0;;;7197:21:1;7254:2;7234:18;;;7227:30;7293:34;7273:18;;;7266:62;-1:-1:-1;;;7344:18:1;;;7337:36;7390:19;;17493:74:0;7013:402:1;17493:74:0;17598:22;17614:6;17598:13;:22;:::i;:::-;-1:-1:-1;;;;;17578:17:0;;;:9;:17;;;;;;;;;;;:42;;;;17631:20;;;;;;;;:30;;17655:6;;17578:9;17631:30;;17655:6;;17631:30;:::i;:::-;;;;;;;;17696:9;-1:-1:-1;;;;;17679:35:0;17688:6;-1:-1:-1;;;;;17679:35:0;;17707:6;17679:35;;;;529:25:1;;517:2;502:18;;383:177;17679:35:0;;;;;;;;17205:517;17118:604;;;:::o;25018:200::-;25090:10;25102:28;;;;:16;:28;;;;;;;;;25132:8;:20;;;;;;25154:11;:23;;;;;;25179:16;:28;;;;;;;25074:134;;4754:51:1;;;4821:18;;;4814:34;;;;4864:18;;;4857:34;4922:2;4907:18;;4900:34;;;;4965:3;4950:19;;4943:35;25074:134:0;;;;;;4741:3:1;25074:134:0;;;25018:200::o;21619:219::-;-1:-1:-1;;;;;21745:20:0;;;;:55;;;21779:21;21795:4;21779:15;:21::i;:::-;21769:6;:31;;21745:55;21802:27;;;;;;;;;;;;;;;;;21737:93;;;;;-1:-1:-1;;;21737:93:0;;;;;;;;:::i;:::-;;21619:219;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;565:597::-;677:4;706:2;735;724:9;717:21;767:6;761:13;810:6;805:2;794:9;790:18;783:34;835:1;845:140;859:6;856:1;853:13;845:140;;;954:14;;;950:23;;944:30;920:17;;;939:2;916:26;909:66;874:10;;845:140;;;1003:6;1000:1;997:13;994:91;;;1073:1;1068:2;1059:6;1048:9;1044:22;1040:31;1033:42;994:91;-1:-1:-1;1146:2:1;1125:15;-1:-1:-1;;1121:29:1;1106:45;;;;1153:2;1102:54;;565:597;-1:-1:-1;;;565:597:1:o;1167:254::-;1235:6;1243;1296:2;1284:9;1275:7;1271:23;1267:32;1264:52;;;1312:1;1309;1302:12;1264:52;1335:29;1354:9;1335:29;:::i;:::-;1325:39;1411:2;1396:18;;;;1383:32;;-1:-1:-1;;;1167:254:1:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2325:316::-;2402:6;2410;2418;2471:2;2459:9;2450:7;2446:23;2442:32;2439:52;;;2487:1;2484;2477:12;2439:52;-1:-1:-1;;2510:23:1;;;2580:2;2565:18;;2552:32;;-1:-1:-1;2631:2:1;2616:18;;;2603:32;;2325:316;-1:-1:-1;2325:316:1:o;2646:260::-;2714:6;2722;2775:2;2763:9;2754:7;2750:23;2746:32;2743:52;;;2791:1;2788;2781:12;2743:52;2814:29;2833:9;2814:29;:::i;:::-;2804:39;;2862:38;2896:2;2885:9;2881:18;2862:38;:::i;:::-;2852:48;;2646:260;;;;;:::o;2911:127::-;2972:10;2967:3;2963:20;2960:1;2953:31;3003:4;3000:1;2993:15;3027:4;3024:1;3017:15;3043:125;3083:4;3111:1;3108;3105:8;3102:34;;;3116:18;;:::i;:::-;-1:-1:-1;3153:9:1;;3043:125::o;3173:380::-;3252:1;3248:12;;;;3295;;;3316:61;;3370:4;3362:6;3358:17;3348:27;;3316:61;3423:2;3415:6;3412:14;3392:18;3389:38;3386:161;;;3469:10;3464:3;3460:20;3457:1;3450:31;3504:4;3501:1;3494:15;3532:4;3529:1;3522:15;3386:161;;3173:380;;;:::o;3967:128::-;4007:3;4038:1;4034:6;4031:1;4028:13;4025:39;;;4044:18;;:::i;:::-;-1:-1:-1;4080:9:1;;3967:128::o;4100:168::-;4140:7;4206:1;4202;4198:6;4194:14;4191:1;4188:21;4183:1;4176:9;4169:17;4165:45;4162:71;;;4213:18;;:::i;:::-;-1:-1:-1;4253:9:1;;4100:168::o;4273:217::-;4313:1;4339;4329:132;;4383:10;4378:3;4374:20;4371:1;4364:31;4418:4;4415:1;4408:15;4446:4;4443:1;4436:15;4329:132;-1:-1:-1;4475:9:1;;4273:217::o

Swarm Source

ipfs://205121bcad78c232f565d9f9a51c6a658ef727429dab279ae9cd0f3fe488cc14
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.