ETH Price: $2,740.40 (-0.45%)

Token

TONKIT (TONT)
 

Overview

Max Total Supply

100,000,000 TONT

Holders

394

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (-13.87%)

Onchain Market Cap

$25,025.55

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A decentralized platform for tokenized asset management.

Market

Volume (24H):$555.71
Market Capitalization:$0.00
Circulating Supply:0.00 TONT
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume
1
Uniswap V2 (Ethereum)
0XAA8DA83B0B8FCA779C36F3E39FA93DF2A3906617-0XC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2$0.0003
0.0000001 Eth
$550.46
2,076,131.018 0XAA8DA83B0B8FCA779C36F3E39FA93DF2A3906617
100.0000%

Contract Source Code Verified (Exact Match)

Contract Name:
TONT

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : TONT.sol
/*
$TONT - TON Toolkit

PROJECT:
An advanced suite of both technical and non-technical tools to interact with the TON blockchain, designed for every level of proficiency.

The utility and purpose of the $TONT token can be explained in three contexts:
1) The first, most obvious one, is that by owning the token, you own a part of the project and its value proposal. This is necessary for DeFi projects - to be clearly engaged in the ever more competitive utility project market where vaporwave is wreaking havoc and actual blockchain development projects like $TONT are the rare gems.
2) The second utility of the token is to allow access to the tools themselves. Only by holding and staking the $TONT token will you be able to access the premium features of the toolkit, like bundling (which we designate formally as 'scooping'), project management, in-dApp bridge for Toncoin, and more. Those who do not hold the tokens can choose to pay high fees to use the platforms premium features — this makes holding tokens, and indeed staking them, the preferable option to access the toolkit. It drives adoption of the $TONT token as a serious, utility-based investment and creates an organic demand for it apart from the market fluctuations.
3) Thirdly, fees from the platform will be shared to users inside the staking contract. There will be no need to claim the rewards - they will be distributed directly in ETH. The same staking that allows you to use the tools also grants you rewards in ETH - pretty cool. The staking has no lock, and is completely real-time based with no counters or intervals. Your tokens are yours, you simply claim access by staking them as a commitment.

Read more about the project on the official website: tonkit.org

SOCIALS:
Official Website: https://tonkit.org
Telegram: https://t.me/TONKIT_portal
X: https://x.com/tontoolkit
https://www.youtube.com/@tontoolkit

CONTACT:
Development: [email protected]
Marketing: [email protected]
Legal: [email protected]
*/

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

// Latest OpenZeppelin Library Contract Standards used for ERC20 and Access Control
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol"; 

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

