ETH Price: $2,464.97 (+5.71%)

Token

LEARNtoken (LEARN)
 

Overview

Max Total Supply

100,000,000 LEARN

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
48,112,853.31 LEARN

Value
$0.00
0x92d5AF3291F6AB19ED349ECb08D10e8279d87Aea
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LEARNtoken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/math/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

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 generally not needed starting with Solidity 0.8, since 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;
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


/**
 * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

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

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

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

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

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


// File @openzeppelin/contracts/interfaces/[email protected]



// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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


// File @openzeppelin/contracts/utils/[email protected]



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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]




/**
 * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}


// File @openzeppelin/contracts/access/[email protected]


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

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

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

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

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

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


// File contracts/LearnToken.sol


contract LEARNtoken is IERC20, ERC20, Ownable {
 
    using SafeMath for uint256;

    uint256 public maxsupply;

    address public partnershipaddress; // for token-swaps with other crypto communities and projects
    address public eventsaddress; // for LEARN give-aways at CLL events
    address public getlearntaddress; // for LEARN gifts to CLL students
    address public wholesalepurchaseaddress; // for wholesale LEARN purchases from CLL

   constructor(uint256 _maxsupply, address _partnershipaddress, address _eventsaddress, address _getlearntaddress, address _wholesalepurchaseaddress) 
   ERC20("LEARNtoken", "LEARN") {
	maxsupply = _maxsupply;
    partnershipaddress = _partnershipaddress;
    eventsaddress = _eventsaddress;
    getlearntaddress = _getlearntaddress;
    wholesalepurchaseaddress = _wholesalepurchaseaddress;

	_mint(msg.sender, _maxsupply.div(100).mul(20)); // tlogs.eth receives 20% founder allocation
    _mint(partnershipaddress, _maxsupply.div(100).mul(20)); // 20% reserved by CLL for strategic partnerships
    _mint(eventsaddress, _maxsupply.div(100).mul(20)); // 20% reserved for CLL event giveaways
    _mint(getlearntaddress, _maxsupply.div(100).mul(20)); // 20% reserved for CLL student gifts
    _mint(wholesalepurchaseaddress, _maxsupply.div(100).mul(20)); // 20% reserved by CLL for wholesale purchase
   }

    function burnlearn(uint256 _burnqty) public {
        _burn (msg.sender, _burnqty);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxsupply","type":"uint256"},{"internalType":"address","name":"_partnershipaddress","type":"address"},{"internalType":"address","name":"_eventsaddress","type":"address"},{"internalType":"address","name":"_getlearntaddress","type":"address"},{"internalType":"address","name":"_wholesalepurchaseaddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnqty","type":"uint256"}],"name":"burnlearn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eventsaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getlearntaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"maxsupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"partnershipaddress","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"wholesalepurchaseaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002816380380620028168339818101604052810190620000379190620007c9565b6040518060400160405280600a81526020017f4c4541524e746f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c4541524e0000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000674565b508060049080519060200190620000d492919062000674565b505050620000f7620000eb620003f360201b60201c565b620003fb60201b60201c565b8460068190555083600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000248336200023c60146200022860648a620004c160201b62000a521790919060201c565b620004d960201b62000a681790919060201c565b620004f160201b60201c565b620002b0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002a460146200029060648a620004c160201b62000a521790919060201c565b620004d960201b62000a681790919060201c565b620004f160201b60201c565b62000318600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200030c6014620002f860648a620004c160201b62000a521790919060201c565b620004d960201b62000a681790919060201c565b620004f160201b60201c565b62000380600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200037460146200036060648a620004c160201b62000a521790919060201c565b620004d960201b62000a681790919060201c565b620004f160201b60201c565b620003e8600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620003dc6014620003c860648a620004c160201b62000a521790919060201c565b620004d960201b62000a681790919060201c565b620004f160201b60201c565b505050505062000abb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620004d19190620008af565b905092915050565b60008183620004e99190620008e7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000564576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200055b90620009a9565b60405180910390fd5b62000578600083836200066a60201b60201c565b80600260008282546200058c9190620009cb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005e39190620009cb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200064a919062000a39565b60405180910390a362000666600083836200066f60201b60201c565b5050565b505050565b505050565b828054620006829062000a85565b90600052602060002090601f016020900481019282620006a65760008555620006f2565b82601f10620006c157805160ff1916838001178555620006f2565b82800160010185558215620006f2579182015b82811115620006f1578251825591602001919060010190620006d4565b5b50905062000701919062000705565b5090565b5b808211156200072057600081600090555060010162000706565b5090565b600080fd5b6000819050919050565b6200073e8162000729565b81146200074a57600080fd5b50565b6000815190506200075e8162000733565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620007918262000764565b9050919050565b620007a38162000784565b8114620007af57600080fd5b50565b600081519050620007c38162000798565b92915050565b600080600080600060a08688031215620007e857620007e762000724565b5b6000620007f8888289016200074d565b95505060206200080b88828901620007b2565b94505060406200081e88828901620007b2565b93505060606200083188828901620007b2565b92505060806200084488828901620007b2565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008bc8262000729565b9150620008c98362000729565b925082620008dc57620008db62000851565b5b828204905092915050565b6000620008f48262000729565b9150620009018362000729565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200093d576200093c62000880565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000991601f8362000948565b91506200099e8262000959565b602082019050919050565b60006020820190508181036000830152620009c48162000982565b9050919050565b6000620009d88262000729565b9150620009e58362000729565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a1d5762000a1c62000880565b5b828201905092915050565b62000a338162000729565b82525050565b600060208201905062000a50600083018462000a28565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a9e57607f821691505b6020821081141562000ab55762000ab462000a56565b5b50919050565b611d4b8062000acb6000396000f3fe608060405234801561001057600080fd5b506004361061012b5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610338578063b06bb13b14610368578063d7beaa2f14610384578063dd62ed3e146103a2578063f2fde38b146103d25761012b565b8063715018a6146102a45780638da5cb5b146102ae5780638de544ac146102cc57806395d89b41146102ea578063a457c2d7146103085761012b565b80632b08c022116100f45780632b08c022146101ea578063313ce5671461020857806339509351146102265780634b6406d11461025657806370a08231146102745761012b565b80625645641461013057806306fdde031461014e578063095ea7b31461016c57806318160ddd1461019c57806323b872dd146101ba575b600080fd5b6101386103ee565b6040516101459190611246565b60405180910390f35b610156610414565b60405161016391906112fa565b60405180910390f35b61018660048036038101906101819190611383565b6104a6565b60405161019391906113de565b60405180910390f35b6101a46104c9565b6040516101b19190611408565b60405180910390f35b6101d460048036038101906101cf9190611423565b6104d3565b6040516101e191906113de565b60405180910390f35b6101f2610502565b6040516101ff9190611246565b60405180910390f35b610210610528565b60405161021d9190611492565b60405180910390f35b610240600480360381019061023b9190611383565b610531565b60405161024d91906113de565b60405180910390f35b61025e6105db565b60405161026b9190611408565b60405180910390f35b61028e600480360381019061028991906114ad565b6105e1565b60405161029b9190611408565b60405180910390f35b6102ac610629565b005b6102b66106b1565b6040516102c39190611246565b60405180910390f35b6102d46106db565b6040516102e19190611246565b60405180910390f35b6102f2610701565b6040516102ff91906112fa565b60405180910390f35b610322600480360381019061031d9190611383565b610793565b60405161032f91906113de565b60405180910390f35b610352600480360381019061034d9190611383565b61087d565b60405161035f91906113de565b60405180910390f35b610382600480360381019061037d91906114da565b6108a0565b005b61038c6108ad565b6040516103999190611246565b60405180910390f35b6103bc60048036038101906103b79190611507565b6108d3565b6040516103c99190611408565b60405180910390f35b6103ec60048036038101906103e791906114ad565b61095a565b005b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461042390611576565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611576565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610a7e565b90506104be818585610a86565b600191505092915050565b6000600254905090565b6000806104de610a7e565b90506104eb858285610c51565b6104f6858585610cdd565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061053c610a7e565b90506105d0818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cb91906115d7565b610a86565b600191505092915050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610631610a7e565b73ffffffffffffffffffffffffffffffffffffffff1661064f6106b1565b73ffffffffffffffffffffffffffffffffffffffff16146106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611679565b60405180910390fd5b6106af6000610f5e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461071090611576565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90611576565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610a7e565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b9061170b565b60405180910390fd5b6108718286868403610a86565b60019250505092915050565b600080610888610a7e565b9050610895818585610cdd565b600191505092915050565b6108aa3382611024565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610962610a7e565b73ffffffffffffffffffffffffffffffffffffffff166109806106b1565b73ffffffffffffffffffffffffffffffffffffffff16146109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90611679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061179d565b60405180910390fd5b610a4f81610f5e565b50565b60008183610a6091906117ec565b905092915050565b60008183610a76919061181d565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906118e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061197b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c449190611408565b60405180910390a3505050565b6000610c5d84846108d3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd75781811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906119e7565b60405180910390fd5b610cd68484848403610a86565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490611a79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611b0b565b60405180910390fd5b610dc88383836111fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590611b9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee191906115d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f459190611408565b60405180910390a3610f58848484611200565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90611c2f565b60405180910390fd5b6110a0826000836111fb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90611cc1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461117d9190611ce1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e29190611408565b60405180910390a36111f683600084611200565b505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061123082611205565b9050919050565b61124081611225565b82525050565b600060208201905061125b6000830184611237565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561129b578082015181840152602081019050611280565b838111156112aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006112cc82611261565b6112d6818561126c565b93506112e681856020860161127d565b6112ef816112b0565b840191505092915050565b6000602082019050818103600083015261131481846112c1565b905092915050565b600080fd5b61132a81611225565b811461133557600080fd5b50565b60008135905061134781611321565b92915050565b6000819050919050565b6113608161134d565b811461136b57600080fd5b50565b60008135905061137d81611357565b92915050565b6000806040838503121561139a5761139961131c565b5b60006113a885828601611338565b92505060206113b98582860161136e565b9150509250929050565b60008115159050919050565b6113d8816113c3565b82525050565b60006020820190506113f360008301846113cf565b92915050565b6114028161134d565b82525050565b600060208201905061141d60008301846113f9565b92915050565b60008060006060848603121561143c5761143b61131c565b5b600061144a86828701611338565b935050602061145b86828701611338565b925050604061146c8682870161136e565b9150509250925092565b600060ff82169050919050565b61148c81611476565b82525050565b60006020820190506114a76000830184611483565b92915050565b6000602082840312156114c3576114c261131c565b5b60006114d184828501611338565b91505092915050565b6000602082840312156114f0576114ef61131c565b5b60006114fe8482850161136e565b91505092915050565b6000806040838503121561151e5761151d61131c565b5b600061152c85828601611338565b925050602061153d85828601611338565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158e57607f821691505b602082108114156115a2576115a1611547565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e28261134d565b91506115ed8361134d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611622576116216115a8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061166360208361126c565b915061166e8261162d565b602082019050919050565b6000602082019050818103600083015261169281611656565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116f560258361126c565b915061170082611699565b604082019050919050565b60006020820190508181036000830152611724816116e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061178760268361126c565b91506117928261172b565b604082019050919050565b600060208201905081810360008301526117b68161177a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117f78261134d565b91506118028361134d565b925082611812576118116117bd565b5b828204905092915050565b60006118288261134d565b91506118338361134d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561186c5761186b6115a8565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118d360248361126c565b91506118de82611877565b604082019050919050565b60006020820190508181036000830152611902816118c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061196560228361126c565b915061197082611909565b604082019050919050565b6000602082019050818103600083015261199481611958565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119d1601d8361126c565b91506119dc8261199b565b602082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a6360258361126c565b9150611a6e82611a07565b604082019050919050565b60006020820190508181036000830152611a9281611a56565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611af560238361126c565b9150611b0082611a99565b604082019050919050565b60006020820190508181036000830152611b2481611ae8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b8760268361126c565b9150611b9282611b2b565b604082019050919050565b60006020820190508181036000830152611bb681611b7a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1960218361126c565b9150611c2482611bbd565b604082019050919050565b60006020820190508181036000830152611c4881611c0c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cab60228361126c565b9150611cb682611c4f565b604082019050919050565b60006020820190508181036000830152611cda81611c9e565b9050919050565b6000611cec8261134d565b9150611cf78361134d565b925082821015611d0a57611d096115a8565b5b82820390509291505056fea2646970667358221220ff6f41fb6233a742c7314a3e195047d66fc6bc371e2bd2610c6779d42a7ba40c64736f6c634300080a003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000e0f602fd7d47c72ed8199899bab11e20169fca510000000000000000000000008bd6a734ebc98ab720bc845cfa2652045b57e5db0000000000000000000000001b0ae664d3351c2a554a5f6de1935342887f8f8e0000000000000000000000008bcf361a70a3cf2a75636c7e8f7e316bb610fb9c

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012b5760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610338578063b06bb13b14610368578063d7beaa2f14610384578063dd62ed3e146103a2578063f2fde38b146103d25761012b565b8063715018a6146102a45780638da5cb5b146102ae5780638de544ac146102cc57806395d89b41146102ea578063a457c2d7146103085761012b565b80632b08c022116100f45780632b08c022146101ea578063313ce5671461020857806339509351146102265780634b6406d11461025657806370a08231146102745761012b565b80625645641461013057806306fdde031461014e578063095ea7b31461016c57806318160ddd1461019c57806323b872dd146101ba575b600080fd5b6101386103ee565b6040516101459190611246565b60405180910390f35b610156610414565b60405161016391906112fa565b60405180910390f35b61018660048036038101906101819190611383565b6104a6565b60405161019391906113de565b60405180910390f35b6101a46104c9565b6040516101b19190611408565b60405180910390f35b6101d460048036038101906101cf9190611423565b6104d3565b6040516101e191906113de565b60405180910390f35b6101f2610502565b6040516101ff9190611246565b60405180910390f35b610210610528565b60405161021d9190611492565b60405180910390f35b610240600480360381019061023b9190611383565b610531565b60405161024d91906113de565b60405180910390f35b61025e6105db565b60405161026b9190611408565b60405180910390f35b61028e600480360381019061028991906114ad565b6105e1565b60405161029b9190611408565b60405180910390f35b6102ac610629565b005b6102b66106b1565b6040516102c39190611246565b60405180910390f35b6102d46106db565b6040516102e19190611246565b60405180910390f35b6102f2610701565b6040516102ff91906112fa565b60405180910390f35b610322600480360381019061031d9190611383565b610793565b60405161032f91906113de565b60405180910390f35b610352600480360381019061034d9190611383565b61087d565b60405161035f91906113de565b60405180910390f35b610382600480360381019061037d91906114da565b6108a0565b005b61038c6108ad565b6040516103999190611246565b60405180910390f35b6103bc60048036038101906103b79190611507565b6108d3565b6040516103c99190611408565b60405180910390f35b6103ec60048036038101906103e791906114ad565b61095a565b005b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606003805461042390611576565b80601f016020809104026020016040519081016040528092919081815260200182805461044f90611576565b801561049c5780601f106104715761010080835404028352916020019161049c565b820191906000526020600020905b81548152906001019060200180831161047f57829003601f168201915b5050505050905090565b6000806104b1610a7e565b90506104be818585610a86565b600191505092915050565b6000600254905090565b6000806104de610a7e565b90506104eb858285610c51565b6104f6858585610cdd565b60019150509392505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061053c610a7e565b90506105d0818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105cb91906115d7565b610a86565b600191505092915050565b60065481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610631610a7e565b73ffffffffffffffffffffffffffffffffffffffff1661064f6106b1565b73ffffffffffffffffffffffffffffffffffffffff16146106a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069c90611679565b60405180910390fd5b6106af6000610f5e565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461071090611576565b80601f016020809104026020016040519081016040528092919081815260200182805461073c90611576565b80156107895780601f1061075e57610100808354040283529160200191610789565b820191906000526020600020905b81548152906001019060200180831161076c57829003601f168201915b5050505050905090565b60008061079e610a7e565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b9061170b565b60405180910390fd5b6108718286868403610a86565b60019250505092915050565b600080610888610a7e565b9050610895818585610cdd565b600191505092915050565b6108aa3382611024565b50565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610962610a7e565b73ffffffffffffffffffffffffffffffffffffffff166109806106b1565b73ffffffffffffffffffffffffffffffffffffffff16146109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90611679565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3d9061179d565b60405180910390fd5b610a4f81610f5e565b50565b60008183610a6091906117ec565b905092915050565b60008183610a76919061181d565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906118e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5d9061197b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c449190611408565b60405180910390a3505050565b6000610c5d84846108d3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd75781811015610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc0906119e7565b60405180910390fd5b610cd68484848403610a86565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4490611a79565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db490611b0b565b60405180910390fd5b610dc88383836111fb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4590611b9d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ee191906115d7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f459190611408565b60405180910390a3610f58848484611200565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90611c2f565b60405180910390fd5b6110a0826000836111fb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90611cc1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461117d9190611ce1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e29190611408565b60405180910390a36111f683600084611200565b505050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061123082611205565b9050919050565b61124081611225565b82525050565b600060208201905061125b6000830184611237565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561129b578082015181840152602081019050611280565b838111156112aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006112cc82611261565b6112d6818561126c565b93506112e681856020860161127d565b6112ef816112b0565b840191505092915050565b6000602082019050818103600083015261131481846112c1565b905092915050565b600080fd5b61132a81611225565b811461133557600080fd5b50565b60008135905061134781611321565b92915050565b6000819050919050565b6113608161134d565b811461136b57600080fd5b50565b60008135905061137d81611357565b92915050565b6000806040838503121561139a5761139961131c565b5b60006113a885828601611338565b92505060206113b98582860161136e565b9150509250929050565b60008115159050919050565b6113d8816113c3565b82525050565b60006020820190506113f360008301846113cf565b92915050565b6114028161134d565b82525050565b600060208201905061141d60008301846113f9565b92915050565b60008060006060848603121561143c5761143b61131c565b5b600061144a86828701611338565b935050602061145b86828701611338565b925050604061146c8682870161136e565b9150509250925092565b600060ff82169050919050565b61148c81611476565b82525050565b60006020820190506114a76000830184611483565b92915050565b6000602082840312156114c3576114c261131c565b5b60006114d184828501611338565b91505092915050565b6000602082840312156114f0576114ef61131c565b5b60006114fe8482850161136e565b91505092915050565b6000806040838503121561151e5761151d61131c565b5b600061152c85828601611338565b925050602061153d85828601611338565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158e57607f821691505b602082108114156115a2576115a1611547565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115e28261134d565b91506115ed8361134d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611622576116216115a8565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061166360208361126c565b915061166e8261162d565b602082019050919050565b6000602082019050818103600083015261169281611656565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116f560258361126c565b915061170082611699565b604082019050919050565b60006020820190508181036000830152611724816116e8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061178760268361126c565b91506117928261172b565b604082019050919050565b600060208201905081810360008301526117b68161177a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006117f78261134d565b91506118028361134d565b925082611812576118116117bd565b5b828204905092915050565b60006118288261134d565b91506118338361134d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561186c5761186b6115a8565b5b828202905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006118d360248361126c565b91506118de82611877565b604082019050919050565b60006020820190508181036000830152611902816118c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061196560228361126c565b915061197082611909565b604082019050919050565b6000602082019050818103600083015261199481611958565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006119d1601d8361126c565b91506119dc8261199b565b602082019050919050565b60006020820190508181036000830152611a00816119c4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a6360258361126c565b9150611a6e82611a07565b604082019050919050565b60006020820190508181036000830152611a9281611a56565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611af560238361126c565b9150611b0082611a99565b604082019050919050565b60006020820190508181036000830152611b2481611ae8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b8760268361126c565b9150611b9282611b2b565b604082019050919050565b60006020820190508181036000830152611bb681611b7a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c1960218361126c565b9150611c2482611bbd565b604082019050919050565b60006020820190508181036000830152611c4881611c0c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611cab60228361126c565b9150611cb682611c4f565b604082019050919050565b60006020820190508181036000830152611cda81611c9e565b9050919050565b6000611cec8261134d565b9150611cf78361134d565b925082821015611d0a57611d096115a8565b5b82820390509291505056fea2646970667358221220ff6f41fb6233a742c7314a3e195047d66fc6bc371e2bd2610c6779d42a7ba40c64736f6c634300080a0033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000000000000000000000000000e0f602fd7d47c72ed8199899bab11e20169fca510000000000000000000000008bd6a734ebc98ab720bc845cfa2652045b57e5db0000000000000000000000001b0ae664d3351c2a554a5f6de1935342887f8f8e0000000000000000000000008bcf361a70a3cf2a75636c7e8f7e316bb610fb9c

-----Decoded View---------------
Arg [0] : _maxsupply (uint256): 100000000000000000000000000
Arg [1] : _partnershipaddress (address): 0xe0F602FD7D47c72eD8199899BaB11e20169FCa51
Arg [2] : _eventsaddress (address): 0x8bD6A734EbC98ab720bc845CFA2652045B57e5db
Arg [3] : _getlearntaddress (address): 0x1B0ae664D3351c2a554A5F6de1935342887F8f8e
Arg [4] : _wholesalepurchaseaddress (address): 0x8BCf361A70a3Cf2A75636C7E8f7e316Bb610fb9c

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Arg [1] : 000000000000000000000000e0f602fd7d47c72ed8199899bab11e20169fca51
Arg [2] : 0000000000000000000000008bd6a734ebc98ab720bc845cfa2652045b57e5db
Arg [3] : 0000000000000000000000001b0ae664d3351c2a554a5f6de1935342887f8f8e
Arg [4] : 0000000000000000000000008bcf361a70a3cf2a75636c7e8f7e316bb610fb9c


Deployed Bytecode Sourcemap

26771:1479:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27070:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13484:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15835:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14604:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16616:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26997:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14446:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17320:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26862:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14775:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25914:103;;;:::i;:::-;;25263:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26895:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13703:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18063:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15108:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28154:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27143:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15364:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26172:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27070:31;;;;;;;;;;;;;:::o;13484:100::-;13538:13;13571:5;13564:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13484:100;:::o;15835:201::-;15918:4;15935:13;15951:12;:10;:12::i;:::-;15935:28;;15974:32;15983:5;15990:7;15999:6;15974:8;:32::i;:::-;16024:4;16017:11;;;15835:201;;;;:::o;14604:108::-;14665:7;14692:12;;14685:19;;14604:108;:::o;16616:295::-;16747:4;16764:15;16782:12;:10;:12::i;:::-;16764:30;;16805:38;16821:4;16827:7;16836:6;16805:15;:38::i;:::-;16854:27;16864:4;16870:2;16874:6;16854:9;:27::i;:::-;16899:4;16892:11;;;16616:295;;;;;:::o;26997:28::-;;;;;;;;;;;;;:::o;14446:93::-;14504:5;14529:2;14522:9;;14446:93;:::o;17320:240::-;17408:4;17425:13;17441:12;:10;:12::i;:::-;17425:28;;17464:66;17473:5;17480:7;17519:10;17489:11;:18;17501:5;17489:18;;;;;;;;;;;;;;;:27;17508:7;17489:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;17464:8;:66::i;:::-;17548:4;17541:11;;;17320:240;;;;:::o;26862:24::-;;;;:::o;14775:127::-;14849:7;14876:9;:18;14886:7;14876:18;;;;;;;;;;;;;;;;14869:25;;14775:127;;;:::o;25914:103::-;25494:12;:10;:12::i;:::-;25483:23;;:7;:5;:7::i;:::-;:23;;;25475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25979:30:::1;26006:1;25979:18;:30::i;:::-;25914:103::o:0;25263:87::-;25309:7;25336:6;;;;;;;;;;;25329:13;;25263:87;:::o;26895:33::-;;;;;;;;;;;;;:::o;13703:104::-;13759:13;13792:7;13785:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13703:104;:::o;18063:438::-;18156:4;18173:13;18189:12;:10;:12::i;:::-;18173:28;;18212:24;18239:11;:18;18251:5;18239:18;;;;;;;;;;;;;;;:27;18258:7;18239:27;;;;;;;;;;;;;;;;18212:54;;18305:15;18285:16;:35;;18277:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:60;18407:5;18414:7;18442:15;18423:16;:34;18398:8;:60::i;:::-;18489:4;18482:11;;;;18063:438;;;;:::o;15108:193::-;15187:4;15204:13;15220:12;:10;:12::i;:::-;15204:28;;15243;15253:5;15260:2;15264:6;15243:9;:28::i;:::-;15289:4;15282:11;;;15108:193;;;;:::o;28154:91::-;28209:28;28216:10;28228:8;28209:5;:28::i;:::-;28154:91;:::o;27143:39::-;;;;;;;;;;;;;:::o;15364:151::-;15453:7;15480:11;:18;15492:5;15480:18;;;;;;;;;;;;;;;:27;15499:7;15480:27;;;;;;;;;;;;;;;;15473:34;;15364:151;;;;:::o;26172:201::-;25494:12;:10;:12::i;:::-;25483:23;;:7;:5;:7::i;:::-;:23;;;25475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26281:1:::1;26261:22;;:8;:22;;;;26253:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26337:28;26356:8;26337:18;:28::i;:::-;26172:201:::0;:::o;4100:98::-;4158:7;4189:1;4185;:5;;;;:::i;:::-;4178:12;;4100:98;;;;:::o;3701:::-;3759:7;3790:1;3786;:5;;;;:::i;:::-;3779:12;;3701:98;;;;:::o;11220:::-;11273:7;11300:10;11293:17;;11220:98;:::o;21699:380::-;21852:1;21835:19;;:5;:19;;;;21827:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21933:1;21914:21;;:7;:21;;;;21906:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22017:6;21987:11;:18;21999:5;21987:18;;;;;;;;;;;;;;;:27;22006:7;21987:27;;;;;;;;;;;;;;;:36;;;;22055:7;22039:32;;22048:5;22039:32;;;22064:6;22039:32;;;;;;:::i;:::-;;;;;;;;21699:380;;;:::o;22366:453::-;22501:24;22528:25;22538:5;22545:7;22528:9;:25::i;:::-;22501:52;;22588:17;22568:16;:37;22564:248;;22650:6;22630:16;:26;;22622:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22734:51;22743:5;22750:7;22778:6;22759:16;:25;22734:8;:51::i;:::-;22564:248;22490:329;22366:453;;;:::o;18980:671::-;19127:1;19111:18;;:4;:18;;;;19103:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19204:1;19190:16;;:2;:16;;;;19182:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;19259:38;19280:4;19286:2;19290:6;19259:20;:38::i;:::-;19310:19;19332:9;:15;19342:4;19332:15;;;;;;;;;;;;;;;;19310:37;;19381:6;19366:11;:21;;19358:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;19498:6;19484:11;:20;19466:9;:15;19476:4;19466:15;;;;;;;;;;;;;;;:38;;;;19543:6;19526:9;:13;19536:2;19526:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;19582:2;19567:26;;19576:4;19567:26;;;19586:6;19567:26;;;;;;:::i;:::-;;;;;;;;19606:37;19626:4;19632:2;19636:6;19606:19;:37::i;:::-;19092:559;18980:671;;;:::o;26533:191::-;26607:16;26626:6;;;;;;;;;;;26607:25;;26652:8;26643:6;;:17;;;;;;;;;;;;;;;;;;26707:8;26676:40;;26697:8;26676:40;;;;;;;;;;;;26596:128;26533:191;:::o;20670:591::-;20773:1;20754:21;;:7;:21;;;;20746:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20826:49;20847:7;20864:1;20868:6;20826:20;:49::i;:::-;20888:22;20913:9;:18;20923:7;20913:18;;;;;;;;;;;;;;;;20888:43;;20968:6;20950:14;:24;;20942:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;21087:6;21070:14;:23;21049:9;:18;21059:7;21049:18;;;;;;;;;;;;;;;:44;;;;21131:6;21115:12;;:22;;;;;;;:::i;:::-;;;;;;;;21181:1;21155:37;;21164:7;21155:37;;;21185:6;21155:37;;;;;;:::i;:::-;;;;;;;;21205:48;21225:7;21242:1;21246:6;21205:19;:48::i;:::-;20735:526;20670:591;;:::o;23419:125::-;;;;:::o;24148:124::-;;;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:99::-;645:6;679:5;673:12;663:22;;593:99;;;:::o;698:169::-;782:11;816:6;811:3;804:19;856:4;851:3;847:14;832:29;;698:169;;;;:::o;873:307::-;941:1;951:113;965:6;962:1;959:13;951:113;;;1050:1;1045:3;1041:11;1035:18;1031:1;1026:3;1022:11;1015:39;987:2;984:1;980:10;975:15;;951:113;;;1082:6;1079:1;1076:13;1073:101;;;1162:1;1153:6;1148:3;1144:16;1137:27;1073:101;922:258;873:307;;;:::o;1186:102::-;1227:6;1278:2;1274:7;1269:2;1262:5;1258:14;1254:28;1244:38;;1186:102;;;:::o;1294:364::-;1382:3;1410:39;1443:5;1410:39;:::i;:::-;1465:71;1529:6;1524:3;1465:71;:::i;:::-;1458:78;;1545:52;1590:6;1585:3;1578:4;1571:5;1567:16;1545:52;:::i;:::-;1622:29;1644:6;1622:29;:::i;:::-;1617:3;1613:39;1606:46;;1386:272;1294:364;;;;:::o;1664:313::-;1777:4;1815:2;1804:9;1800:18;1792:26;;1864:9;1858:4;1854:20;1850:1;1839:9;1835:17;1828:47;1892:78;1965:4;1956:6;1892:78;:::i;:::-;1884:86;;1664:313;;;;:::o;2064:117::-;2173:1;2170;2163:12;2310:122;2383:24;2401:5;2383:24;:::i;:::-;2376:5;2373:35;2363:63;;2422:1;2419;2412:12;2363:63;2310:122;:::o;2438:139::-;2484:5;2522:6;2509:20;2500:29;;2538:33;2565:5;2538:33;:::i;:::-;2438:139;;;;:::o;2583:77::-;2620:7;2649:5;2638:16;;2583:77;;;:::o;2666:122::-;2739:24;2757:5;2739:24;:::i;:::-;2732:5;2729:35;2719:63;;2778:1;2775;2768:12;2719:63;2666:122;:::o;2794:139::-;2840:5;2878:6;2865:20;2856:29;;2894:33;2921:5;2894:33;:::i;:::-;2794:139;;;;:::o;2939:474::-;3007:6;3015;3064:2;3052:9;3043:7;3039:23;3035:32;3032:119;;;3070:79;;:::i;:::-;3032:119;3190:1;3215:53;3260:7;3251:6;3240:9;3236:22;3215:53;:::i;:::-;3205:63;;3161:117;3317:2;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3288:118;2939:474;;;;;:::o;3419:90::-;3453:7;3496:5;3489:13;3482:21;3471:32;;3419:90;;;:::o;3515:109::-;3596:21;3611:5;3596:21;:::i;:::-;3591:3;3584:34;3515:109;;:::o;3630:210::-;3717:4;3755:2;3744:9;3740:18;3732:26;;3768:65;3830:1;3819:9;3815:17;3806:6;3768:65;:::i;:::-;3630:210;;;;:::o;3846:118::-;3933:24;3951:5;3933:24;:::i;:::-;3928:3;3921:37;3846:118;;:::o;3970:222::-;4063:4;4101:2;4090:9;4086:18;4078:26;;4114:71;4182:1;4171:9;4167:17;4158:6;4114:71;:::i;:::-;3970:222;;;;:::o;4198:619::-;4275:6;4283;4291;4340:2;4328:9;4319:7;4315:23;4311:32;4308:119;;;4346:79;;:::i;:::-;4308:119;4466:1;4491:53;4536:7;4527:6;4516:9;4512:22;4491:53;:::i;:::-;4481:63;;4437:117;4593:2;4619:53;4664:7;4655:6;4644:9;4640:22;4619:53;:::i;:::-;4609:63;;4564:118;4721:2;4747:53;4792:7;4783:6;4772:9;4768:22;4747:53;:::i;:::-;4737:63;;4692:118;4198:619;;;;;:::o;4823:86::-;4858:7;4898:4;4891:5;4887:16;4876:27;;4823:86;;;:::o;4915:112::-;4998:22;5014:5;4998:22;:::i;:::-;4993:3;4986:35;4915:112;;:::o;5033:214::-;5122:4;5160:2;5149:9;5145:18;5137:26;;5173:67;5237:1;5226:9;5222:17;5213:6;5173:67;:::i;:::-;5033:214;;;;:::o;5253:329::-;5312:6;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5253:329;;;;:::o;5588:::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:182::-;7552:34;7548:1;7540:6;7536:14;7529:58;7412:182;:::o;7600:366::-;7742:3;7763:67;7827:2;7822:3;7763:67;:::i;:::-;7756:74;;7839:93;7928:3;7839:93;:::i;:::-;7957:2;7952:3;7948:12;7941:19;;7600:366;;;:::o;7972:419::-;8138:4;8176:2;8165:9;8161:18;8153:26;;8225:9;8219:4;8215:20;8211:1;8200:9;8196:17;8189:47;8253:131;8379:4;8253:131;:::i;:::-;8245:139;;7972:419;;;:::o;8397:224::-;8537:34;8533:1;8525:6;8521:14;8514:58;8606:7;8601:2;8593:6;8589:15;8582:32;8397:224;:::o;8627:366::-;8769:3;8790:67;8854:2;8849:3;8790:67;:::i;:::-;8783:74;;8866:93;8955:3;8866:93;:::i;:::-;8984:2;8979:3;8975:12;8968:19;;8627:366;;;:::o;8999:419::-;9165:4;9203:2;9192:9;9188:18;9180:26;;9252:9;9246:4;9242:20;9238:1;9227:9;9223:17;9216:47;9280:131;9406:4;9280:131;:::i;:::-;9272:139;;8999:419;;;:::o;9424:225::-;9564:34;9560:1;9552:6;9548:14;9541:58;9633:8;9628:2;9620:6;9616:15;9609:33;9424:225;:::o;9655:366::-;9797:3;9818:67;9882:2;9877:3;9818:67;:::i;:::-;9811:74;;9894:93;9983:3;9894:93;:::i;:::-;10012:2;10007:3;10003:12;9996:19;;9655:366;;;:::o;10027:419::-;10193:4;10231:2;10220:9;10216:18;10208:26;;10280:9;10274:4;10270:20;10266:1;10255:9;10251:17;10244:47;10308:131;10434:4;10308:131;:::i;:::-;10300:139;;10027:419;;;:::o;10452:180::-;10500:77;10497:1;10490:88;10597:4;10594:1;10587:15;10621:4;10618:1;10611:15;10638:185;10678:1;10695:20;10713:1;10695:20;:::i;:::-;10690:25;;10729:20;10747:1;10729:20;:::i;:::-;10724:25;;10768:1;10758:35;;10773:18;;:::i;:::-;10758:35;10815:1;10812;10808:9;10803:14;;10638:185;;;;:::o;10829:348::-;10869:7;10892:20;10910:1;10892:20;:::i;:::-;10887:25;;10926:20;10944:1;10926:20;:::i;:::-;10921:25;;11114:1;11046:66;11042:74;11039:1;11036:81;11031:1;11024:9;11017:17;11013:105;11010:131;;;11121:18;;:::i;:::-;11010:131;11169:1;11166;11162:9;11151:20;;10829:348;;;;:::o;11183:223::-;11323:34;11319:1;11311:6;11307:14;11300:58;11392:6;11387:2;11379:6;11375:15;11368:31;11183:223;:::o;11412:366::-;11554:3;11575:67;11639:2;11634:3;11575:67;:::i;:::-;11568:74;;11651:93;11740:3;11651:93;:::i;:::-;11769:2;11764:3;11760:12;11753:19;;11412:366;;;:::o;11784:419::-;11950:4;11988:2;11977:9;11973:18;11965:26;;12037:9;12031:4;12027:20;12023:1;12012:9;12008:17;12001:47;12065:131;12191:4;12065:131;:::i;:::-;12057:139;;11784:419;;;:::o;12209:221::-;12349:34;12345:1;12337:6;12333:14;12326:58;12418:4;12413:2;12405:6;12401:15;12394:29;12209:221;:::o;12436:366::-;12578:3;12599:67;12663:2;12658:3;12599:67;:::i;:::-;12592:74;;12675:93;12764:3;12675:93;:::i;:::-;12793:2;12788:3;12784:12;12777:19;;12436:366;;;:::o;12808:419::-;12974:4;13012:2;13001:9;12997:18;12989:26;;13061:9;13055:4;13051:20;13047:1;13036:9;13032:17;13025:47;13089:131;13215:4;13089:131;:::i;:::-;13081:139;;12808:419;;;:::o;13233:179::-;13373:31;13369:1;13361:6;13357:14;13350:55;13233:179;:::o;13418:366::-;13560:3;13581:67;13645:2;13640:3;13581:67;:::i;:::-;13574:74;;13657:93;13746:3;13657:93;:::i;:::-;13775:2;13770:3;13766:12;13759:19;;13418:366;;;:::o;13790:419::-;13956:4;13994:2;13983:9;13979:18;13971:26;;14043:9;14037:4;14033:20;14029:1;14018:9;14014:17;14007:47;14071:131;14197:4;14071:131;:::i;:::-;14063:139;;13790:419;;;:::o;14215:224::-;14355:34;14351:1;14343:6;14339:14;14332:58;14424:7;14419:2;14411:6;14407:15;14400:32;14215:224;:::o;14445:366::-;14587:3;14608:67;14672:2;14667:3;14608:67;:::i;:::-;14601:74;;14684:93;14773:3;14684:93;:::i;:::-;14802:2;14797:3;14793:12;14786:19;;14445:366;;;:::o;14817:419::-;14983:4;15021:2;15010:9;15006:18;14998:26;;15070:9;15064:4;15060:20;15056:1;15045:9;15041:17;15034:47;15098:131;15224:4;15098:131;:::i;:::-;15090:139;;14817:419;;;:::o;15242:222::-;15382:34;15378:1;15370:6;15366:14;15359:58;15451:5;15446:2;15438:6;15434:15;15427:30;15242:222;:::o;15470:366::-;15612:3;15633:67;15697:2;15692:3;15633:67;:::i;:::-;15626:74;;15709:93;15798:3;15709:93;:::i;:::-;15827:2;15822:3;15818:12;15811:19;;15470:366;;;:::o;15842:419::-;16008:4;16046:2;16035:9;16031:18;16023:26;;16095:9;16089:4;16085:20;16081:1;16070:9;16066:17;16059:47;16123:131;16249:4;16123:131;:::i;:::-;16115:139;;15842:419;;;:::o;16267:225::-;16407:34;16403:1;16395:6;16391:14;16384:58;16476:8;16471:2;16463:6;16459:15;16452:33;16267:225;:::o;16498:366::-;16640:3;16661:67;16725:2;16720:3;16661:67;:::i;:::-;16654:74;;16737:93;16826:3;16737:93;:::i;:::-;16855:2;16850:3;16846:12;16839:19;;16498:366;;;:::o;16870:419::-;17036:4;17074:2;17063:9;17059:18;17051:26;;17123:9;17117:4;17113:20;17109:1;17098:9;17094:17;17087:47;17151:131;17277:4;17151:131;:::i;:::-;17143:139;;16870:419;;;:::o;17295:220::-;17435:34;17431:1;17423:6;17419:14;17412:58;17504:3;17499:2;17491:6;17487:15;17480:28;17295:220;:::o;17521:366::-;17663:3;17684:67;17748:2;17743:3;17684:67;:::i;:::-;17677:74;;17760:93;17849:3;17760:93;:::i;:::-;17878:2;17873:3;17869:12;17862:19;;17521:366;;;:::o;17893:419::-;18059:4;18097:2;18086:9;18082:18;18074:26;;18146:9;18140:4;18136:20;18132:1;18121:9;18117:17;18110:47;18174:131;18300:4;18174:131;:::i;:::-;18166:139;;17893:419;;;:::o;18318:221::-;18458:34;18454:1;18446:6;18442:14;18435:58;18527:4;18522:2;18514:6;18510:15;18503:29;18318:221;:::o;18545:366::-;18687:3;18708:67;18772:2;18767:3;18708:67;:::i;:::-;18701:74;;18784:93;18873:3;18784:93;:::i;:::-;18902:2;18897:3;18893:12;18886:19;;18545:366;;;:::o;18917:419::-;19083:4;19121:2;19110:9;19106:18;19098:26;;19170:9;19164:4;19160:20;19156:1;19145:9;19141:17;19134:47;19198:131;19324:4;19198:131;:::i;:::-;19190:139;;18917:419;;;:::o;19342:191::-;19382:4;19402:20;19420:1;19402:20;:::i;:::-;19397:25;;19436:20;19454:1;19436:20;:::i;:::-;19431:25;;19475:1;19472;19469:8;19466:34;;;19480:18;;:::i;:::-;19466:34;19525:1;19522;19518:9;19510:17;;19342:191;;;;:::o

Swarm Source

ipfs://ff6f41fb6233a742c7314a3e195047d66fc6bc371e2bd2610c6779d42a7ba40c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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