Token AutoSingle Token

Overview CRC20

Price
$0.00 @ 0.019973 CRO (-0.51%)
Fully Diluted Market Cap
Total Supply:
18,500,000 AutoS

Holders:
69 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

A marked-to-USD defi,eFi yield platform, offering innovative Strategies to achieve targeted returns and manage risk exposure.

Market

Volume (24H):$35.11
Market Capitalization:$0.00
Circulating Supply:0.00 AutoS
Market Data Source: Coinmarketcap


Update? Click here to update the token ICO / general information
# Exchange Pair Price  24H Volume % Volume
1
VVS Finance
0XAE620DC4B9B6E44FBEB4A949F63AC957CC43B5DD-0XC21223249CA28397B4B6541DFFAECC539BFF0C59$0.0022
0.0000000 Btc
$35.51
16,503.924 0XAE620DC4B9B6E44FBEB4A949F63AC957CC43B5DD
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
AutoSingleBridgedToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2023-01-04
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default 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");
        unchecked {
            _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");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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



/**
       _____ _             __     _______                           
      / ___/(_)___  ____ _/ /__  / ____(_)___  ____ _____  ________ 
      \__ \/ / __ \/ __ `/ / _ \/ /_  / / __ \/ __ `/ __ \/ ___/ _ \
     ___/ / / / / / /_/ / /  __/ __/ / / / / / /_/ / / / / /__/  __/
    /____/_/_/ /_/\__, /_/\___/_/   /_/_/ /_/\__,_/_/ /_/\___/\___/ 
                 /____/                                             
*/

pragma solidity ^0.8.4;




contract AutoSingleBridgedToken is ERC20("AutoSingle Token", "AutoS"), Ownable {
  using SafeMath for uint256;

  uint256 public constant CAP                        = 100_000_000e18;

  uint256 public constant TGE_VESTING_AMT            =  18_500_000e18;

  uint256 public constant ECOSYS_LIQ_VESTING_AMT     =  25_000_000e18;
  uint256 public constant ECOSYS_LIQ_VESTING_PERIOD  =   365 days * 3;

  uint256 public constant DEV_VESTING_AMT            =  15_500_000e18;
  uint256 public constant DEV_VESTING_PERIOD         =   365 days * 3;

  uint256 public constant PARTNERSHIP_VESTING_AMT    =  16_000_000e18;
  uint256 public constant PARTNERSHIP_VESTING_PERIOD =   365 days * 3;

  uint256 public constant COMMUNITY_VESTING_AMT      =  25_000_000e18;
  uint256 public constant COMMUNITY_VESTING_PERIOD   =   365 days * 3;

  // same as "original" AutoS on Polygon: 
  // https://polygonscan.com/address/0x925FAdb35B73720238cc78777d02ED4dD3100816#readContract#F24
  uint256 public constant startMiningTimestamp       =     1661509413;

  uint public tgeMinted         = 0;
  uint public ecoSysLiqMinted   = 0;
  uint public devMinted         = 0;
  uint public partnershipMinted = 0;
  uint public communityMinted   = 0;

  constructor() {
    
    require(
         TGE_VESTING_AMT 
      +  ECOSYS_LIQ_VESTING_AMT
      +  DEV_VESTING_AMT
      +  PARTNERSHIP_VESTING_AMT
      +  COMMUNITY_VESTING_AMT
      == CAP,
      "Total vesting amount is not equal to total supply"
    );

  }

  function mint(address _to, uint256 _amount) internal onlyOwner {
    require(totalSupply().add(_amount) <= CAP, "cap exceeded");
    _mint(_to, _amount);
  }

  function mintForTGE(address _to, uint256 _amount) public onlyOwner {
    require(tgeMinted.add(_amount) <= TGE_VESTING_AMT, "mint limit exceeded");
    tgeMinted = tgeMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForEcosystemAndLiquidity(address _to, uint256 _amount) public onlyOwner {
    require(ecoSysLiqMinted.add(_amount) <= ECOSYS_LIQ_VESTING_AMT, "mint limit exceeded");
    require(_amount <= pendingEcosystemLiquidityTokens(), "available limit exceeded");
    ecoSysLiqMinted = ecoSysLiqMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForDevTeam(address _to, uint256 _amount) public onlyOwner {
    require(devMinted.add(_amount) <= DEV_VESTING_AMT, "mint limit exceeded");
    require(_amount <= pendingDevTokens(), "available limit exceeded");
    devMinted = devMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForPartnership(address _to, uint256 _amount) public onlyOwner {
    require(partnershipMinted.add(_amount) <= PARTNERSHIP_VESTING_AMT, "mint limit exceeded");
    require(_amount <= pendingPartnershipTokens(), "available limit exceeded");
    partnershipMinted = partnershipMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForCommunity(address _to, uint256 _amount) public onlyOwner {
    require(communityMinted.add(_amount) <= COMMUNITY_VESTING_AMT, "mint limit exceeded");
    require(_amount <= pendingCommunityTokens(), "available limit exceeded");
    communityMinted = communityMinted.add(_amount);
    mint(_to, _amount);
  }

  function burn(address _account, uint256 _amount) external onlyOwner {
    _burn(_account, _amount);
  }

  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    require(recipient != address(this), "ERC20: transfer to the token contract");
    _transfer(_msgSender(), recipient, amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    require(recipient != address(this), "ERC20: transfer to the token contract");
    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
    return true;
  }

  function pendingEcosystemLiquidityTokens() public view returns (uint256) {
    return _pendingTokens(ECOSYS_LIQ_VESTING_AMT, ECOSYS_LIQ_VESTING_PERIOD, ecoSysLiqMinted);
  }

  function pendingDevTokens() public view returns (uint256) {
    return _pendingTokens(DEV_VESTING_AMT, DEV_VESTING_PERIOD, devMinted);
  }

  function pendingPartnershipTokens() public view returns (uint256) {
    return _pendingTokens(PARTNERSHIP_VESTING_AMT, PARTNERSHIP_VESTING_PERIOD, partnershipMinted);
  }

  function pendingCommunityTokens() public view returns (uint256) {
    return _pendingTokens(COMMUNITY_VESTING_AMT, COMMUNITY_VESTING_PERIOD, communityMinted);
  }

  function _pendingTokens(uint vestingAmt, uint vestingPeriod, uint mintedAmt) internal view returns (uint256)
  {
    if(block.timestamp < startMiningTimestamp){
      return 0;
    }

    uint256 autoSinglePerSec = vestingAmt.div(vestingPeriod);
    uint256 timePast = uint256(block.timestamp).sub(startMiningTimestamp);

    if(timePast >= vestingPeriod) {
      return vestingAmt.sub(mintedAmt);
    }

    return timePast.mul(autoSinglePerSec).sub(mintedAmt);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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"},{"inputs":[],"name":"CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMMUNITY_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COMMUNITY_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYS_LIQ_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYS_LIQ_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNERSHIP_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TGE_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityMinted","outputs":[{"internalType":"uint256","name":"","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":[],"name":"devMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ecoSysLiqMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"mintForCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForDevTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForEcosystemAndLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForPartnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForTGE","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnershipMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingCommunityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingDevTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingEcosystemLiquidityTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingPartnershipTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMiningTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006006556000600755600060085560006009556000600a553480156200002a57600080fd5b50604080518082018252601081526f20baba37a9b4b733b632902a37b5b2b760811b6020808301918252835180850190945260058452644175746f5360d81b9084015281519192916200008091600391620001e6565b50805162000096906004906020840190620001e6565b505050620000b3620000ad6200019060201b60201c565b62000194565b6a52b7d2dcc80cd2e40000006a14adf4b7320334b90000006a0d3c21bcecceda100000006a0cd240af0568633f800000620000fa836a0f4d870271cf2c228000006200028c565b6200010691906200028c565b6200011291906200028c565b6200011e91906200028c565b146200018a5760405162461bcd60e51b815260206004820152603160248201527f546f74616c2076657374696e6720616d6f756e74206973206e6f7420657175616044820152706c20746f20746f74616c20737570706c7960781b606482015260840160405180910390fd5b620002ee565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001f490620002b1565b90600052602060002090601f01602090048101928262000218576000855562000263565b82601f106200023357805160ff191683800117855562000263565b8280016001018555821562000263579182015b828111156200026357825182559160200191906001019062000246565b506200027192915062000275565b5090565b5b8082111562000271576000815560010162000276565b60008219821115620002ac57634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620002c657607f821691505b60208210811415620002e857634e487b7160e01b600052602260045260246000fd5b50919050565b61157280620002fe6000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80638da5cb5b1161013b578063bb58bd26116100b8578063d9c5b0d31161007c578063d9c5b0d314610456578063dd62ed3e1461045f578063ec81b48314610498578063f0317ddd146104aa578063f2fde38b146104bd57600080fd5b8063bb58bd26146102dd578063c198587714610429578063c2f5b5d014610432578063cee2784a1461043b578063d61e10921461044357600080fd5b8063a457c2d7116100ff578063a457c2d7146103f2578063a9059cbb14610405578063adf2131b14610418578063b6e7e624146102dd578063ba00e0571461042157600080fd5b80638da5cb5b146103a957806395d89b41146103c45780639661460c146103cc57806397ed356a146102ae5780639dc29fac146103df57600080fd5b8063313ce567116101c957806370a082311161018d57806370a082311461035c578063715018a614610385578063731e1b0b1461038d57806377641b6a146103965780637d6258d0146103a157600080fd5b8063313ce5671461030d578063395093511461031c5780634e114e191461032f5780634e9e425d14610342578063608b4f541461035457600080fd5b806318160ddd1161021057806318160ddd146102d557806323563e98146102dd57806323b872dd146102e85780632ad93bc6146102dd5780632afb46bb146102fb57600080fd5b806306fdde031461024d578063095ea7b31461026b5780630e7fd8d21461028e578063146d4e2e146102ae5780631805864c146102c0575b600080fd5b6102556104d0565b6040516102629190611324565b60405180910390f35b61027e6102793660046112fb565b610562565b6040519015158152602001610262565b6102a06a0d3c21bcecceda1000000081565b604051908152602001610262565b6102a06a14adf4b7320334b900000081565b6102d36102ce3660046112fb565b610578565b005b6002546102a0565b6102a06305a39a8081565b61027e6102f63660046112c0565b610628565b6102a06a0cd240af0568633f80000081565b60405160128152602001610262565b61027e61032a3660046112fb565b6106a1565b6102d361033d3660046112fb565b6106d8565b6102a06a0f4d870271cf2c2280000081565b6102a061077b565b6102a061036a366004611274565b6001600160a01b031660009081526020819052604090205490565b6102d361079e565b6102a060095481565b6102a06363089f2581565b6102a06107d4565b6005546040516001600160a01b039091168152602001610262565b6102556107f2565b6102d36103da3660046112fb565b610801565b6102d36103ed3660046112fb565b6108a4565b61027e6104003660046112fb565b6108d8565b61027e6104133660046112fb565b610967565b6102a060085481565b6102a061099d565b6102a060075481565b6102a060065481565b6102a06109bb565b6102d36104513660046112fb565b6109d9565b6102a0600a5481565b6102a061046d36600461128e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102a06a52b7d2dcc80cd2e400000081565b6102d36104b83660046112fb565b610a55565b6102d36104cb366004611274565b610af8565b6060600380546104df906114c3565b80601f016020809104026020016040519081016040528092919081815260200182805461050b906114c3565b80156105585780601f1061052d57610100808354040283529160200191610558565b820191906000526020600020905b81548152906001019060200180831161053b57829003601f168201915b5050505050905090565b600061056f338484610b93565b50600192915050565b6005546001600160a01b031633146105ab5760405162461bcd60e51b81526004016105a2906113bc565b60405180910390fd5b6008546a0cd240af0568633f800000906105c59083610cb8565b11156105e35760405162461bcd60e51b81526004016105a290611428565b6105eb6109bb565b81111561060a5760405162461bcd60e51b81526004016105a2906113f1565b6008546106179082610cb8565b6008556106248282610cc4565b5050565b60006001600160a01b0383163014156106535760405162461bcd60e51b81526004016105a290611377565b61065e848484610d54565b6106968433610691856040518060600160405280602881526020016115156028913961068a8a3361046d565b9190610f23565b610b93565b5060015b9392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161056f918590610691908690611455565b6005546001600160a01b031633146107025760405162461bcd60e51b81526004016105a2906113bc565b600a546a14adf4b7320334b90000009061071c9083610cb8565b111561073a5760405162461bcd60e51b81526004016105a290611428565b61074261099d565b8111156107615760405162461bcd60e51b81526004016105a2906113f1565b600a5461076e9082610cb8565b600a556106248282610cc4565b60006107996a14adf4b7320334b90000006305a39a80600754610f4f565b905090565b6005546001600160a01b031633146107c85760405162461bcd60e51b81526004016105a2906113bc565b6107d26000610fbd565b565b60006107996a0d3c21bcecceda100000006305a39a80600954610f4f565b6060600480546104df906114c3565b6005546001600160a01b0316331461082b5760405162461bcd60e51b81526004016105a2906113bc565b6007546a14adf4b7320334b9000000906108459083610cb8565b11156108635760405162461bcd60e51b81526004016105a290611428565b61086b61077b565b81111561088a5760405162461bcd60e51b81526004016105a2906113f1565b6007546108979082610cb8565b6007556106248282610cc4565b6005546001600160a01b031633146108ce5760405162461bcd60e51b81526004016105a2906113bc565b610624828261100f565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561095a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105a2565b6106963385858403610b93565b60006001600160a01b0383163014156109925760405162461bcd60e51b81526004016105a290611377565b61056f338484610d54565b60006107996a14adf4b7320334b90000006305a39a80600a54610f4f565b60006107996a0cd240af0568633f8000006305a39a80600854610f4f565b6005546001600160a01b03163314610a035760405162461bcd60e51b81526004016105a2906113bc565b6006546a0f4d870271cf2c2280000090610a1d9083610cb8565b1115610a3b5760405162461bcd60e51b81526004016105a290611428565b600654610a489082610cb8565b6006556106248282610cc4565b6005546001600160a01b03163314610a7f5760405162461bcd60e51b81526004016105a2906113bc565b6009546a0d3c21bcecceda1000000090610a999083610cb8565b1115610ab75760405162461bcd60e51b81526004016105a290611428565b610abf6107d4565b811115610ade5760405162461bcd60e51b81526004016105a2906113f1565b600954610aeb9082610cb8565b6009556106248282610cc4565b6005546001600160a01b03163314610b225760405162461bcd60e51b81526004016105a2906113bc565b6001600160a01b038116610b875760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a2565b610b9081610fbd565b50565b6001600160a01b038316610bf55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105a2565b6001600160a01b038216610c565760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105a2565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061069a8284611455565b6005546001600160a01b03163314610cee5760405162461bcd60e51b81526004016105a2906113bc565b6a52b7d2dcc80cd2e4000000610d0d82610d0760025490565b90610cb8565b1115610d4a5760405162461bcd60e51b815260206004820152600c60248201526b18d85c08195e18d95959195960a21b60448201526064016105a2565b6106248282611155565b6001600160a01b038316610db85760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105a2565b6001600160a01b038216610e1a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105a2565b6001600160a01b03831660009081526020819052604090205481811015610e925760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105a2565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610ec9908490611455565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f1591815260200190565b60405180910390a350505050565b60008184841115610f475760405162461bcd60e51b81526004016105a29190611324565b505050900390565b60006363089f25421015610f655750600061069a565b6000610f718585611234565b90506000610f83426363089f25611240565b9050848110610f9f57610f968685611240565b9250505061069a565b610fb384610fad838561124c565b90611240565b9695505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661106f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105a2565b6001600160a01b038216600090815260208190526040902054818110156110e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105a2565b6001600160a01b03831660009081526020819052604081208383039055600280548492906111129084906114ac565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610cab565b6001600160a01b0382166111ab5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105a2565b80600260008282546111bd9190611455565b90915550506001600160a01b038216600090815260208190526040812080548392906111ea908490611455565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600061069a828461146d565b600061069a82846114ac565b600061069a828461148d565b80356001600160a01b038116811461126f57600080fd5b919050565b600060208284031215611285578081fd5b61069a82611258565b600080604083850312156112a0578081fd5b6112a983611258565b91506112b760208401611258565b90509250929050565b6000806000606084860312156112d4578081fd5b6112dd84611258565b92506112eb60208501611258565b9150604084013590509250925092565b6000806040838503121561130d578182fd5b61131683611258565b946020939093013593505050565b6000602080835283518082850152825b8181101561135057858101830151858201604001528201611334565b818111156113615783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e6040820152641d1c9858dd60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526018908201527f617661696c61626c65206c696d69742065786365656465640000000000000000604082015260600190565b6020808252601390820152721b5a5b9d081b1a5b5a5d08195e18d959591959606a1b604082015260600190565b60008219821115611468576114686114fe565b500190565b60008261148857634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156114a7576114a76114fe565b500290565b6000828210156114be576114be6114fe565b500390565b600181811c908216806114d757607f821691505b602082108114156114f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a264697066735822122035492c4cdbbc5493ab26bfae1767a1d227e7310f4ca2b0cbb1b50ffdabf7ab1764736f6c63430008040033

Deployed ByteCode Sourcemap

25729:5187:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15300:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17467:169;;;;;;:::i;:::-;;:::i;:::-;;;1653:14:1;;1646:22;1628:41;;1616:2;1601:18;17467:169:0;1583:92:1;26286:67:0;;26340:13;26286:67;;;;;8246:25:1;;;8234:2;8219:18;26286:67:0;8201:76:1;26432:67:0;;26486:13;26432:67;;28015:296;;;;;;:::i;:::-;;:::i;:::-;;16420:108;16508:12;;16420:108;;26504:67;;26559:12;26504:67;;29362:388;;;;;;:::i;:::-;;:::i;26140:67::-;;26194:13;26140:67;;16262:93;;;16345:2;8424:36:1;;8412:2;8397:18;16262:93:0;8379:87:1;19019:215:0;;;;;;:::i;:::-;;:::i;28663:328::-;;;;;;:::i;:::-;;:::i;25920:67::-;;25974:13;25920:67;;29756:175;;;:::i;16591:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16692:18:0;16665:7;16692:18;;;;;;;;;;;;16591:127;2408:94;;;:::i;26908:33::-;;;;;;26720:67;;26777:10;26720:67;;30083:172;;;:::i;1757:87::-;1830:6;;1757:87;;-1:-1:-1;;;;;1830:6:0;;;1426:51:1;;1414:2;1399:18;1757:87:0;1381:102:1;15519:104:0;;;:::i;27659:350::-;;;;;;:::i;:::-;;:::i;28997:105::-;;;;;;:::i;:::-;;:::i;19737:413::-;;;;;;:::i;:::-;;:::i;29108:248::-;;;;;;:::i;:::-;;:::i;26870:33::-;;;;;;30261:164;;;:::i;26832:33::-;;;;;;26794;;;;;;29937:140;;;:::i;27434:219::-;;;;;;:::i;:::-;;:::i;26946:33::-;;;;;;17169:151;;;;;;:::i;:::-;-1:-1:-1;;;;;17285:18:0;;;17258:7;17285:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17169:151;25846:67;;25899:14;25846:67;;28317:340;;;;;;:::i;:::-;;:::i;2657:192::-;;;;;;:::i;:::-;;:::i;15300:100::-;15354:13;15387:5;15380:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15300:100;:::o;17467:169::-;17550:4;17567:39;682:10;17590:7;17599:6;17567:8;:39::i;:::-;-1:-1:-1;17624:4:0;17467:169;;;;:::o;28015:296::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;;;;;;;;;28101:9:::1;::::0;26194:13:::1;::::0;28101:22:::1;::::0;28115:7;28101:13:::1;:22::i;:::-;:41;;28093:73;;;;-1:-1:-1::0;;;28093:73:0::1;;;;;;;:::i;:::-;28192:18;:16;:18::i;:::-;28181:7;:29;;28173:66;;;;-1:-1:-1::0;;;28173:66:0::1;;;;;;;:::i;:::-;28258:9;::::0;:22:::1;::::0;28272:7;28258:13:::1;:22::i;:::-;28246:9;:34:::0;28287:18:::1;28292:3:::0;28297:7;28287:4:::1;:18::i;:::-;28015:296:::0;;:::o;29362:388::-;29468:4;-1:-1:-1;;;;;29489:26:0;;29510:4;29489:26;;29481:76;;;;-1:-1:-1;;;29481:76:0;;;;;;;:::i;:::-;29564:36;29574:6;29582:9;29593:6;29564:9;:36::i;:::-;29607:119;29616:6;682:10;29638:87;29674:6;29638:87;;;;;;;;;;;;;;;;;:31;29648:6;682:10;17169:151;:::i;29638:31::-;:35;:87;:35;:87::i;:::-;29607:8;:119::i;:::-;-1:-1:-1;29740:4:0;29362:388;;;;;;:::o;19019:215::-;682:10;19107:4;19156:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19156:34:0;;;;;;;;;;19107:4;;19124:80;;19147:7;;19156:47;;19193:10;;19156:47;:::i;28663:328::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;28751:15:::1;::::0;26486:13:::1;::::0;28751:28:::1;::::0;28771:7;28751:19:::1;:28::i;:::-;:53;;28743:85;;;;-1:-1:-1::0;;;28743:85:0::1;;;;;;;:::i;:::-;28854:24;:22;:24::i;:::-;28843:7;:35;;28835:72;;;;-1:-1:-1::0;;;28835:72:0::1;;;;;;;:::i;:::-;28932:15;::::0;:28:::1;::::0;28952:7;28932:19:::1;:28::i;:::-;28914:15;:46:::0;28967:18:::1;28972:3:::0;28977:7;28967:4:::1;:18::i;29756:175::-:0;29820:7;29843:82;26048:13;26121:12;29909:15;;29843:14;:82::i;:::-;29836:89;;29756:175;:::o;2408:94::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;2473:21:::1;2491:1;2473:9;:21::i;:::-;2408:94::o:0;30083:172::-;30140:7;30163:86;26340:13;26413:12;30231:17;;30163:14;:86::i;15519:104::-;15575:13;15608:7;15601:14;;;;;:::i;27659:350::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;27759:15:::1;::::0;26048:13:::1;::::0;27759:28:::1;::::0;27779:7;27759:19:::1;:28::i;:::-;:54;;27751:86;;;;-1:-1:-1::0;;;27751:86:0::1;;;;;;;:::i;:::-;27863:33;:31;:33::i;:::-;27852:7;:44;;27844:81;;;;-1:-1:-1::0;;;27844:81:0::1;;;;;;;:::i;:::-;27950:15;::::0;:28:::1;::::0;27970:7;27950:19:::1;:28::i;:::-;27932:15;:46:::0;27985:18:::1;27990:3:::0;27995:7;27985:4:::1;:18::i;28997:105::-:0;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;29072:24:::1;29078:8;29088:7;29072:5;:24::i;19737:413::-:0;682:10;19830:4;19874:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19874:34:0;;;;;;;;;;19927:35;;;;19919:85;;;;-1:-1:-1;;;19919:85:0;;7536:2:1;19919:85:0;;;7518:21:1;7575:2;7555:18;;;7548:30;7614:34;7594:18;;;7587:62;-1:-1:-1;;;7665:18:1;;;7658:35;7710:19;;19919:85:0;7508:227:1;19919:85:0;20040:67;682:10;20063:7;20091:15;20072:16;:34;20040:8;:67::i;29108:248::-;29194:4;-1:-1:-1;;;;;29215:26:0;;29236:4;29215:26;;29207:76;;;;-1:-1:-1;;;29207:76:0;;;;;;;:::i;:::-;29290:42;682:10;29314:9;29325:6;29290:9;:42::i;30261:164::-;30316:7;30339:80;26486:13;26559:12;30403:15;;30339:14;:80::i;29937:140::-;29986:7;30009:62;26194:13;26267:12;30061:9;;30009:14;:62::i;27434:219::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;27516:9:::1;::::0;25974:13:::1;::::0;27516:22:::1;::::0;27530:7;27516:13:::1;:22::i;:::-;:41;;27508:73;;;;-1:-1:-1::0;;;27508:73:0::1;;;;;;;:::i;:::-;27600:9;::::0;:22:::1;::::0;27614:7;27600:13:::1;:22::i;:::-;27588:9;:34:::0;27629:18:::1;27634:3:::0;27639:7;27629:4:::1;:18::i;28317:340::-:0;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;28407:17:::1;::::0;26340:13:::1;::::0;28407:30:::1;::::0;28429:7;28407:21:::1;:30::i;:::-;:57;;28399:89;;;;-1:-1:-1::0;;;28399:89:0::1;;;;;;;:::i;:::-;28514:26;:24;:26::i;:::-;28503:7;:37;;28495:74;;;;-1:-1:-1::0;;;28495:74:0::1;;;;;;;:::i;:::-;28596:17;::::0;:30:::1;::::0;28618:7;28596:21:::1;:30::i;:::-;28576:17;:50:::0;28633:18:::1;28638:3:::0;28643:7;28633:4:::1;:18::i;2657:192::-:0;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2746:22:0;::::1;2738:73;;;::::0;-1:-1:-1;;;2738:73:0;;3703:2:1;2738:73:0::1;::::0;::::1;3685:21:1::0;3742:2;3722:18;;;3715:30;3781:34;3761:18;;;3754:62;-1:-1:-1;;;3832:18:1;;;3825:36;3878:19;;2738:73:0::1;3675:228:1::0;2738:73:0::1;2822:19;2832:8;2822:9;:19::i;:::-;2657:192:::0;:::o;23421:380::-;-1:-1:-1;;;;;23557:19:0;;23549:68;;;;-1:-1:-1;;;23549:68:0;;6783:2:1;23549:68:0;;;6765:21:1;6822:2;6802:18;;;6795:30;6861:34;6841:18;;;6834:62;-1:-1:-1;;;6912:18:1;;;6905:34;6956:19;;23549:68:0;6755:226:1;23549:68:0;-1:-1:-1;;;;;23636:21:0;;23628:68;;;;-1:-1:-1;;;23628:68:0;;4110:2:1;23628:68:0;;;4092:21:1;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:32;4281:19;;23628:68:0;4082:224:1;23628:68:0;-1:-1:-1;;;;;23709:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23761:32;;8246:25:1;;;23761:32:0;;8219:18:1;23761:32:0;;;;;;;;23421:380;;;:::o;5767:98::-;5825:7;5852:5;5856:1;5852;:5;:::i;27268:160::-;1830:6;;-1:-1:-1;;;;;1830:6:0;682:10;1977:23;1969:68;;;;-1:-1:-1;;;1969:68:0;;;;;;;:::i;:::-;25899:14:::1;27346:26;27364:7;27346:13;16508:12:::0;;;16420:108;27346:13:::1;:17:::0;::::1;:26::i;:::-;:33;;27338:58;;;::::0;-1:-1:-1;;;27338:58:0;;4513:2:1;27338:58:0::1;::::0;::::1;4495:21:1::0;4552:2;4532:18;;;4525:30;-1:-1:-1;;;4571:18:1;;;4564:42;4623:18;;27338:58:0::1;4485:162:1::0;27338:58:0::1;27403:19;27409:3;27414:7;27403:5;:19::i;20640:733::-:0;-1:-1:-1;;;;;20780:20:0;;20772:70;;;;-1:-1:-1;;;20772:70:0;;6377:2:1;20772:70:0;;;6359:21:1;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;-1:-1:-1;;;6506:18:1;;;6499:35;6551:19;;20772:70:0;6349:227:1;20772:70:0;-1:-1:-1;;;;;20861:23:0;;20853:71;;;;-1:-1:-1;;;20853:71:0;;2490:2:1;20853:71:0;;;2472:21:1;2529:2;2509:18;;;2502:30;2568:34;2548:18;;;2541:62;-1:-1:-1;;;2619:18:1;;;2612:33;2662:19;;20853:71:0;2462:225:1;20853:71:0;-1:-1:-1;;;;;21021:17:0;;20997:21;21021:17;;;;;;;;;;;21057:23;;;;21049:74;;;;-1:-1:-1;;;21049:74:0;;4854:2:1;21049:74:0;;;4836:21:1;4893:2;4873:18;;;4866:30;4932:34;4912:18;;;4905:62;-1:-1:-1;;;4983:18:1;;;4976:36;5029:19;;21049:74:0;4826:228:1;21049:74:0;-1:-1:-1;;;;;21159:17:0;;;:9;:17;;;;;;;;;;;21179:22;;;21159:42;;21223:20;;;;;;;;:30;;21195:6;;21159:9;21223:30;;21195:6;;21223:30;:::i;:::-;;;;;;;;21288:9;-1:-1:-1;;;;;21271:35:0;21280:6;-1:-1:-1;;;;;21271:35:0;;21299:6;21271:35;;;;8246:25:1;;8234:2;8219:18;;8201:76;21271:35:0;;;;;;;;20640:733;;;;:::o;8046:240::-;8166:7;8227:12;8219:6;;;;8211:29;;;;-1:-1:-1;;;8211:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8262:5:0;;;8046:240::o;30431:480::-;30531:7;26777:10;30553:15;:38;30550:67;;;-1:-1:-1;30608:1:0;30601:8;;30550:67;30625:24;30652:29;:10;30667:13;30652:14;:29::i;:::-;30625:56;-1:-1:-1;30688:16:0;30707:50;30715:15;26777:10;30707:28;:50::i;:::-;30688:69;;30781:13;30769:8;:25;30766:79;;30812:25;:10;30827:9;30812:14;:25::i;:::-;30805:32;;;;;;30766:79;30860:45;30895:9;30860:30;:8;30873:16;30860:12;:30::i;:::-;:34;;:45::i;:::-;30853:52;30431:480;-1:-1:-1;;;;;;30431:480:0:o;2857:173::-;2932:6;;;-1:-1:-1;;;;;2949:17:0;;;-1:-1:-1;;;;;;2949:17:0;;;;;;;2982:40;;2932:6;;;2949:17;2932:6;;2982:40;;2913:16;;2982:40;2857:173;;:::o;22392:591::-;-1:-1:-1;;;;;22476:21:0;;22468:67;;;;-1:-1:-1;;;22468:67:0;;5975:2:1;22468:67:0;;;5957:21:1;6014:2;5994:18;;;5987:30;6053:34;6033:18;;;6026:62;-1:-1:-1;;;6104:18:1;;;6097:31;6145:19;;22468:67:0;5947:223:1;22468:67:0;-1:-1:-1;;;;;22635:18:0;;22610:22;22635:18;;;;;;;;;;;22672:24;;;;22664:71;;;;-1:-1:-1;;;22664:71:0;;2894:2:1;22664:71:0;;;2876:21:1;2933:2;2913:18;;;2906:30;2972:34;2952:18;;;2945:62;-1:-1:-1;;;3023:18:1;;;3016:32;3065:19;;22664:71:0;2866:224:1;22664:71:0;-1:-1:-1;;;;;22771:18:0;;:9;:18;;;;;;;;;;22792:23;;;22771:44;;22837:12;:22;;22809:6;;22771:9;22837:22;;22809:6;;22837:22;:::i;:::-;;;;-1:-1:-1;;22877:37:0;;8246:25:1;;;22903:1:0;;-1:-1:-1;;;;;22877:37:0;;;;;8234:2:1;8219:18;22877:37:0;8201:76:1;21660:399:0;-1:-1:-1;;;;;21744:21:0;;21736:65;;;;-1:-1:-1;;;21736:65:0;;7942:2:1;21736:65:0;;;7924:21:1;7981:2;7961:18;;;7954:30;8020:33;8000:18;;;7993:61;8071:18;;21736:65:0;7914:181:1;21736:65:0;21892:6;21876:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21909:18:0;;:9;:18;;;;;;;;;;:28;;21931:6;;21909:9;:28;;21931:6;;21909:28;:::i;:::-;;;;-1:-1:-1;;21953:37:0;;8246:25:1;;;-1:-1:-1;;;;;21953:37:0;;;21970:1;;21953:37;;8234:2:1;8219:18;21953:37:0;;;;;;;28015:296;;:::o;6904:98::-;6962:7;6989:5;6993:1;6989;:5;:::i;6148:98::-;6206:7;6233:5;6237:1;6233;:5;:::i;6505:98::-;6563:7;6590:5;6594:1;6590;:5;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1680:603::-;1792:4;1821:2;1850;1839:9;1832:21;1882:6;1876:13;1925:6;1920:2;1909:9;1905:18;1898:34;1950:4;1963:140;1977:6;1974:1;1971:13;1963:140;;;2072:14;;;2068:23;;2062:30;2038:17;;;2057:2;2034:26;2027:66;1992:10;;1963:140;;;2121:6;2118:1;2115:13;2112:2;;;2191:4;2186:2;2177:6;2166:9;2162:22;2158:31;2151:45;2112:2;-1:-1:-1;2267:2:1;2246:15;-1:-1:-1;;2242:29:1;2227:45;;;;2274:2;2223:54;;1801:482;-1:-1:-1;;;1801:482:1:o;3095:401::-;3297:2;3279:21;;;3336:2;3316:18;;;3309:30;3375:34;3370:2;3355:18;;3348:62;-1:-1:-1;;;3441:2:1;3426:18;;3419:35;3486:3;3471:19;;3269:227::o;5059:356::-;5261:2;5243:21;;;5280:18;;;5273:30;5339:34;5334:2;5319:18;;5312:62;5406:2;5391:18;;5233:182::o;5420:348::-;5622:2;5604:21;;;5661:2;5641:18;;;5634:30;5700:26;5695:2;5680:18;;5673:54;5759:2;5744:18;;5594:174::o;6986:343::-;7188:2;7170:21;;;7227:2;7207:18;;;7200:30;-1:-1:-1;;;7261:2:1;7246:18;;7239:49;7320:2;7305:18;;7160:169::o;8471:128::-;8511:3;8542:1;8538:6;8535:1;8532:13;8529:2;;;8548:18;;:::i;:::-;-1:-1:-1;8584:9:1;;8519:80::o;8604:217::-;8644:1;8670;8660:2;;-1:-1:-1;;;8695:31:1;;8749:4;8746:1;8739:15;8777:4;8702:1;8767:15;8660:2;-1:-1:-1;8806:9:1;;8650:171::o;8826:168::-;8866:7;8932:1;8928;8924:6;8920:14;8917:1;8914:21;8909:1;8902:9;8895:17;8891:45;8888:2;;;8939:18;;:::i;:::-;-1:-1:-1;8979:9:1;;8878:116::o;8999:125::-;9039:4;9067:1;9064;9061:8;9058:2;;;9072:18;;:::i;:::-;-1:-1:-1;9109:9:1;;9048:76::o;9129:380::-;9208:1;9204:12;;;;9251;;;9272:2;;9326:4;9318:6;9314:17;9304:27;;9272:2;9379;9371:6;9368:14;9348:18;9345:38;9342:2;;;9425:10;9420:3;9416:20;9413:1;9406:31;9460:4;9457:1;9450:15;9488:4;9485:1;9478:15;9342:2;;9184:325;;;:::o;9514:127::-;9575:10;9570:3;9566:20;9563:1;9556:31;9606:4;9603:1;9596:15;9630:4;9627:1;9620:15

Swarm Source

ipfs://35492c4cdbbc5493ab26bfae1767a1d227e7310f4ca2b0cbb1b50ffdabf7ab17
Loading