contract TONT is ERC20, Ownable {

    // Buy and Sell Tax set to 5%
    uint256 public constant BuySellTax = 5;

    // Uniswap Router and Pair Options and Wallets
    IUniswapV2Router02 private uniswapV2Router;
    address public uniswapV2Pair;
    mapping(address => bool) public isExempt;
    
    // Team and Marketing Wallets
    address private immutable marketingAddress;
    address private immutable taxAddress;

    // Generic Transaction Options
    uint256 public maxTransactionAmount;
    uint256 public maxTxSlowDown;
    bool private launch = false;
    bool private slowDown = true;
    uint256 private blockLaunch;
    uint256 private lastSellBlock;
    uint256 private sellCount;
    uint256 private minSwap;
    uint256 private maxSwap;
    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }

    // Token Initialization, Minting, and Distribution
    constructor(
        address _stakingPool,
        address _marketingAddress,
        address _taxAddress,
        address _private,
        address _tonReserve,
        address _cex
    ) ERC20("TONKIT", "TONT") Ownable() {
        uint256 totalSupply = 100000000 * 10**18; 
        
        // Immutable Addresses
        marketingAddress = _marketingAddress;
        taxAddress = _taxAddress;

        // Deployer and Team Exemptions
        isExempt[msg.sender] = true; 
        isExempt[address(this)] = true; 
        isExempt[_stakingPool] = true;
        isExempt[marketingAddress] = true; 
        isExempt[taxAddress] = true; 
        isExempt[_private] = true;
        isExempt[_tonReserve] = true;
        isExempt[_cex] = true;

        // Mint of the Supply
        _mint(_stakingPool, totalSupply * 4 / 100); // 4% to the Staking
        _mint(_cex, totalSupply * 8 / 100); // 8% to the CEX
        _mint(marketingAddress, totalSupply * 6 / 100); // 6% to the MW
        _mint(_tonReserve, totalSupply * 2 / 100); // 2% to Ton BRIDGE Reserve
        _mint(_private, totalSupply * 25 / 100); // 25% to the Owner
        _mint(msg.sender, totalSupply * 55 / 100); // 55% to the Deployer

        // Uniswap Router and Creating a Uniswap Pair
        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = address(
            IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH())
        );
        
        // Transaction Options
        maxTransactionAmount = totalSupply * 2 / 100;
        maxTxSlowDown = totalSupply * 5 / 1000; 
        maxSwap = 150000 * 10**18;
        minSwap = 25000 * 10**18;
    }


    // Function to Add Liquidity to the Pair
    function addLiquidity() external onlyOwner {
        _approve(address(this), address(uniswapV2Router), balanceOf(address(this)));
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function deactivateSlowDown() external onlyOwner {
        slowDown = false;
    }

    function getMaxCASwap() public view returns (uint256){
        return maxSwap / 10**decimals();
    }

    function getMinCASwap() public view returns (uint256){
        return minSwap / 10**decimals();
    }

    function setMaxCASwap(uint256 _maxSwap) external onlyOwner{
        maxSwap = _maxSwap * 10**decimals();
    }

    function setMinSwap(uint256 _minSwap) external onlyOwner{
        minSwap = _minSwap * 10**decimals();
    }

    function switchCaSell() external onlyOwner {
        if (inSwap){
            inSwap = false;
        } else {
            inSwap = true;
        }
    }

    function swapTokensEth(uint256 tokenAmount) internal lockTheSwap {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        
        // Pair Swap Path Options
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            taxAddress,
            block.timestamp
        );
    }

    // Override the Transfer Function to include Buy and Sell Tax and Transaction Options
    function _transfer(address from, address to, uint256 value) internal virtual override {
        if (!isExempt[from] && !isExempt[to]) {
            require(launch);
            uint256 tax = 0;
            
            if (slowDown && blockLaunch!=block.number){
                require(value <= maxTxSlowDown, "MAX TX LIMIT");
            } else {
                require(value <= maxTransactionAmount, "MAX TX LIMIT");
            }

            // Set Tax at Buy / Sell
            if (to == uniswapV2Pair) {
                tax = BuySellTax;
                uint256 tokensSwap = balanceOf(address(this));
                if (tokensSwap > minSwap && !inSwap) {
                    if (block.number > lastSellBlock) {
                        sellCount = 0;
                    }
                    if (sellCount < 3){
                        sellCount++;
                        lastSellBlock = block.number;
                        swapTokensEth(min(maxSwap, min(value, tokensSwap)));
                    }
                }
            } else if (from == uniswapV2Pair){
                tax = BuySellTax;
            }

            // Calculating amounts for taxes
            uint256 taxAmount = value * tax / 100; // Tax
            uint256 amountAfterTax = value - taxAmount;

            // Execute transfers
            if (taxAmount > 0){
                super._transfer(from, address(this), taxAmount);
            }
            super._transfer(from, to, amountAfterTax);
            return;
        }
        super._transfer(from, to, value);
    }


    function min(uint256 a, uint256 b) private pure returns (uint256){
      return (a>b)?b:a;
    }

    
    function enableTrading() external onlyOwner {
        launch = true;
        blockLaunch = block.number;
    }

    function setMaxTx(uint256 newMaxTx) external onlyOwner {
        maxTransactionAmount = newMaxTx * 10**decimals();
    }

    function removeAllLimits() external onlyOwner {
        maxTransactionAmount = totalSupply();
    }

    function exportETH() external {
        payable(marketingAddress).transfer(address(this).balance);
    }

    function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner {
        isExempt[wAddress] = isExcle;
    }

    receive() external payable {}
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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, 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;
    }

    /**
     * @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`.
     */
    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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 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 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 6 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stakingPool","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_private","type":"address"},{"internalType":"address","name":"_tonReserve","type":"address"},{"internalType":"address","name":"_cex","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":[],"name":"BuySellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addLiquidity","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":"deactivateSlowDown","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxSlowDown","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":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCASwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchCaSell","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040525f600b5f6101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff02191690831515021790555034801562000044575f80fd5b50604051620039c0380380620039c083398181016040528101906200006a919062000a9c565b6040518060400160405280600681526020017f544f4e4b495400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544f4e54000000000000000000000000000000000000000000000000000000008152508160039081620000e7919062000d98565b508060049081620000f9919062000d98565b5050506200011c62000110620007fe60201b60201c565b6200080560201b60201c565b5f6a52b7d2dcc80cd2e400000090508573ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508473ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200046d87606460048462000455919062000ea9565b62000461919062000f20565b620008c860201b60201c565b6200049b82606460088462000483919062000ea9565b6200048f919062000f20565b620008c860201b60201c565b620004cb6080516064600684620004b3919062000ea9565b620004bf919062000f20565b620008c860201b60201c565b620004f9836064600284620004e1919062000ea9565b620004ed919062000f20565b620008c860201b60201c565b620005278460646019846200050f919062000ea9565b6200051b919062000f20565b620008c860201b60201c565b620005553360646037846200053d919062000ea9565b62000549919062000f20565b620008c860201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000614573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200063a919062000f57565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620006c1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620006e7919062000f57565b6040518363ffffffff1660e01b81526004016200070692919062000f98565b6020604051808303815f875af115801562000723573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000749919062000f57565b60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606460028262000799919062000ea9565b620007a5919062000f20565b6009819055506103e8600582620007bd919062000ea9565b620007c9919062000f20565b600a81905550691fc3842bd1f071c0000060108190555069054b40b1f852bda00000600f8190555050505050505050620010a7565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000939576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009309062001021565b60405180910390fd5b6200094c5f838362000a2d60201b60201c565b8060025f8282546200095f919062001041565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a0e91906200108c565b60405180910390a362000a295f838362000a3260201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000a668262000a3b565b9050919050565b62000a788162000a5a565b811462000a83575f80fd5b50565b5f8151905062000a968162000a6d565b92915050565b5f805f805f8060c0878903121562000ab95762000ab862000a37565b5b5f62000ac889828a0162000a86565b965050602062000adb89828a0162000a86565b955050604062000aee89828a0162000a86565b945050606062000b0189828a0162000a86565b935050608062000b1489828a0162000a86565b92505060a062000b2789828a0162000a86565b9150509295509295509295565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bb057607f821691505b60208210810362000bc65762000bc562000b6b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c2a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bed565b62000c36868362000bed565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c8062000c7a62000c748462000c4e565b62000c57565b62000c4e565b9050919050565b5f819050919050565b62000c9b8362000c60565b62000cb362000caa8262000c87565b84845462000bf9565b825550505050565b5f90565b62000cc962000cbb565b62000cd681848462000c90565b505050565b5b8181101562000cfd5762000cf15f8262000cbf565b60018101905062000cdc565b5050565b601f82111562000d4c5762000d168162000bcc565b62000d218462000bde565b8101602085101562000d31578190505b62000d4962000d408562000bde565b83018262000cdb565b50505b505050565b5f82821c905092915050565b5f62000d6e5f198460080262000d51565b1980831691505092915050565b5f62000d88838362000d5d565b9150826002028217905092915050565b62000da38262000b34565b67ffffffffffffffff81111562000dbf5762000dbe62000b3e565b5b62000dcb825462000b98565b62000dd882828562000d01565b5f60209050601f83116001811462000e0e575f841562000df9578287015190505b62000e05858262000d7b565b86555062000e74565b601f19841662000e1e8662000bcc565b5f5b8281101562000e475784890151825560018201915060208501945060208101905062000e20565b8683101562000e67578489015162000e63601f89168262000d5d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000eb58262000c4e565b915062000ec28362000c4e565b925082820262000ed28162000c4e565b9150828204841483151762000eec5762000eeb62000e7c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f2c8262000c4e565b915062000f398362000c4e565b92508262000f4c5762000f4b62000ef3565b5b828204905092915050565b5f6020828403121562000f6f5762000f6e62000a37565b5b5f62000f7e8482850162000a86565b91505092915050565b62000f928162000a5a565b82525050565b5f60408201905062000fad5f83018562000f87565b62000fbc602083018462000f87565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001009601f8362000fc3565b9150620010168262000fd3565b602082019050919050565b5f6020820190508181035f8301526200103a8162000ffb565b9050919050565b5f6200104d8262000c4e565b91506200105a8362000c4e565b925082820190508082111562001075576200107462000e7c565b5b92915050565b620010868162000c4e565b82525050565b5f602082019050620010a15f8301846200107b565b92915050565b60805160a0516128f7620010c95f395f61173001525f610b7601526128f75ff3fe6080604052600436106101db575f3560e01c8063a457c2d711610101578063d062eb2d11610094578063db05e5cb11610063578063db05e5cb14610666578063dd62ed3e1461067c578063e8078d94146106b8578063f2fde38b146106ce576101e2565b8063d062eb2d146105fc578063d579d4ed14610612578063d7acde1f14610628578063da81a85a14610650576101e2565b8063aca2cd6e116100d0578063aca2cd6e14610546578063ad5dff731461056e578063bc337182146105aa578063c8c8ebe4146105d2576101e2565b8063a457c2d71461047c578063a508de62146104b8578063a9059cbb146104e2578063a9e282b81461051e576101e2565b80633950935111610179578063715018a611610148578063715018a6146103fc5780638a8c523c146104125780638da5cb5b1461042857806395d89b4114610452576101e2565b8063395093511461033057806349bd5a5e1461036c5780634b203e1b1461039657806370a08231146103c0576101e2565b806318160ddd116101b557806318160ddd1461027657806323b872dd146102a057806331062be8146102dc578063313ce56714610306576101e2565b806306e172de146101e657806306fdde0314610210578063095ea7b31461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f6565b6040516102079190611a48565b60405180910390f35b34801561021b575f80fd5b506102246106fb565b6040516102319190611aeb565b60405180910390f35b348015610245575f80fd5b50610260600480360381019061025b9190611b93565b61078b565b60405161026d9190611beb565b60405180910390f35b348015610281575f80fd5b5061028a6107ad565b6040516102979190611a48565b60405180910390f35b3480156102ab575f80fd5b506102c660048036038101906102c19190611c04565b6107b6565b6040516102d39190611beb565b60405180910390f35b3480156102e7575f80fd5b506102f06107e4565b6040516102fd9190611a48565b60405180910390f35b348015610311575f80fd5b5061031a6107ea565b6040516103279190611c6f565b60405180910390f35b34801561033b575f80fd5b5061035660048036038101906103519190611b93565b6107f2565b6040516103639190611beb565b60405180910390f35b348015610377575f80fd5b50610380610828565b60405161038d9190611c97565b60405180910390f35b3480156103a1575f80fd5b506103aa61084d565b6040516103b79190611a48565b60405180910390f35b3480156103cb575f80fd5b506103e660048036038101906103e19190611cb0565b610874565b6040516103f39190611a48565b60405180910390f35b348015610407575f80fd5b506104106108b9565b005b34801561041d575f80fd5b506104266108cc565b005b348015610433575f80fd5b5061043c6108f7565b6040516104499190611c97565b60405180910390f35b34801561045d575f80fd5b5061046661091f565b6040516104739190611aeb565b60405180910390f35b348015610487575f80fd5b506104a2600480360381019061049d9190611b93565b6109af565b6040516104af9190611beb565b60405180910390f35b3480156104c3575f80fd5b506104cc610a24565b6040516104d99190611a48565b60405180910390f35b3480156104ed575f80fd5b5061050860048036038101906105039190611b93565b610a4b565b6040516105159190611beb565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f9190611cdb565b610a6d565b005b348015610551575f80fd5b5061056c60048036038101906105679190611d30565b610a9d565b005b348015610579575f80fd5b50610594600480360381019061058f9190611cb0565b610afd565b6040516105a19190611beb565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611cdb565b610b1a565b005b3480156105dd575f80fd5b506105e6610b4a565b6040516105f39190611a48565b60405180910390f35b348015610607575f80fd5b50610610610b50565b005b34801561061d575f80fd5b50610626610b74565b005b348015610633575f80fd5b5061064e60048036038101906106499190611cdb565b610bda565b005b34801561065b575f80fd5b50610664610c0a565b005b348015610671575f80fd5b5061067a610c61565b005b348015610687575f80fd5b506106a2600480360381019061069d9190611d6e565b610c79565b6040516106af9190611a48565b60405180910390f35b3480156106c3575f80fd5b506106cc610cfb565b005b3480156106d9575f80fd5b506106f460048036038101906106ef9190611cb0565b610df1565b005b600581565b60606003805461070a90611dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461073690611dd9565b80156107815780601f1061075857610100808354040283529160200191610781565b820191905f5260205f20905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b5f80610795610e73565b90506107a2818585610e7a565b600191505092915050565b5f600254905090565b5f806107c0610e73565b90506107cd85828561103d565b6107d88585856110c8565b60019150509392505050565b600a5481565b5f6012905090565b5f806107fc610e73565b905061081d81858561080e8589610c79565b6108189190611e36565b610e7a565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6108566107ea565b600a6108629190611f98565b600f5461086f919061200f565b905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108c16113d8565b6108ca5f611456565b565b6108d46113d8565b6001600b5f6101000a81548160ff02191690831515021790555043600c81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092e90611dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461095a90611dd9565b80156109a55780601f1061097c576101008083540402835291602001916109a5565b820191905f5260205f20905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b5f806109b9610e73565b90505f6109c68286610c79565b905083811015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906120af565b60405180910390fd5b610a188286868403610e7a565b60019250505092915050565b5f610a2d6107ea565b600a610a399190611f98565b601054610a46919061200f565b905090565b5f80610a55610e73565b9050610a628185856110c8565b600191505092915050565b610a756113d8565b610a7d6107ea565b600a610a899190611f98565b81610a9491906120cd565b600f8190555050565b610aa56113d8565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6008602052805f5260405f205f915054906101000a900460ff1681565b610b226113d8565b610b2a6107ea565b600a610b369190611f98565b81610b4191906120cd565b60098190555050565b60095481565b610b586113d8565b5f600b60016101000a81548160ff021916908315150217905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610bd7573d5f803e3d5ffd5b50565b610be26113d8565b610bea6107ea565b600a610bf69190611f98565b81610c0191906120cd565b60108190555050565b610c126113d8565b60115f9054906101000a900460ff1615610c44575f60115f6101000a81548160ff021916908315150217905550610c5f565b600160115f6101000a81548160ff0219169083151502179055505b565b610c696113d8565b610c716107ad565b600981905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d036113d8565b610d373060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d3230610874565b610e7a565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610d7f30610874565b5f80610d896108f7565b426040518863ffffffff1660e01b8152600401610dab96959493929190612150565b60606040518083038185885af1158015610dc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610dec91906121c3565b505050565b610df96113d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90612283565b60405180910390fd5b610e7081611456565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612311565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d9061239f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110309190611a48565b60405180910390a3505050565b5f6110488484610c79565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c257818110156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612407565b60405180910390fd5b6110c18484848403610e7a565b5b50505050565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611166575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156113c757600b5f9054906101000a900460ff16611182575f80fd5b5f600b60019054906101000a900460ff1680156111a1575043600c5414155b156111f057600a548211156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061246f565b60405180910390fd5b611236565b600954821115611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c9061246f565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131c57600590505f61129830610874565b9050600f54811180156112b7575060115f9054906101000a900460ff16155b1561131657600d544311156112ce575f600e819055505b6003600e54101561131557600e5f8154809291906112eb9061248d565b919050555043600d8190555061131461130f60105461130a8685611519565b611519565b611531565b5b5b50611376565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361137557600590505b5b5f6064828461138591906120cd565b61138f919061200f565b90505f818461139e91906124d4565b90505f8211156113b4576113b38630846117ba565b5b6113bf8686836117ba565b5050506113d3565b6113d28383836117ba565b5b505050565b6113e0610e73565b73ffffffffffffffffffffffffffffffffffffffff166113fe6108f7565b73ffffffffffffffffffffffffffffffffffffffff1614611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90612551565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116115275782611529565b815b905092915050565b600160115f6101000a81548160ff0219169083151502179055506115773060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e7a565b5f600267ffffffffffffffff8111156115935761159261256f565b5b6040519080825280602002602001820160405280156115c15781602001602082028036833780820191505090505b50905030815f815181106115d8576115d761259c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a091906125dd565b816001815181106116b4576116b361259c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b81526004016117709594939291906126bf565b5f604051808303815f87803b158015611787575f80fd5b505af1158015611799573d5f803e3d5ffd5b50505050505f60115f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90612787565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90612815565b60405180910390fd5b6118a1838383611a26565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906128a3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0d9190611a48565b60405180910390a3611a20848484611a2b565b50505050565b505050565b505050565b5f819050919050565b611a4281611a30565b82525050565b5f602082019050611a5b5f830184611a39565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611a98578082015181840152602081019050611a7d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611abd82611a61565b611ac78185611a6b565b9350611ad7818560208601611a7b565b611ae081611aa3565b840191505092915050565b5f6020820190508181035f830152611b038184611ab3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b3882611b0f565b9050919050565b611b4881611b2e565b8114611b52575f80fd5b50565b5f81359050611b6381611b3f565b92915050565b611b7281611a30565b8114611b7c575f80fd5b50565b5f81359050611b8d81611b69565b92915050565b5f8060408385031215611ba957611ba8611b0b565b5b5f611bb685828601611b55565b9250506020611bc785828601611b7f565b9150509250929050565b5f8115159050919050565b611be581611bd1565b82525050565b5f602082019050611bfe5f830184611bdc565b92915050565b5f805f60608486031215611c1b57611c1a611b0b565b5b5f611c2886828701611b55565b9350506020611c3986828701611b55565b9250506040611c4a86828701611b7f565b9150509250925092565b5f60ff82169050919050565b611c6981611c54565b82525050565b5f602082019050611c825f830184611c60565b92915050565b611c9181611b2e565b82525050565b5f602082019050611caa5f830184611c88565b92915050565b5f60208284031215611cc557611cc4611b0b565b5b5f611cd284828501611b55565b91505092915050565b5f60208284031215611cf057611cef611b0b565b5b5f611cfd84828501611b7f565b91505092915050565b611d0f81611bd1565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f8060408385031215611d4657611d45611b0b565b5b5f611d5385828601611b55565b9250506020611d6485828601611d1c565b9150509250929050565b5f8060408385031215611d8457611d83611b0b565b5b5f611d9185828601611b55565b9250506020611da285828601611b55565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611df057607f821691505b602082108103611e0357611e02611dac565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e4082611a30565b9150611e4b83611a30565b9250828201905080821115611e6357611e62611e09565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611ebe57808604811115611e9a57611e99611e09565b5b6001851615611ea95780820291505b8081029050611eb785611e69565b9450611e7e565b94509492505050565b5f82611ed65760019050611f91565b81611ee3575f9050611f91565b8160018114611ef95760028114611f0357611f32565b6001915050611f91565b60ff841115611f1557611f14611e09565b5b8360020a915084821115611f2c57611f2b611e09565b5b50611f91565b5060208310610133831016604e8410600b8410161715611f675782820a905083811115611f6257611f61611e09565b5b611f91565b611f748484846001611e75565b92509050818404811115611f8b57611f8a611e09565b5b81810290505b9392505050565b5f611fa282611a30565b9150611fad83611c54565b9250611fda7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ec7565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61201982611a30565b915061202483611a30565b92508261203457612033611fe2565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612099602583611a6b565b91506120a48261203f565b604082019050919050565b5f6020820190508181035f8301526120c68161208d565b9050919050565b5f6120d782611a30565b91506120e283611a30565b92508282026120f081611a30565b9150828204841483151761210757612106611e09565b5b5092915050565b5f819050919050565b5f819050919050565b5f61213a6121356121308461210e565b612117565b611a30565b9050919050565b61214a81612120565b82525050565b5f60c0820190506121635f830189611c88565b6121706020830188611a39565b61217d6040830187612141565b61218a6060830186612141565b6121976080830185611c88565b6121a460a0830184611a39565b979650505050505050565b5f815190506121bd81611b69565b92915050565b5f805f606084860312156121da576121d9611b0b565b5b5f6121e7868287016121af565b93505060206121f8868287016121af565b9250506040612209868287016121af565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61226d602683611a6b565b915061227882612213565b604082019050919050565b5f6020820190508181035f83015261229a81612261565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122fb602483611a6b565b9150612306826122a1565b604082019050919050565b5f6020820190508181035f830152612328816122ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612389602283611a6b565b91506123948261232f565b604082019050919050565b5f6020820190508181035f8301526123b68161237d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6123f1601d83611a6b565b91506123fc826123bd565b602082019050919050565b5f6020820190508181035f83015261241e816123e5565b9050919050565b7f4d4158205458204c494d495400000000000000000000000000000000000000005f82015250565b5f612459600c83611a6b565b915061246482612425565b602082019050919050565b5f6020820190508181035f8301526124868161244d565b9050919050565b5f61249782611a30565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124c9576124c8611e09565b5b600182019050919050565b5f6124de82611a30565b91506124e983611a30565b925082820390508181111561250157612500611e09565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61253b602083611a6b565b915061254682612507565b602082019050919050565b5f6020820190508181035f8301526125688161252f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506125d781611b3f565b92915050565b5f602082840312156125f2576125f1611b0b565b5b5f6125ff848285016125c9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61263a81611b2e565b82525050565b5f61264b8383612631565b60208301905092915050565b5f602082019050919050565b5f61266d82612608565b6126778185612612565b935061268283612622565b805f5b838110156126b25781516126998882612640565b97506126a483612657565b925050600181019050612685565b5085935050505092915050565b5f60a0820190506126d25f830188611a39565b6126df6020830187612141565b81810360408301526126f18186612663565b90506127006060830185611c88565b61270d6080830184611a39565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612771602583611a6b565b915061277c82612717565b604082019050919050565b5f6020820190508181035f83015261279e81612765565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6127ff602383611a6b565b915061280a826127a5565b604082019050919050565b5f6020820190508181035f83015261282c816127f3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61288d602683611a6b565b915061289882612833565b604082019050919050565b5f6020820190508181035f8301526128ba81612881565b905091905056fea2646970667358221220ec859a56e65ee23d1debc993999a601ea2824008cfdc649cc0fd5a6ceb9f0ac864736f6c6343000817003300000000000000000000000026f50593f15a2e506a87532e8bea75ed6162b3ab0000000000000000000000005c2fb4a43b1f2cf2356181c736ba72593cdec4320000000000000000000000008b8710e692b263e54f07501f9d5415a51d0576c1000000000000000000000000fb0bcb88dc6a8db01931a16f505f1563614fd75f0000000000000000000000003fe6ea286a418fdde5b25ce97edccd4ee9522e1c000000000000000000000000894c606a2d425f0b70313a813da62b2ed3eac596

