Token JustForFun

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
1,000,000,000 JustForFun

Holders:
109,570 addresses
Contract:
0x5b56a425f8b45d82ebb57dca4f02528409ae763b0x5b56A425F8b45D82EBB57dcA4F02528409ae763B

Decimals:
4

Social Profiles:
Not Available, Update ?

 
Filtered by Token Holder (Polygon BabyDoge: PolyBabyDoge Token)

Balance
123 JustForFun

Value
$0.00
0xdf2140dee6b07ae495382bc1cd446f7b328f63e3
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
standardToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-01
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
 
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

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

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}


/**
 * @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.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    uint256 private _lockTime;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

    function geUnlockTime() public view returns (uint256) {
        return _lockTime;
    }

    //Locks the contract for owner for the amount of time provided
    function lock(uint256 time) public virtual onlyOwner {
        _previousOwner = _owner;
        _owner = address(0);
        _lockTime = block.timestamp + time;
        emit OwnershipTransferred(_owner, address(0));
    }
    
    //Unlocks the contract for owner when _lockTime is exceeds
    function unlock() public virtual {
        require(_previousOwner == msg.sender, "You don't have permission to unlock");
        require(block.timestamp > _lockTime , "Contract is locked until 7 days");
        emit OwnershipTransferred(_owner, _previousOwner);
        _owner = _previousOwner;
    }
}




contract standardToken is Context, IERC20, IERC20Metadata,Ownable {
    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;
    bool public generatedUsingDxMint = true;
    uint256 private _totalSupply;
    bool public mintingFinishedPermanent = false;
    string private _name;
    string private _symbol;
    uint8 private _decimals;
    address public _creator;
    /**
     * @dev Sets the values for {name}, {symbol} and {decimals}.
     *
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (address creator_,string memory name_, string memory symbol_,uint8 decimals_, uint256 tokenSupply_) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
        _creator = creator_;
        
        _mint(_creator,tokenSupply_);
        mintingFinishedPermanent = true;
    }

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

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

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

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

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

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

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

        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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(!mintingFinishedPermanent,"cant be minted anymore!");
        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 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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

    /**
     * @dev 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 Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"creator_","type":"address"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"tokenSupply_","type":"uint256"}],"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":"_creator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"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":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"generatedUsingDxMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinishedPermanent","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceOwnership","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600560006101000a81548160ff0219169083151502179055506000600760006101000a81548160ff0219169083151502179055503480156200004757600080fd5b50604051620028773803806200287783398181016040528101906200006d919062000532565b60006200007f6200020560201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350836008908051906020019062000135929190620003cb565b5082600990805190602001906200014e929190620003cb565b5081600a60006101000a81548160ff021916908360ff16021790555084600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001df600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200020d60201b60201c565b6001600760006101000a81548160ff02191690831515021790555050505050506200099e565b600033905090565b600760009054906101000a900460ff161562000260576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002579062000645565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ca9062000667565b60405180910390fd5b620002e760008383620003c660201b60201c565b8060066000828254620002fb919062000716565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000353919062000716565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003ba919062000689565b60405180910390a35050565b505050565b828054620003d990620007f4565b90600052602060002090601f016020900481019282620003fd576000855562000449565b82601f106200041857805160ff191683800117855562000449565b8280016001018555821562000449579182015b82811115620004485782518255916020019190600101906200042b565b5b5090506200045891906200045c565b5090565b5b80821115620004775760008160009055506001016200045d565b5090565b6000620004926200048c84620006cf565b620006a6565b905082815260208101848484011115620004ab57600080fd5b620004b8848285620007be565b509392505050565b600081519050620004d18162000950565b92915050565b600082601f830112620004e957600080fd5b8151620004fb8482602086016200047b565b91505092915050565b60008151905062000515816200096a565b92915050565b6000815190506200052c8162000984565b92915050565b600080600080600060a086880312156200054b57600080fd5b60006200055b88828901620004c0565b955050602086015167ffffffffffffffff8111156200057957600080fd5b6200058788828901620004d7565b945050604086015167ffffffffffffffff811115620005a557600080fd5b620005b388828901620004d7565b9350506060620005c6888289016200051b565b9250506080620005d98882890162000504565b9150509295509295909350565b6000620005f560178362000705565b91506200060282620008fe565b602082019050919050565b60006200061c601f8362000705565b9150620006298262000927565b602082019050919050565b6200063f81620007a7565b82525050565b600060208201905081810360008301526200066081620005e6565b9050919050565b6000602082019050818103600083015262000682816200060d565b9050919050565b6000602082019050620006a0600083018462000634565b92915050565b6000620006b2620006c5565b9050620006c082826200082a565b919050565b6000604051905090565b600067ffffffffffffffff821115620006ed57620006ec620008be565b5b620006f882620008ed565b9050602081019050919050565b600082825260208201905092915050565b60006200072382620007a7565b91506200073083620007a7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000768576200076762000860565b5b828201905092915050565b6000620007808262000787565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620007de578082015181840152602081019050620007c1565b83811115620007ee576000848401525b50505050565b600060028204905060018216806200080d57607f821691505b602082108114156200082457620008236200088f565b5b50919050565b6200083582620008ed565b810181811067ffffffffffffffff82111715620008575762000856620008be565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f63616e74206265206d696e74656420616e796d6f726521000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200095b8162000773565b81146200096757600080fd5b50565b6200097581620007a7565b81146200098157600080fd5b50565b6200098f81620007b1565b81146200099b57600080fd5b50565b611ec980620009ae6000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063bc8bde6411610071578063bc8bde6414610337578063dd46706414610355578063dd62ed3e14610371578063f2fde38b146103a1578063f5eae936146103bd5761012c565b806395d89b4114610291578063a457c2d7146102af578063a69df4b5146102df578063a9059cbb146102e9578063b6c52324146103195761012c565b806339509351116100f457806339509351146101eb57806370a082311461021b578063715018a61461024b578063787b1191146102555780638da5cb5b146102735761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103db565b60405161014691906117c5565b60405180910390f35b61016960048036038101906101649190611534565b61046d565b60405161017691906117aa565b60405180910390f35b61018761048b565b6040516101949190611947565b60405180910390f35b6101b760048036038101906101b291906114e5565b610495565b6040516101c491906117aa565b60405180910390f35b6101d5610596565b6040516101e29190611962565b60405180910390f35b61020560048036038101906102009190611534565b6105ad565b60405161021291906117aa565b60405180910390f35b61023560048036038101906102309190611480565b610659565b6040516102429190611947565b60405180910390f35b6102536106a2565b005b61025d6107f5565b60405161026a91906117aa565b60405180910390f35b61027b610808565b604051610288919061178f565b60405180910390f35b610299610831565b6040516102a691906117c5565b60405180910390f35b6102c960048036038101906102c49190611534565b6108c3565b6040516102d691906117aa565b60405180910390f35b6102e76109b7565b005b61030360048036038101906102fe9190611534565b610b8b565b60405161031091906117aa565b60405180910390f35b610321610ba9565b60405161032e9190611947565b60405180910390f35b61033f610bb3565b60405161034c919061178f565b60405180910390f35b61036f600480360381019061036a9190611570565b610bd9565b005b61038b600480360381019061038691906114a9565b610da0565b6040516103989190611947565b60405180910390f35b6103bb60048036038101906103b69190611480565b610e27565b005b6103c5610fe9565b6040516103d291906117aa565b60405180910390f35b6060600880546103ea90611aab565b80601f016020809104026020016040519081016040528092919081815260200182805461041690611aab565b80156104635780601f1061043857610100808354040283529160200191610463565b820191906000526020600020905b81548152906001019060200180831161044657829003601f168201915b5050505050905090565b600061048161047a610ffc565b8484611004565b6001905092915050565b6000600654905090565b60006104a28484846111cf565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ed610ffc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561056d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056490611867565b60405180910390fd5b61058a85610579610ffc565b858461058591906119ef565b611004565b60019150509392505050565b6000600a60009054906101000a900460ff16905090565b600061064f6105ba610ffc565b8484600460006105c8610ffc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461064a9190611999565b611004565b6001905092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106aa610ffc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072e90611887565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600560009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606009805461084090611aab565b80601f016020809104026020016040519081016040528092919081815260200182805461086c90611aab565b80156108b95780601f1061088e576101008083540402835291602001916108b9565b820191906000526020600020905b81548152906001019060200180831161089c57829003601f168201915b5050505050905090565b600080600460006108d2610ffc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561098f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098690611927565b60405180910390fd5b6109ac61099a610ffc565b8585846109a791906119ef565b611004565b600191505092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611907565b60405180910390fd5b6002544211610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a82906118e7565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610b9f610b98610ffc565b84846111cf565b6001905092915050565b6000600254905090565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be1610ffc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611887565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508042610d1c9190611999565b600281905550600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e2f610ffc565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ebc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb390611887565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390611807565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106b906118c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db90611827565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c29190611947565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561123f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611236906118a7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a6906117e7565b60405180910390fd5b6112ba838383611451565b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133890611847565b60405180910390fd5b818161134d91906119ef565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113df9190611999565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114439190611947565b60405180910390a350505050565b505050565b60008135905061146581611e65565b92915050565b60008135905061147a81611e7c565b92915050565b60006020828403121561149257600080fd5b60006114a084828501611456565b91505092915050565b600080604083850312156114bc57600080fd5b60006114ca85828601611456565b92505060206114db85828601611456565b9150509250929050565b6000806000606084860312156114fa57600080fd5b600061150886828701611456565b935050602061151986828701611456565b925050604061152a8682870161146b565b9150509250925092565b6000806040838503121561154757600080fd5b600061155585828601611456565b92505060206115668582860161146b565b9150509250929050565b60006020828403121561158257600080fd5b60006115908482850161146b565b91505092915050565b6115a281611a23565b82525050565b6115b181611a35565b82525050565b60006115c28261197d565b6115cc8185611988565b93506115dc818560208601611a78565b6115e581611b3b565b840191505092915050565b60006115fd602383611988565b915061160882611b4c565b604082019050919050565b6000611620602683611988565b915061162b82611b9b565b604082019050919050565b6000611643602283611988565b915061164e82611bea565b604082019050919050565b6000611666602683611988565b915061167182611c39565b604082019050919050565b6000611689602883611988565b915061169482611c88565b604082019050919050565b60006116ac602083611988565b91506116b782611cd7565b602082019050919050565b60006116cf602583611988565b91506116da82611d00565b604082019050919050565b60006116f2602483611988565b91506116fd82611d4f565b604082019050919050565b6000611715601f83611988565b915061172082611d9e565b602082019050919050565b6000611738602383611988565b915061174382611dc7565b604082019050919050565b600061175b602583611988565b915061176682611e16565b604082019050919050565b61177a81611a61565b82525050565b61178981611a6b565b82525050565b60006020820190506117a46000830184611599565b92915050565b60006020820190506117bf60008301846115a8565b92915050565b600060208201905081810360008301526117df81846115b7565b905092915050565b60006020820190508181036000830152611800816115f0565b9050919050565b6000602082019050818103600083015261182081611613565b9050919050565b6000602082019050818103600083015261184081611636565b9050919050565b6000602082019050818103600083015261186081611659565b9050919050565b600060208201905081810360008301526118808161167c565b9050919050565b600060208201905081810360008301526118a08161169f565b9050919050565b600060208201905081810360008301526118c0816116c2565b9050919050565b600060208201905081810360008301526118e0816116e5565b9050919050565b6000602082019050818103600083015261190081611708565b9050919050565b600060208201905081810360008301526119208161172b565b9050919050565b600060208201905081810360008301526119408161174e565b9050919050565b600060208201905061195c6000830184611771565b92915050565b60006020820190506119776000830184611780565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119a482611a61565b91506119af83611a61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119e4576119e3611add565b5b828201905092915050565b60006119fa82611a61565b9150611a0583611a61565b925082821015611a1857611a17611add565b5b828203905092915050565b6000611a2e82611a41565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611a96578082015181840152602081019050611a7b565b83811115611aa5576000848401525b50505050565b60006002820490506001821680611ac357607f821691505b60208210811415611ad757611ad6611b0c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c60008201527f6f636b0000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611e6e81611a23565b8114611e7957600080fd5b50565b611e8581611a61565b8114611e9057600080fd5b5056fea264697066735822122015b3fcba7917b6c891c863c7016ff646edde315732565be449441cfb070478d164736f6c63430008040033000000000000000000000000a2806d5ff0d561cde26730c08da0dc1f63554cd900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000a4a757374466f7246756e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a757374466f7246756e00000000000000000000000000000000000000000000

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

000000000000000000000000a2806d5ff0d561cde26730c08da0dc1f63554cd900000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000009184e72a000000000000000000000000000000000000000000000000000000000000000000a4a757374466f7246756e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4a757374466f7246756e00000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : creator_ (address): 0xa2806d5ff0d561cde26730c08da0dc1f63554cd9
Arg [1] : name_ (string): JustForFun
Arg [2] : symbol_ (string): JustForFun
Arg [3] : decimals_ (uint8): 4
Arg [4] : tokenSupply_ (uint256): 10000000000000

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000a2806d5ff0d561cde26730c08da0dc1f63554cd9
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 000000000000000000000000000000000000000000000000000009184e72a000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 4a757374466f7246756e00000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 4a757374466f7246756e00000000000000000000000000000000000000000000


Deployed ByteCode Sourcemap

12570:9900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13619:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15793:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14746:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16444:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14581:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17275:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14917:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11230:148;;;:::i;:::-;;12774:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10587:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13838:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17993:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12252:305;;;:::i;:::-;;15257:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11785:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12992:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11950:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15495:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11533:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12855:44;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13619:100;13673:13;13706:5;13699:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13619:100;:::o;15793:169::-;15876:4;15893:39;15902:12;:10;:12::i;:::-;15916:7;15925:6;15893:8;:39::i;:::-;15950:4;15943:11;;15793:169;;;;:::o;14746:108::-;14807:7;14834:12;;14827:19;;14746:108;:::o;16444:422::-;16550:4;16567:36;16577:6;16585:9;16596:6;16567:9;:36::i;:::-;16616:24;16643:11;:19;16655:6;16643:19;;;;;;;;;;;;;;;:33;16663:12;:10;:12::i;:::-;16643:33;;;;;;;;;;;;;;;;16616:60;;16715:6;16695:16;:26;;16687:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;16777:57;16786:6;16794:12;:10;:12::i;:::-;16827:6;16808:16;:25;;;;:::i;:::-;16777:8;:57::i;:::-;16854:4;16847:11;;;16444:422;;;;;:::o;14581:100::-;14639:5;14664:9;;;;;;;;;;;14657:16;;14581:100;:::o;17275:215::-;17363:4;17380:80;17389:12;:10;:12::i;:::-;17403:7;17449:10;17412:11;:25;17424:12;:10;:12::i;:::-;17412:25;;;;;;;;;;;;;;;:34;17438:7;17412:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;17380:8;:80::i;:::-;17478:4;17471:11;;17275:215;;;;:::o;14917:127::-;14991:7;15018:9;:18;15028:7;15018:18;;;;;;;;;;;;;;;;15011:25;;14917:127;;;:::o;11230:148::-;10809:12;:10;:12::i;:::-;10799:22;;:6;;;;;;;;;;:22;;;10791:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11337:1:::1;11300:40;;11321:6;::::0;::::1;;;;;;;;11300:40;;;;;;;;;;;;11368:1;11351:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;11230:148::o:0;12774:39::-;;;;;;;;;;;;;:::o;10587:79::-;10625:7;10652:6;;;;;;;;;;;10645:13;;10587:79;:::o;13838:104::-;13894:13;13927:7;13920:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13838:104;:::o;17993:377::-;18086:4;18103:24;18130:11;:25;18142:12;:10;:12::i;:::-;18130:25;;;;;;;;;;;;;;;:34;18156:7;18130:34;;;;;;;;;;;;;;;;18103:61;;18203:15;18183:16;:35;;18175:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18271:67;18280:12;:10;:12::i;:::-;18294:7;18322:15;18303:16;:34;;;;:::i;:::-;18271:8;:67::i;:::-;18358:4;18351:11;;;17993:377;;;;:::o;12252:305::-;12322:10;12304:28;;:14;;;;;;;;;;;:28;;;12296:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;12409:9;;12391:15;:27;12383:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12500:14;;;;;;;;;;;12471:44;;12492:6;;;;;;;;;;12471:44;;;;;;;;;;;;12535:14;;;;;;;;;;;12526:6;;:23;;;;;;;;;;;;;;;;;;12252:305::o;15257:175::-;15343:4;15360:42;15370:12;:10;:12::i;:::-;15384:9;15395:6;15360:9;:42::i;:::-;15420:4;15413:11;;15257:175;;;;:::o;11785:89::-;11830:7;11857:9;;11850:16;;11785:89;:::o;12992:23::-;;;;;;;;;;;;;:::o;11950:226::-;10809:12;:10;:12::i;:::-;10799:22;;:6;;;;;;;;;;:22;;;10791:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12031:6:::1;::::0;::::1;;;;;;;;12014:14;;:23;;;;;;;;;;;;;;;;;;12065:1;12048:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;12108:4;12090:15;:22;;;;:::i;:::-;12078:9;:34;;;;12165:1;12128:40;;12149:6;::::0;::::1;;;;;;;;12128:40;;;;;;;;;;;;11950:226:::0;:::o;15495:151::-;15584:7;15611:11;:18;15623:5;15611:18;;;;;;;;;;;;;;;:27;15630:7;15611:27;;;;;;;;;;;;;;;;15604:34;;15495:151;;;;:::o;11533:244::-;10809:12;:10;:12::i;:::-;10799:22;;:6;;;;;;;;;;:22;;;10791:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;11642:1:::1;11622:22;;:8;:22;;;;11614:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11732:8;11703:38;;11724:6;::::0;::::1;;;;;;;;11703:38;;;;;;;;;;;;11761:8;11752:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;11533:244:::0;:::o;12855:44::-;;;;;;;;;;;;;:::o;3866:98::-;3919:7;3946:10;3939:17;;3866:98;:::o;21426:346::-;21545:1;21528:19;;:5;:19;;;;21520:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21626:1;21607:21;;:7;:21;;;;21599:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21710:6;21680:11;:18;21692:5;21680:18;;;;;;;;;;;;;;;:27;21699:7;21680:27;;;;;;;;;;;;;;;:36;;;;21748:7;21732:32;;21741:5;21732:32;;;21757:6;21732:32;;;;;;:::i;:::-;;;;;;;;21426:346;;;:::o;18860:604::-;18984:1;18966:20;;:6;:20;;;;18958:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;19068:1;19047:23;;:9;:23;;;;19039:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19123:47;19144:6;19152:9;19163:6;19123:20;:47::i;:::-;19183:21;19207:9;:17;19217:6;19207:17;;;;;;;;;;;;;;;;19183:41;;19260:6;19243:13;:23;;19235:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;19356:6;19340:13;:22;;;;:::i;:::-;19320:9;:17;19330:6;19320:17;;;;;;;;;;;;;;;:42;;;;19397:6;19373:9;:20;19383:9;19373:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;19438:9;19421:35;;19430:6;19421:35;;;19449:6;19421:35;;;;;;:::i;:::-;;;;;;;;18860:604;;;;:::o;22375:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:118::-;7005:24;7023:5;7005:24;:::i;:::-;7000:3;6993:37;6983:53;;:::o;7042:112::-;7125:22;7141:5;7125:22;:::i;:::-;7120:3;7113:35;7103:51;;:::o;7160:222::-;7253:4;7291:2;7280:9;7276:18;7268:26;;7304:71;7372:1;7361:9;7357:17;7348:6;7304:71;:::i;:::-;7258:124;;;;:::o;7388:210::-;7475:4;7513:2;7502:9;7498:18;7490:26;;7526:65;7588:1;7577:9;7573:17;7564:6;7526:65;:::i;:::-;7480:118;;;;:::o;7604:313::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:78;7905:4;7896:6;7832:78;:::i;:::-;7824:86;;7722:195;;;;:::o;7923:419::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:131;8330:4;8204:131;:::i;:::-;8196:139;;8094:248;;;:::o;8348:419::-;8514:4;8552:2;8541:9;8537:18;8529:26;;8601:9;8595:4;8591:20;8587:1;8576:9;8572:17;8565:47;8629:131;8755:4;8629:131;:::i;:::-;8621:139;;8519:248;;;:::o;8773:419::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8944:248;;;:::o;9198:419::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9451:9;9445:4;9441:20;9437:1;9426:9;9422:17;9415:47;9479:131;9605:4;9479:131;:::i;:::-;9471:139;;9369:248;;;:::o;9623:419::-;9789:4;9827:2;9816:9;9812:18;9804:26;;9876:9;9870:4;9866:20;9862:1;9851:9;9847:17;9840:47;9904:131;10030:4;9904:131;:::i;:::-;9896:139;;9794:248;;;:::o;10048:419::-;10214:4;10252:2;10241:9;10237:18;10229:26;;10301:9;10295:4;10291:20;10287:1;10276:9;10272:17;10265:47;10329:131;10455:4;10329:131;:::i;:::-;10321:139;;10219:248;;;:::o;10473:419::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10644:248;;;:::o;10898:419::-;11064:4;11102:2;11091:9;11087:18;11079:26;;11151:9;11145:4;11141:20;11137:1;11126:9;11122:17;11115:47;11179:131;11305:4;11179:131;:::i;:::-;11171:139;;11069:248;;;:::o;11323:419::-;11489:4;11527:2;11516:9;11512:18;11504:26;;11576:9;11570:4;11566:20;11562:1;11551:9;11547:17;11540:47;11604:131;11730:4;11604:131;:::i;:::-;11596:139;;11494:248;;;:::o;11748:419::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11919:248;;;:::o;12173:419::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12344:248;;;:::o;12598:222::-;12691:4;12729:2;12718:9;12714:18;12706:26;;12742:71;12810:1;12799:9;12795:17;12786:6;12742:71;:::i;:::-;12696:124;;;;:::o;12826:214::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:67;13030:1;13019:9;13015:17;13006:6;12966:67;:::i;:::-;12920:120;;;;:::o;13046:99::-;13098:6;13132:5;13126:12;13116:22;;13105:40;;;:::o;13151:169::-;13235:11;13269:6;13264:3;13257:19;13309:4;13304:3;13300:14;13285:29;;13247:73;;;;:::o;13326:305::-;13366:3;13385:20;13403:1;13385:20;:::i;:::-;13380:25;;13419:20;13437:1;13419:20;:::i;:::-;13414:25;;13573:1;13505:66;13501:74;13498:1;13495:81;13492:2;;;13579:18;;:::i;:::-;13492:2;13623:1;13620;13616:9;13609:16;;13370:261;;;;:::o;13637:191::-;13677:4;13697:20;13715:1;13697:20;:::i;:::-;13692:25;;13731:20;13749:1;13731:20;:::i;:::-;13726:25;;13770:1;13767;13764:8;13761:2;;;13775:18;;:::i;:::-;13761:2;13820:1;13817;13813:9;13805:17;;13682:146;;;;:::o;13834:96::-;13871:7;13900:24;13918:5;13900:24;:::i;:::-;13889:35;;13879:51;;;:::o;13936:90::-;13970:7;14013:5;14006:13;13999:21;13988:32;;13978:48;;;:::o;14032:126::-;14069:7;14109:42;14102:5;14098:54;14087:65;;14077:81;;;:::o;14164:77::-;14201:7;14230:5;14219:16;;14209:32;;;:::o;14247:86::-;14282:7;14322:4;14315:5;14311:16;14300:27;;14290:43;;;:::o;14339:307::-;14407:1;14417:113;14431:6;14428:1;14425:13;14417:113;;;14516:1;14511:3;14507:11;14501:18;14497:1;14492:3;14488:11;14481:39;14453:2;14450:1;14446:10;14441:15;;14417:113;;;14548:6;14545:1;14542:13;14539:2;;;14628:1;14619:6;14614:3;14610:16;14603:27;14539:2;14388:258;;;;:::o;14652:320::-;14696:6;14733:1;14727:4;14723:12;14713:22;;14780:1;14774:4;14770:12;14801:18;14791:2;;14857:4;14849:6;14845:17;14835:27;;14791:2;14919;14911:6;14908:14;14888:18;14885:38;14882:2;;;14938:18;;:::i;:::-;14882:2;14703:269;;;;:::o;14978:180::-;15026:77;15023:1;15016:88;15123:4;15120:1;15113:15;15147:4;15144:1;15137:15;15164:180;15212:77;15209:1;15202:88;15309:4;15306:1;15299:15;15333:4;15330:1;15323:15;15350:102;15391:6;15442:2;15438:7;15433:2;15426:5;15422:14;15418:28;15408:38;;15398:54;;;:::o;15458:222::-;15598:34;15594:1;15586:6;15582:14;15575:58;15667:5;15662:2;15654:6;15650:15;15643:30;15564:116;:::o;15686:225::-;15826:34;15822:1;15814:6;15810:14;15803:58;15895:8;15890:2;15882:6;15878:15;15871:33;15792:119;:::o;15917:221::-;16057:34;16053:1;16045:6;16041:14;16034:58;16126:4;16121:2;16113:6;16109:15;16102:29;16023:115;:::o;16144:225::-;16284:34;16280:1;16272:6;16268:14;16261:58;16353:8;16348:2;16340:6;16336:15;16329:33;16250:119;:::o;16375:227::-;16515:34;16511:1;16503:6;16499:14;16492:58;16584:10;16579:2;16571:6;16567:15;16560:35;16481:121;:::o;16608:182::-;16748:34;16744:1;16736:6;16732:14;16725:58;16714:76;:::o;16796:224::-;16936:34;16932:1;16924:6;16920:14;16913:58;17005:7;17000:2;16992:6;16988:15;16981:32;16902:118;:::o;17026:223::-;17166:34;17162:1;17154:6;17150:14;17143:58;17235:6;17230:2;17222:6;17218:15;17211:31;17132:117;:::o;17255:181::-;17395:33;17391:1;17383:6;17379:14;17372:57;17361:75;:::o;17442:222::-;17582:34;17578:1;17570:6;17566:14;17559:58;17651:5;17646:2;17638:6;17634:15;17627:30;17548:116;:::o;17670:224::-;17810:34;17806:1;17798:6;17794:14;17787:58;17879:7;17874:2;17866:6;17862:15;17855:32;17776:118;:::o;17900:122::-;17973:24;17991:5;17973:24;:::i;:::-;17966:5;17963:35;17953:2;;18012:1;18009;18002:12;17953:2;17943:79;:::o;18028:122::-;18101:24;18119:5;18101:24;:::i;:::-;18094:5;18091:35;18081:2;;18140:1;18137;18130:12;18081:2;18071:79;:::o

Swarm Source

ipfs://15b3fcba7917b6c891c863c7016ff646edde315732565be449441cfb070478d1
Loading