Deployed Bytecode

0x6080604052600436106101db575f3560e01c8063a457c2d711610101578063d062eb2d11610094578063db05e5cb11610063578063db05e5cb14610666578063dd62ed3e1461067c578063e8078d94146106b8578063f2fde38b146106ce576101e2565b8063d062eb2d146105fc578063d579d4ed14610612578063d7acde1f14610628578063da81a85a14610650576101e2565b8063aca2cd6e116100d0578063aca2cd6e14610546578063ad5dff731461056e578063bc337182146105aa578063c8c8ebe4146105d2576101e2565b8063a457c2d71461047c578063a508de62146104b8578063a9059cbb146104e2578063a9e282b81461051e576101e2565b80633950935111610179578063715018a611610148578063715018a6146103fc5780638a8c523c146104125780638da5cb5b1461042857806395d89b4114610452576101e2565b8063395093511461033057806349bd5a5e1461036c5780634b203e1b1461039657806370a08231146103c0576101e2565b806318160ddd116101b557806318160ddd1461027657806323b872dd146102a057806331062be8146102dc578063313ce56714610306576101e2565b806306e172de146101e657806306fdde0314610210578063095ea7b31461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f6565b6040516102079190611a48565b60405180910390f35b34801561021b575f80fd5b506102246106fb565b6040516102319190611aeb565b60405180910390f35b348015610245575f80fd5b50610260600480360381019061025b9190611b93565b61078b565b60405161026d9190611beb565b60405180910390f35b348015610281575f80fd5b5061028a6107ad565b6040516102979190611a48565b60405180910390f35b3480156102ab575f80fd5b506102c660048036038101906102c19190611c04565b6107b6565b6040516102d39190611beb565b60405180910390f35b3480156102e7575f80fd5b506102f06107e4565b6040516102fd9190611a48565b60405180910390f35b348015610311575f80fd5b5061031a6107ea565b6040516103279190611c6f565b60405180910390f35b34801561033b575f80fd5b5061035660048036038101906103519190611b93565b6107f2565b6040516103639190611beb565b60405180910390f35b348015610377575f80fd5b50610380610828565b60405161038d9190611c97565b60405180910390f35b3480156103a1575f80fd5b506103aa61084d565b6040516103b79190611a48565b60405180910390f35b3480156103cb575f80fd5b506103e660048036038101906103e19190611cb0565b610874565b6040516103f39190611a48565b60405180910390f35b348015610407575f80fd5b506104106108b9565b005b34801561041d575f80fd5b506104266108cc565b005b348015610433575f80fd5b5061043c6108f7565b6040516104499190611c97565b60405180910390f35b34801561045d575f80fd5b5061046661091f565b6040516104739190611aeb565b60405180910390f35b348015610487575f80fd5b506104a2600480360381019061049d9190611b93565b6109af565b6040516104af9190611beb565b60405180910390f35b3480156104c3575f80fd5b506104cc610a24565b6040516104d99190611a48565b60405180910390f35b3480156104ed575f80fd5b5061050860048036038101906105039190611b93565b610a4b565b6040516105159190611beb565b60405180910390f35b348015610529575f80fd5b50610544600480360381019061053f9190611cdb565b610a6d565b005b348015610551575f80fd5b5061056c60048036038101906105679190611d30565b610a9d565b005b348015610579575f80fd5b50610594600480360381019061058f9190611cb0565b610afd565b6040516105a19190611beb565b60405180910390f35b3480156105b5575f80fd5b506105d060048036038101906105cb9190611cdb565b610b1a565b005b3480156105dd575f80fd5b506105e6610b4a565b6040516105f39190611a48565b60405180910390f35b348015610607575f80fd5b50610610610b50565b005b34801561061d575f80fd5b50610626610b74565b005b348015610633575f80fd5b5061064e60048036038101906106499190611cdb565b610bda565b005b34801561065b575f80fd5b50610664610c0a565b005b348015610671575f80fd5b5061067a610c61565b005b348015610687575f80fd5b506106a2600480360381019061069d9190611d6e565b610c79565b6040516106af9190611a48565b60405180910390f35b3480156106c3575f80fd5b506106cc610cfb565b005b3480156106d9575f80fd5b506106f460048036038101906106ef9190611cb0565b610df1565b005b600581565b60606003805461070a90611dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461073690611dd9565b80156107815780601f1061075857610100808354040283529160200191610781565b820191905f5260205f20905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b5f80610795610e73565b90506107a2818585610e7a565b600191505092915050565b5f600254905090565b5f806107c0610e73565b90506107cd85828561103d565b6107d88585856110c8565b60019150509392505050565b600a5481565b5f6012905090565b5f806107fc610e73565b905061081d81858561080e8589610c79565b6108189190611e36565b610e7a565b600191505092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6108566107ea565b600a6108629190611f98565b600f5461086f919061200f565b905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108c16113d8565b6108ca5f611456565b565b6108d46113d8565b6001600b5f6101000a81548160ff02191690831515021790555043600c81905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092e90611dd9565b80601f016020809104026020016040519081016040528092919081815260200182805461095a90611dd9565b80156109a55780601f1061097c576101008083540402835291602001916109a5565b820191905f5260205f20905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b5f806109b9610e73565b90505f6109c68286610c79565b905083811015610a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a02906120af565b60405180910390fd5b610a188286868403610e7a565b60019250505092915050565b5f610a2d6107ea565b600a610a399190611f98565b601054610a46919061200f565b905090565b5f80610a55610e73565b9050610a628185856110c8565b600191505092915050565b610a756113d8565b610a7d6107ea565b600a610a899190611f98565b81610a9491906120cd565b600f8190555050565b610aa56113d8565b8060085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6008602052805f5260405f205f915054906101000a900460ff1681565b610b226113d8565b610b2a6107ea565b600a610b369190611f98565b81610b4191906120cd565b60098190555050565b60095481565b610b586113d8565b5f600b60016101000a81548160ff021916908315150217905550565b7f0000000000000000000000005c2fb4a43b1f2cf2356181c736ba72593cdec43273ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610bd7573d5f803e3d5ffd5b50565b610be26113d8565b610bea6107ea565b600a610bf69190611f98565b81610c0191906120cd565b60108190555050565b610c126113d8565b60115f9054906101000a900460ff1615610c44575f60115f6101000a81548160ff021916908315150217905550610c5f565b600160115f6101000a81548160ff0219169083151502179055505b565b610c696113d8565b610c716107ad565b600981905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d036113d8565b610d373060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d3230610874565b610e7a565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610d7f30610874565b5f80610d896108f7565b426040518863ffffffff1660e01b8152600401610dab96959493929190612150565b60606040518083038185885af1158015610dc7573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610dec91906121c3565b505050565b610df96113d8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90612283565b60405180910390fd5b610e7081611456565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612311565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d9061239f565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110309190611a48565b60405180910390a3505050565b5f6110488484610c79565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110c257818110156110b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ab90612407565b60405180910390fd5b6110c18484848403610e7a565b5b50505050565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611166575060085f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156113c757600b5f9054906101000a900460ff16611182575f80fd5b5f600b60019054906101000a900460ff1680156111a1575043600c5414155b156111f057600a548211156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e29061246f565b60405180910390fd5b611236565b600954821115611235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122c9061246f565b60405180910390fd5b5b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361131c57600590505f61129830610874565b9050600f54811180156112b7575060115f9054906101000a900460ff16155b1561131657600d544311156112ce575f600e819055505b6003600e54101561131557600e5f8154809291906112eb9061248d565b919050555043600d8190555061131461130f60105461130a8685611519565b611519565b611531565b5b5b50611376565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361137557600590505b5b5f6064828461138591906120cd565b61138f919061200f565b90505f818461139e91906124d4565b90505f8211156113b4576113b38630846117ba565b5b6113bf8686836117ba565b5050506113d3565b6113d28383836117ba565b5b505050565b6113e0610e73565b73ffffffffffffffffffffffffffffffffffffffff166113fe6108f7565b73ffffffffffffffffffffffffffffffffffffffff1614611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90612551565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116115275782611529565b815b905092915050565b600160115f6101000a81548160ff0219169083151502179055506115773060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e7a565b5f600267ffffffffffffffff8111156115935761159261256f565b5b6040519080825280602002602001820160405280156115c15781602001602082028036833780820191505090505b50905030815f815181106115d8576115d761259c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561167c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116a091906125dd565b816001815181106116b4576116b361259c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f0000000000000000000000008b8710e692b263e54f07501f9d5415a51d0576c1426040518663ffffffff1660e01b81526004016117709594939291906126bf565b5f604051808303815f87803b158015611787575f80fd5b505af1158015611799573d5f803e3d5ffd5b50505050505f60115f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181f90612787565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611896576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188d90612815565b60405180910390fd5b6118a1838383611a26565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611924576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191b906128a3565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a0d9190611a48565b60405180910390a3611a20848484611a2b565b50505050565b505050565b505050565b5f819050919050565b611a4281611a30565b82525050565b5f602082019050611a5b5f830184611a39565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611a98578082015181840152602081019050611a7d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611abd82611a61565b611ac78185611a6b565b9350611ad7818560208601611a7b565b611ae081611aa3565b840191505092915050565b5f6020820190508181035f830152611b038184611ab3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611b3882611b0f565b9050919050565b611b4881611b2e565b8114611b52575f80fd5b50565b5f81359050611b6381611b3f565b92915050565b611b7281611a30565b8114611b7c575f80fd5b50565b5f81359050611b8d81611b69565b92915050565b5f8060408385031215611ba957611ba8611b0b565b5b5f611bb685828601611b55565b9250506020611bc785828601611b7f565b9150509250929050565b5f8115159050919050565b611be581611bd1565b82525050565b5f602082019050611bfe5f830184611bdc565b92915050565b5f805f60608486031215611c1b57611c1a611b0b565b5b5f611c2886828701611b55565b9350506020611c3986828701611b55565b9250506040611c4a86828701611b7f565b9150509250925092565b5f60ff82169050919050565b611c6981611c54565b82525050565b5f602082019050611c825f830184611c60565b92915050565b611c9181611b2e565b82525050565b5f602082019050611caa5f830184611c88565b92915050565b5f60208284031215611cc557611cc4611b0b565b5b5f611cd284828501611b55565b91505092915050565b5f60208284031215611cf057611cef611b0b565b5b5f611cfd84828501611b7f565b91505092915050565b611d0f81611bd1565b8114611d19575f80fd5b50565b5f81359050611d2a81611d06565b92915050565b5f8060408385031215611d4657611d45611b0b565b5b5f611d5385828601611b55565b9250506020611d6485828601611d1c565b9150509250929050565b5f8060408385031215611d8457611d83611b0b565b5b5f611d9185828601611b55565b9250506020611da285828601611b55565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611df057607f821691505b602082108103611e0357611e02611dac565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e4082611a30565b9150611e4b83611a30565b9250828201905080821115611e6357611e62611e09565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611ebe57808604811115611e9a57611e99611e09565b5b6001851615611ea95780820291505b8081029050611eb785611e69565b9450611e7e565b94509492505050565b5f82611ed65760019050611f91565b81611ee3575f9050611f91565b8160018114611ef95760028114611f0357611f32565b6001915050611f91565b60ff841115611f1557611f14611e09565b5b8360020a915084821115611f2c57611f2b611e09565b5b50611f91565b5060208310610133831016604e8410600b8410161715611f675782820a905083811115611f6257611f61611e09565b5b611f91565b611f748484846001611e75565b92509050818404811115611f8b57611f8a611e09565b5b81810290505b9392505050565b5f611fa282611a30565b9150611fad83611c54565b9250611fda7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611ec7565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61201982611a30565b915061202483611a30565b92508261203457612033611fe2565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612099602583611a6b565b91506120a48261203f565b604082019050919050565b5f6020820190508181035f8301526120c68161208d565b9050919050565b5f6120d782611a30565b91506120e283611a30565b92508282026120f081611a30565b9150828204841483151761210757612106611e09565b5b5092915050565b5f819050919050565b5f819050919050565b5f61213a6121356121308461210e565b612117565b611a30565b9050919050565b61214a81612120565b82525050565b5f60c0820190506121635f830189611c88565b6121706020830188611a39565b61217d6040830187612141565b61218a6060830186612141565b6121976080830185611c88565b6121a460a0830184611a39565b979650505050505050565b5f815190506121bd81611b69565b92915050565b5f805f606084860312156121da576121d9611b0b565b5b5f6121e7868287016121af565b93505060206121f8868287016121af565b9250506040612209868287016121af565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61226d602683611a6b565b915061227882612213565b604082019050919050565b5f6020820190508181035f83015261229a81612261565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6122fb602483611a6b565b9150612306826122a1565b604082019050919050565b5f6020820190508181035f830152612328816122ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612389602283611a6b565b91506123948261232f565b604082019050919050565b5f6020820190508181035f8301526123b68161237d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6123f1601d83611a6b565b91506123fc826123bd565b602082019050919050565b5f6020820190508181035f83015261241e816123e5565b9050919050565b7f4d4158205458204c494d495400000000000000000000000000000000000000005f82015250565b5f612459600c83611a6b565b915061246482612425565b602082019050919050565b5f6020820190508181035f8301526124868161244d565b9050919050565b5f61249782611a30565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036124c9576124c8611e09565b5b600182019050919050565b5f6124de82611a30565b91506124e983611a30565b925082820390508181111561250157612500611e09565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61253b602083611a6b565b915061254682612507565b602082019050919050565b5f6020820190508181035f8301526125688161252f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506125d781611b3f565b92915050565b5f602082840312156125f2576125f1611b0b565b5b5f6125ff848285016125c9565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61263a81611b2e565b82525050565b5f61264b8383612631565b60208301905092915050565b5f602082019050919050565b5f61266d82612608565b6126778185612612565b935061268283612622565b805f5b838110156126b25781516126998882612640565b97506126a483612657565b925050600181019050612685565b5085935050505092915050565b5f60a0820190506126d25f830188611a39565b6126df6020830187612141565b81810360408301526126f18186612663565b90506127006060830185611c88565b61270d6080830184611a39565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612771602583611a6b565b915061277c82612717565b604082019050919050565b5f6020820190508181035f83015261279e81612765565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6127ff602383611a6b565b915061280a826127a5565b604082019050919050565b5f6020820190508181035f83015261282c816127f3565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61288d602683611a6b565b915061289882612833565b604082019050919050565b5f6020820190508181035f8301526128ba81612881565b905091905056fea2646970667358221220ec859a56e65ee23d1debc993999a601ea2824008cfdc649cc0fd5a6ceb9f0ac864736f6c63430008170033

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

00000000000000000000000026f50593f15a2e506a87532e8bea75ed6162b3ab0000000000000000000000005c2fb4a43b1f2cf2356181c736ba72593cdec4320000000000000000000000008b8710e692b263e54f07501f9d5415a51d0576c1000000000000000000000000fb0bcb88dc6a8db01931a16f505f1563614fd75f0000000000000000000000003fe6ea286a418fdde5b25ce97edccd4ee9522e1c000000000000000000000000894c606a2d425f0b70313a813da62b2ed3eac596

-----Decoded View---------------
Arg [0] : _stakingPool (address): 0x26f50593F15A2e506a87532E8BEA75ED6162b3AB
Arg [1] : _marketingAddress (address): 0x5C2Fb4a43B1f2Cf2356181C736bA72593CdEc432
Arg [2] : _taxAddress (address): 0x8B8710E692b263E54F07501F9d5415A51D0576c1
Arg [3] : _private (address): 0xFb0BcB88DC6A8DB01931a16F505F1563614Fd75f
Arg [4] : _tonReserve (address): 0x3FE6eA286a418FDde5b25Ce97Edccd4ee9522E1C
Arg [5] : _cex (address): 0x894c606a2d425F0B70313a813Da62b2Ed3eAC596

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000026f50593f15a2e506a87532e8bea75ed6162b3ab
Arg [1] : 0000000000000000000000005c2fb4a43b1f2cf2356181c736ba72593cdec432
Arg [2] : 0000000000000000000000008b8710e692b263e54f07501f9d5415a51d0576c1
Arg [3] : 000000000000000000000000fb0bcb88dc6a8db01931a16f505f1563614fd75f
Arg [4] : 0000000000000000000000003fe6ea286a418fdde5b25ce97edccd4ee9522e1c
Arg [5] : 000000000000000000000000894c606a2d425f0b70313a813da62b2ed3eac596


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.