ETH Price: $3,357.57 (-0.77%)
Gas: 1 Gwei

Token

BigShortBets (BigSB)
 

Overview

Max Total Supply

29,799,319.142811834726088824 BigSB

Holders

3,522 (0.00%)

Market

Price

$0.46 @ 0.000138 ETH (-0.91%)

Onchain Market Cap

$13,784,330.65

Circulating Supply Market Cap

$3,081,773.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
372.606001569904692949 BigSB

Value
$172.36 ( ~0.0513347698135683 Eth) [0.0013%]
0xF1606b299C0239d39bb2F5c194a640269B556389
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BigShortBets is a social, decentralized, anonymous information marketplace & blockchain futures trading tool - powered by $BigSB token.

Market

Volume (24H):$53.12
Market Capitalization:$3,081,773.00
Circulating Supply:6,657,092.00 BigSB
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BigSB

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 1 of 3: bigsb-token.sol
// SPDX-License-Identifier: UNLICENSE

// ANDRZEJU! NIE DENERWUJ SIĘ!

/**
Apes Together Strong!

About BigShortBets DeFi project:

We are creating a social&trading p2p platform that guarantees encrypted interaction between investors.
Logging in is possible via a cryptocurrency wallet (e.g. Metamask).
The security level is one comparable to the Tor network.

https://bigsb.io/ - Our Tool
https://bigshortbets.com - Project&Team info

Video explainer:
https://youtu.be/wbhUo5IvKdk

Idea: 
https://bigshortbets.com/idea/

The stock exchange is an emanation of the highest form of market freedom related to the natural and inalienable right of every human being to possess.

It is the freedom – the basic and most precious good, which allows us (people who take responsibility for their actions) to decide about property in a free and unhindered way, regardless of our internal or external motivation.

This is how the stock exchange was understood in the early 17th century, when the first modern stock exchange, established in 1611 by Dutch merchants in Amsterdam, made its debut. It was established by Dutch merchants in Amsterdam. As Joseph de la Vega, speculator, investor, merchant and author of Confusion de Confusiones 1688, the oldest book on speculation published in 1688, wrote:

“Among the plays which men perform in taking different parts in this magnificent world theatre, the greatest comedy is played at the Exchange. There, in an inimitable fashion, the speculators excel in tricks, they do business and find excuses wherein hiding-places, concealment of facts , quarrels, provocations, mockery, idle talk, violent desires, collusion, artful deception, betrayals, cheatings, and even the tragic end are to be found.”

In the early days of the stock market, trading was based on mutual trust – (Only since he published in 1688, i.e. he must have noticed much earlier what he noticed, does the statement “in the early days of the stock market, trading was based on mutual trust” have anything to do with the truth at all? Are we talking about beginnings in the sense of the first few minutes? Because de la Vega proves that the dirty games started right from the beginning).

Over time, especially since the end of the 1920s, when Wallstreet had its big crash, trade gradually began to be subject to various regulations, the aim of which was, above all, to protect small investors and level their chances in “clashing” with big “fish”, or “whales” as we call them now. What should be regulated by the market itself, began to be the domain of officials who, despite their best intentions, rather than helping small investors, harmed them more, gradually increasing the advantage of Wallstret over Mainstreet. This led to a clear restriction of freedom of speech – from now on you had to be careful with whom you spoke, what you spoke about and how you spoke. All this to avoid being accused of manipulation and acting against the new law.

The short squeeze action on GameStop carried out by the Reddit community connected to the Wallstreetbets forum made us realise that fair play is a fantasy and market reality proves that there are equal and more equal investors. Thus, the head of a hedge fund with X investors under him, i.e. being in “agreement” with them or making investment decisions on their behalf, is better treated than investors acting independently on their own account and on their behalf, supporting each other and consulting their investment movements with each other.

Supervisory authorities such as ESMA (the European Securities and Markets Authority) criticised the action on GameStop, but focused their criticism on the weakest and smallest players, who were, after all, acting lawfully in exercising their rights to have opinions and to share them with other free people.

In our opinion, this approach violates the natural and inalienable right to decide on one’s own property. It has emerged that private investors exercising their fundamental right to have an opinion and act accordingly on the market are being restricted, their freedom of expression curtailed and their perfectly legal activities demonised. In the cases cited above, it was the fund that acted to the detriment of small investors by manipulating GameStop’s shares (and it was by no means the first such manipulation). In the face of such ‘tricks’, small investors do not stand much of a chance against the rich whales of Wall Street, especially when the bodies set up to protect the weak actually favour the strong, giving their enormous capital an advantage.

For this reason, the idea was born to build a decentralised and encrypted tool in which users’ privacy would be protected in the name of the values that belong to us naturally, that we all possess and that we consider to be the greatest good. To achieve this, we must take risks and oppose oppressive, unfair and unjust laws that restrict freedom.

A final, but equally important advantage is the size of the capital and this can only be levelled in the way it was with the last action on GameStop – it must result from coordinated efforts by individual investors. In response to the above situation, we are building a “bottom-up” tool that enables encrypted and fully secure communication between users based on a token and blockchain network. The free exchange of data in the information market will allow the same or even faster access to news than from giants such as Reuters and Bloomberg, thus breaking their monopoly on first-hand knowledge.

BigShortBets tools will allow to coordinate the activities of groups of smaller investors, which in turn will contribute to reducing the advantage of investment funds and their more effective play.

Zaorski, You Son of a bitch I’m in …
*/

import "./owned.sol";
import "./interfaces.sol";

pragma solidity 0.8.7;

// BigShortBets.com deflationary token
contract BigSB is IERC20, Owned {
    // You SOB, I'm in!
    constructor(address _owner) {
        (uint256 rAmount, , , , , , ) = _getValues(INITIAL_SUPPLY);
        _rOwned[_owner] = rAmount;
        emit Transfer(ZERO, _owner, INITIAL_SUPPLY);
        owner = _owner;
    }

    string public constant name = "BigShortBets";
    string public constant symbol = "BigSB";
    uint8 public constant decimals = 18;

    uint256 private constant MAX = type(uint256).max;
    uint256 private constant INITIAL_SUPPLY = 100_000_000 * (10**18);
    uint256 private constant BURN_STOP_SUPPLY = INITIAL_SUPPLY / 10;
    uint256 private _tTotal = INITIAL_SUPPLY;
    uint256 private _rTotal = (MAX - (MAX % INITIAL_SUPPLY));
    uint256 private _tFeeTotal;

    address private constant ZERO = address(0);
    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) public override allowance;

    mapping(address => bool) public isFeeFree;

    mapping(address => bool) public isExcluded;
    address[] private _excluded;

    // ERC20 totalSupply
    function totalSupply() external view override returns (uint256) {
        return _tTotal;
    }

    /// Total fees collected
    function totalFees() external view returns (uint256) {
        return _tFeeTotal;
    }

    // ERC20 balanceOf
    function balanceOf(address account)
        external
        view
        override
        returns (uint256)
    {
        if (isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    // ERC20 transfer
    function transfer(address recipient, uint256 amount)
        external
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    // ERC20 approve
    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    // ERC20 transferFrom
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        uint256 amt = allowance[sender][msg.sender];
        require(amt >= amount, "ERC20: transfer amount exceeds allowance");
        // reduce only if not permament allowance (uniswap etc)
        if (amt < MAX) {
            allowance[sender][msg.sender] -= amount;
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    // ERC20 increaseAllowance
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            allowance[msg.sender][spender] + addedValue
        );
        return true;
    }

    // ERC20 decreaseAllowance
    function decreaseAllowance(address spender, uint256 subtractedValue)
        external
        returns (bool)
    {
        require(
            allowance[msg.sender][spender] >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        _approve(
            msg.sender,
            spender,
            allowance[msg.sender][spender] - subtractedValue
        );

        return true;
    }

    // ERC20 burn
    function burn(uint256 amount) external {
        require(msg.sender != ZERO, "ERC20: burn from the zero address");
        (uint256 rAmount, , , , , , ) = _getValues(amount);
        _burn(msg.sender, amount, rAmount);
    }

    // ERC20 burnFrom
    function burnFrom(address account, uint256 amount) external {
        require(account != ZERO, "ERC20: burn from the zero address");
        require(
            allowance[account][msg.sender] >= amount,
            "ERC20: burn amount exceeds allowance"
        );
        allowance[account][msg.sender] -= amount;
        (uint256 rAmount, , , , , , ) = _getValues(amount);
        _burn(account, amount, rAmount);
    }

    /**
        Burn tokens into fee (aka airdrop)
        @param tAmount number of tokens to destroy
     */
    function reflect(uint256 tAmount) external {
        address sender = msg.sender;
        require(
            !isExcluded[sender],
            "Excluded addresses cannot call this function"
        );
        (uint256 rAmount, , , , , , ) = _getValues(tAmount);
        _rOwned[sender] -= rAmount;
        _rTotal -= rAmount;
        _tFeeTotal += tAmount;
    }

    /**
        Reflection amount for given amount of token, can deduct fees
        @param tAmount number of tokens to transfer
        @param deductTransferFee true or false
        @return amount reflection amount
     */
    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        external
        view
        returns (uint256 amount)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            //rAmount
            (amount, , , , , , ) = _getValues(tAmount);
        } else {
            //rTransferAmount
            (, amount, , , , , ) = _getValues(tAmount);
        }
    }

    /**
        Calculate number of tokens by current reflection rate
        @param rAmount reflected amount
        @return number of tokens
     */
    function tokenFromReflection(uint256 rAmount)
        public
        view
        returns (uint256)
    {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount / currentRate;
    }

    /**
        Internal approve function, emit Approval event
        @param _owner approving address
        @param spender delegated spender
        @param amount amount of tokens
     */
    function _approve(
        address _owner,
        address spender,
        uint256 amount
    ) private {
        require(_owner != ZERO, "ERC20: approve from the zero address");
        require(spender != ZERO, "ERC20: approve to the zero address");

        allowance[_owner][spender] = amount;
        emit Approval(_owner, spender, amount);
    }

    /**
        Internal transfer function, calling feeFree if needed
        @param sender sender address
        @param recipient destination address
        @param tAmount transfer amount
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        require(sender != ZERO, "ERC20: transfer from the zero address");
        require(recipient != ZERO, "ERC20: transfer to the zero address");
        if (tAmount > 0) {
            if (isFeeFree[sender]) {
                _feeFreeTransfer(sender, recipient, tAmount);
            } else {
                (
                    uint256 rAmount,
                    uint256 rTransferAmount,
                    uint256 rFee,
                    uint256 rBurn,
                    uint256 tTransferAmount,
                    uint256 tFee,
                    uint256 tBurn
                ) = _getValues(tAmount);

                _rOwned[sender] -= rAmount;
                if (isExcluded[sender]) {
                    _tOwned[sender] -= tAmount;
                }
                _rOwned[recipient] += rTransferAmount;
                if (isExcluded[recipient]) {
                    _tOwned[recipient] += tTransferAmount;
                }

                _reflectFee(rFee, tFee);
                if (tBurn > 0) {
                    _reflectBurn(rBurn, tBurn, sender);
                }
                emit Transfer(sender, recipient, tTransferAmount);
            }
        } else emit Transfer(sender, recipient, 0);
    }

    /**
        Function provide fee-free transfer for selected addresses
        @param sender sender address
        @param recipient destination address
        @param tAmount transfer amount
     */
    function _feeFreeTransfer(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (uint256 rAmount, , , , , , ) = _getValues(tAmount);
        _rOwned[sender] -= rAmount;
        if (isExcluded[sender]) {
            _tOwned[sender] -= tAmount;
        }
        _rOwned[recipient] += rAmount;
        if (isExcluded[recipient]) {
            _tOwned[recipient] += tAmount;
        }
        emit Transfer(sender, recipient, tAmount);
    }

    /// reflect fee amounts in global values
    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal -= rFee;
        _tFeeTotal += tFee;
    }

    /// reflect burn amounts in global values
    function _reflectBurn(
        uint256 rBurn,
        uint256 tBurn,
        address account
    ) private {
        _rTotal -= rBurn;
        _tTotal -= tBurn;
        emit Transfer(account, ZERO, tBurn);
    }

    /// calculate reflect values for given transfer amount
    function _getValues(uint256 tAmount)
        private
        view
        returns (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 rBurn,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tBurn
        )
    {
        tFee = tAmount / 100; //1% transfer fee
        tTransferAmount = tAmount - tFee;
        if (_tTotal > BURN_STOP_SUPPLY) {
            tBurn = tAmount / 200; //0.5% burn fee
            if (_tTotal < BURN_STOP_SUPPLY + tBurn) {
                tBurn = _tTotal - BURN_STOP_SUPPLY;
            }
            tTransferAmount -= tBurn;
        }
        uint256 currentRate = _getRate();
        rAmount = tAmount * currentRate;
        rFee = tFee * currentRate;
        rTransferAmount = rAmount - rFee;
        if (tBurn > 0) {
            rBurn = tBurn * currentRate;
            rTransferAmount -= rBurn;
        }
    }

    function getRate() external view returns (uint256) {
        return _getRate();
    }

    /// calculate current reflect rate
    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply / tSupply;
    }

    /// calculate current token supply
    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        uint256 i;
        for (i; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply -= _rOwned[_excluded[i]];
            tSupply -= _tOwned[_excluded[i]];
        }
        if (rSupply < _rTotal / _tTotal) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    /// internal burn function
    function _burn(
        address account,
        uint256 tAmount,
        uint256 rAmount
    ) private {
        require(
            _rOwned[account] >= rAmount,
            "ERC20: burn amount exceeds balance"
        );
        _rOwned[account] -= rAmount;
        if (isExcluded[account]) {
            require(
                _tOwned[account] >= tAmount,
                "ERC20: burn amount exceeds balance"
            );

            _tOwned[account] -= tAmount;
        }
        _reflectBurn(rAmount, tAmount, account);
    }

    //
    // Rick mode
    //

    /**
        Add address that will not pay transfer fees
        @param user address to mark as fee-free
     */
    function addFeeFree(address user) external onlyOwner {
        isFeeFree[user] = true;
    }

    /**
        Remove address form privileged list
        @param user user to remove
     */
    function removeFeeFree(address user) external onlyOwner {
        isFeeFree[user] = false;
    }

    /**
        Exclude address form earing transfer fees
        @param account address to exclude from earning
     */
    function excludeAccount(address account) external onlyOwner {
        require(!isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        isExcluded[account] = true;
        _excluded.push(account);
    }

    /**
        Include address back to earn transfer fees
        @param account address to include
     */
    function includeAccount(address account) external onlyOwner {
        require(isExcluded[account], "Account is already included");
        uint256 i;
        for (i; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    /**
        Take ETH accidentally send to contract
    */
    function withdrawEth() external onlyOwner {
        payable(owner).transfer(address(this).balance);
    }

    /**
        Take any ERC20 sent to contract
        @param token token address
    */
    function withdrawErc20(address token) external onlyOwner {
        uint256 balance = IERC20(token).balanceOf(address(this));
        require(balance > 0, "Nothing to withdraw");
        // use broken IERC20
        IUsdt(token).transfer(owner, balance);
    }
}

//rav3n_pl was here

//This is fine!

File 2 of 3: interfaces.sol
// SPDX-License-Identifier: UNLICENSE

pragma solidity ^0.8.7;

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

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

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

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

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

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

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

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

// Reflection
interface IReflect {
    function tokenFromReflection(uint256 rAmount)
        external
        view
        returns (uint256);

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        external
        view
        returns (uint256);

    function getRate() external view returns (uint256);
}

/// ChainLink ETH/USD oracle
interface IChainLink {
    // chainlink ETH/USD oracle
    // answer|int256 :  216182781556 - 8 decimals
    function latestRoundData()
        external
        view
        returns (
            uint80 roundId,
            int256 answer,
            uint256 startedAt,
            uint256 updatedAt,
            uint80 answeredInRound
        );
}

/// USDT is not ERC-20 compliant, not returning true on transfers
interface IUsdt {
    function transfer(address, uint256) external;

    function transferFrom(
        address,
        address,
        uint256
    ) external;
}

// Check ETH send to first presale
// Yes, there is a typo
interface IPresale1 {
    function blanceOf(address user) external view returns (uint256 amt);
}

// Check tokens bought in second presale
// There is bug in ETH deposits, we need handle it
// Also "tokensBoughtOf" calculation is broken, so we do all math
interface IPresale2 {
    function ethDepositOf(address user) external view returns (uint256 amt);

    function usdDepositOf(address user) external view returns (uint256 amt);
}

// Check final sale tokens bought
interface ISale {
    function tokensBoughtOf(address user) external view returns (uint256 amt);
}

interface IClaimSale {
    function addLock(
        address user,
        uint256 reflection,
        uint256 locktime
    ) external;
}

File 3 of 3: owned.sol
// SPDX-License-Identifier: UNLICENSE

pragma solidity ^0.8.7;

contract Owned {
    address public owner;
    address public newOwner;

    event OwnershipChanged(address from, address to);

    constructor() {
        owner = msg.sender;
        emit OwnershipChanged(address(0), msg.sender);
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Only owner");
        _;
    }

    // owner can give super-rights to someone
    function giveOwnership(address user) external onlyOwner {
        require(user != address(0), "User renounceOwnership");
        newOwner = user;
    }

    // new owner need to accept
    function acceptOwnership() external {
        require(msg.sender == newOwner, "Only NewOwner");
        emit OwnershipChanged(owner, newOwner);
        owner = msg.sender;
        delete newOwner;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","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":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"OwnershipChanged","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":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addFeeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"giveOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isFeeFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"newOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFeeFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526a52b7d2dcc80cd2e40000006002556a52b7d2dcc80cd2e40000006000196200002e919062000508565b6200003c90600019620004d0565b6003553480156200004c57600080fd5b506040516200231a3803806200231a8339810160408190526200006f916200044a565b600080546001600160a01b0319163390811782556040805192835260208301919091527f0384899bd253d83b23daa4d29aaa2efe0563d1132b43101e9ad667235aeb951b910160405180910390a16000620000d56a52b7d2dcc80cd2e400000062000161565b505050506001600160a01b0385166000818152600560209081526040808320879055516a52b7d2dcc80cd2e4000000815295965091949093507fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92500160405180910390a350600080546001600160a01b0319166001600160a01b039290921691909117905562000561565b60008080808080806200017660648962000497565b9150620001848289620004d0565b92506200019e600a6a52b7d2dcc80cd2e400000062000497565b60025411156200021f57620001b560c88962000497565b905080620001d0600a6a52b7d2dcc80cd2e400000062000497565b620001dc91906200047c565b60025410156200021057620001fe600a6a52b7d2dcc80cd2e400000062000497565b6002546200020d9190620004d0565b90505b6200021c8184620004d0565b92505b60006200022b62000287565b905062000239818a620004ae565b9750620002478184620004ae565b9550620002558689620004d0565b965081156200027b576200026a8183620004ae565b9450620002788588620004d0565b96505b50919395979092949650565b6000808062000295620002ad565b9092509050620002a6818362000497565b9250505090565b6003546002546000918291825b600a5481101562000415578260056000600a8481548110620002e057620002e06200054b565b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806200034f57508160066000600a84815481106200032857620003286200054b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b156200036657600354600254945094505050509091565b60056000600a83815481106200038057620003806200054b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054620003b19084620004d0565b925060066000600a8381548110620003cd57620003cd6200054b565b60009182526020808320909101546001600160a01b03168352820192909252604001902054620003fe9083620004d0565b9150806200040c81620004ea565b915050620002ba565b60025460035462000427919062000497565b8310156200044057600354600254945094505050509091565b5090939092509050565b6000602082840312156200045d57600080fd5b81516001600160a01b03811681146200047557600080fd5b9392505050565b600082198211156200049257620004926200051f565b500190565b600082620004a957620004a962000535565b500490565b6000816000190483118215151615620004cb57620004cb6200051f565b500290565b600082821015620004e557620004e56200051f565b500390565b60006000198214156200050157620005016200051f565b5060010190565b6000826200051a576200051a62000535565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b611da980620005716000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806379cc679011610104578063b1b387d8116100a2578063dd62ed3e11610071578063dd62ed3e14610430578063e3a0a1481461045b578063f2cc0c181461046e578063f84354f11461048157600080fd5b8063b1b387d8146103d4578063c7e42b1b146103e7578063cba0e996146103fa578063d4ee1d901461041d57600080fd5b80639e36eda6116100de5780639e36eda614610383578063a0ef91df146103a6578063a457c2d7146103ae578063a9059cbb146103c157600080fd5b806379cc6790146103215780638da5cb5b1461033457806395d89b411461035f57600080fd5b80632d8381191161017c5780634549b0391161014b5780634549b039146102eb578063679aefce146102fe57806370a082311461030657806379ba50971461031957600080fd5b80632d83811914610298578063313ce567146102ab57806339509351146102c557806342966c68146102d857600080fd5b806313114a9d116101b857806313114a9d1461025857806313b5627e1461026a57806318160ddd1461027d57806323b872dd1461028557600080fd5b8063053ab182146101df57806306fdde03146101f4578063095ea7b314610235575b600080fd5b6101f26101ed366004611b23565b610494565b005b61021f6040518060400160405280600c81526020016b42696753686f72744265747360a01b81525081565b60405161022c9190611b8a565b60405180910390f35b610248610243366004611af9565b610592565b604051901515815260200161022c565b6004545b60405190815260200161022c565b6101f2610278366004611a6f565b6105a9565b60025461025c565b610248610293366004611abd565b6105f4565b61025c6102a6366004611b23565b6106d2565b6102b3601281565b60405160ff909116815260200161022c565b6102486102d3366004611af9565b610756565b6101f26102e6366004611b23565b610792565b61025c6102f9366004611b55565b6107d1565b61025c610859565b61025c610314366004611a6f565b610868565b6101f26108c7565b6101f261032f366004611af9565b61097c565b600054610347906001600160a01b031681565b6040516001600160a01b03909116815260200161022c565b61021f604051806040016040528060058152602001642134b3a9a160d91b81525081565b610248610391366004611a6f565b60086020526000908152604090205460ff1681565b6101f2610a7d565b6102486103bc366004611af9565b610ae4565b6102486103cf366004611af9565b610b9b565b6101f26103e2366004611a6f565b610ba8565b6101f26103f5366004611a6f565b610bf6565b610248610408366004611a6f565b60096020526000908152604090205460ff1681565b600154610347906001600160a01b031681565b61025c61043e366004611a8a565b600760209081526000928352604080842090915290825290205481565b6101f2610469366004611a6f565b610d4c565b6101f261047c366004611a6f565b610de7565b6101f261048f366004611a6f565b610f3a565b3360008181526009602052604090205460ff161561050e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084015b60405180910390fd5b6000610519836110ed565b50505050505090508060056000846001600160a01b03166001600160a01b0316815260200190815260200160002060008282546105569190611cdf565b92505081905550806003600082825461056f9190611cdf565b9250508190555082600460008282546105889190611c86565b9091555050505050565b600061059f3384846111f2565b5060015b92915050565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b0383166000908152600760209081526040808320338452909152812054828110156106795760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610505565b6000198110156106bc576001600160a01b0385166000908152600760209081526040808320338452909152812080548592906106b6908490611cdf565b90915550505b6106c7858585611317565b506001949350505050565b60006003548211156107395760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610505565b60006107436115cc565b905061074f8184611c9e565b9392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161059f91859061078d908690611c86565b6111f2565b336107af5760405162461bcd60e51b815260040161050590611c45565b60006107ba826110ed565b50505050505090506107cd3383836115ef565b5050565b60006002548311156108255760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610505565b8161084257610833836110ed565b509495506105a3945050505050565b61084b836110ed565b509398975050505050505050565b60006108636115cc565b905090565b6001600160a01b03811660009081526009602052604081205460ff16156108a557506001600160a01b031660009081526006602052604090205490565b6001600160a01b0382166000908152600560205260409020546105a3906106d2565b6001546001600160a01b031633146109115760405162461bcd60e51b815260206004820152600d60248201526c27b7363c902732bba7bbb732b960991b6044820152606401610505565b600054600154604080516001600160a01b0393841681529290911660208301527f0384899bd253d83b23daa4d29aaa2efe0563d1132b43101e9ad667235aeb951b910160405180910390a1600080546001600160a01b03199081163317909155600180549091169055565b6001600160a01b0382166109a25760405162461bcd60e51b815260040161050590611c45565b6001600160a01b0382166000908152600760209081526040808320338452909152902054811115610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610505565b6001600160a01b038216600090815260076020908152604080832033845290915281208054839290610a54908490611cdf565b9091555060009050610a65826110ed565b5050505050509050610a788383836115ef565b505050565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260040161050590611c21565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610ae1573d6000803e3d6000fd5b50565b3360009081526007602090815260408083206001600160a01b0386168452909152812054821115610b655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610505565b3360008181526007602090815260408083206001600160a01b038816845290915290205461059f9190859061078d908690611cdf565b600061059f338484611317565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610c205760405162461bcd60e51b815260040161050590611c21565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610c6257600080fd5b505afa158015610c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a9190611b3c565b905060008111610ce25760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610505565b60005460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb90604401600060405180830381600087803b158015610d3057600080fd5b505af1158015610d44573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610d765760405162461bcd60e51b815260040161050590611c21565b6001600160a01b038116610dc55760405162461bcd60e51b81526020600482015260166024820152750557365722072656e6f756e63654f776e6572736869760541b6044820152606401610505565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e115760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03811660009081526009602052604090205460ff1615610e7a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610505565b6001600160a01b03811660009081526005602052604090205415610ed4576001600160a01b038116600090815260056020526040902054610eba906106d2565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000546001600160a01b03163314610f645760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03811660009081526009602052604090205460ff16610fcc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610505565b60005b600a548110156107cd57816001600160a01b0316600a8281548110610ff657610ff6611d3d565b6000918252602090912001546001600160a01b031614156110db57600a805461102190600190611cdf565b8154811061103157611031611d3d565b600091825260209091200154600a80546001600160a01b03909216918390811061105d5761105d611d3d565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600990925220805460ff19169055600a8054806110b5576110b5611d27565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110e581611cf6565b915050610fcf565b6000808080808080611100606489611c9e565b915061110c8289611cdf565b9250611124600a6a52b7d2dcc80cd2e4000000611c9e565b60025411156111975761113860c889611c9e565b905080611151600a6a52b7d2dcc80cd2e4000000611c9e565b61115b9190611c86565b600254101561118a5761117a600a6a52b7d2dcc80cd2e4000000611c9e565b6002546111879190611cdf565b90505b6111948184611cdf565b92505b60006111a16115cc565b90506111ad818a611cc0565b97506111b98184611cc0565b95506111c58689611cdf565b965081156111e6576111d78183611cc0565b94506111e38588611cdf565b96505b50919395979092949650565b6001600160a01b0383166112545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610505565b6001600160a01b0382166112b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610505565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661137b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610505565b6001600160a01b0382166113dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610505565b8015611598576001600160a01b03831660009081526008602052604090205460ff161561140f57610a788383836116e6565b6000806000806000806000611423886110ed565b965096509650965096509650965086600560008c6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114669190611cdf565b90915550506001600160a01b038a1660009081526009602052604090205460ff16156114ba576001600160a01b038a16600090815260066020526040812080548a92906114b4908490611cdf565b90915550505b6001600160a01b038916600090815260056020526040812080548892906114e2908490611c86565b90915550506001600160a01b03891660009081526009602052604090205460ff1615611536576001600160a01b03891660009081526006602052604081208054859290611530908490611c86565b90915550505b611540858361183f565b80156115515761155184828c611873565b886001600160a01b03168a6001600160a01b0316600080516020611d548339815191528560405161158491815260200190565b60405180910390a350505050505050505050565b816001600160a01b0316836001600160a01b0316600080516020611d54833981519152600060405161130a91815260200190565b60008060006115d96118cf565b90925090506115e88183611c9e565b9250505090565b6001600160a01b0383166000908152600560205260409020548111156116275760405162461bcd60e51b815260040161050590611bdf565b6001600160a01b0383166000908152600560205260408120805483929061164f908490611cdf565b90915550506001600160a01b03831660009081526009602052604090205460ff16156116db576001600160a01b0383166000908152600660205260409020548211156116ad5760405162461bcd60e51b815260040161050590611bdf565b6001600160a01b038316600090815260066020526040812080548492906116d5908490611cdf565b90915550505b610a78818385611873565b60006116f1826110ed565b50505050505090508060056000866001600160a01b03166001600160a01b03168152602001908152602001600020600082825461172e9190611cdf565b90915550506001600160a01b03841660009081526009602052604090205460ff1615611782576001600160a01b0384166000908152600660205260408120805484929061177c908490611cdf565b90915550505b6001600160a01b038316600090815260056020526040812080548392906117aa908490611c86565b90915550506001600160a01b03831660009081526009602052604090205460ff16156117fe576001600160a01b038316600090815260066020526040812080548492906117f8908490611c86565b90915550505b826001600160a01b0316846001600160a01b0316600080516020611d548339815191528460405161183191815260200190565b60405180910390a350505050565b81600360008282546118519190611cdf565b92505081905550806004600082825461186a9190611c86565b90915550505050565b82600360008282546118859190611cdf565b92505081905550816002600082825461189e9190611cdf565b90915550506040518281526000906001600160a01b03831690600080516020611d548339815191529060200161130a565b6003546002546000918291825b600a54811015611a21578260056000600a84815481106118fe576118fe611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061196957508160066000600a848154811061194257611942611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561197f57600354600254945094505050509091565b60056000600a838154811061199657611996611d3d565b60009182526020808320909101546001600160a01b031683528201929092526040019020546119c59084611cdf565b925060066000600a83815481106119de576119de611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054611a0d9083611cdf565b915080611a1981611cf6565b9150506118dc565b600254600354611a319190611c9e565b831015611a4957600354600254945094505050509091565b5090939092509050565b80356001600160a01b0381168114611a6a57600080fd5b919050565b600060208284031215611a8157600080fd5b61074f82611a53565b60008060408385031215611a9d57600080fd5b611aa683611a53565b9150611ab460208401611a53565b90509250929050565b600080600060608486031215611ad257600080fd5b611adb84611a53565b9250611ae960208501611a53565b9150604084013590509250925092565b60008060408385031215611b0c57600080fd5b611b1583611a53565b946020939093013593505050565b600060208284031215611b3557600080fd5b5035919050565b600060208284031215611b4e57600080fd5b5051919050565b60008060408385031215611b6857600080fd5b8235915060208301358015158114611b7f57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611bb757858101830151858201604001528201611b9b565b81811115611bc9576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60008219821115611c9957611c99611d11565b500190565b600082611cbb57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611cda57611cda611d11565b500290565b600082821015611cf157611cf1611d11565b500390565b6000600019821415611d0a57611d0a611d11565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220281b525db88bc80889f4971e43143271149b60a97c552810a456a6732b2b351764736f6c6343000807003300000000000000000000000023e7f318c383a5e9af702ee11e342632006a23cc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806379cc679011610104578063b1b387d8116100a2578063dd62ed3e11610071578063dd62ed3e14610430578063e3a0a1481461045b578063f2cc0c181461046e578063f84354f11461048157600080fd5b8063b1b387d8146103d4578063c7e42b1b146103e7578063cba0e996146103fa578063d4ee1d901461041d57600080fd5b80639e36eda6116100de5780639e36eda614610383578063a0ef91df146103a6578063a457c2d7146103ae578063a9059cbb146103c157600080fd5b806379cc6790146103215780638da5cb5b1461033457806395d89b411461035f57600080fd5b80632d8381191161017c5780634549b0391161014b5780634549b039146102eb578063679aefce146102fe57806370a082311461030657806379ba50971461031957600080fd5b80632d83811914610298578063313ce567146102ab57806339509351146102c557806342966c68146102d857600080fd5b806313114a9d116101b857806313114a9d1461025857806313b5627e1461026a57806318160ddd1461027d57806323b872dd1461028557600080fd5b8063053ab182146101df57806306fdde03146101f4578063095ea7b314610235575b600080fd5b6101f26101ed366004611b23565b610494565b005b61021f6040518060400160405280600c81526020016b42696753686f72744265747360a01b81525081565b60405161022c9190611b8a565b60405180910390f35b610248610243366004611af9565b610592565b604051901515815260200161022c565b6004545b60405190815260200161022c565b6101f2610278366004611a6f565b6105a9565b60025461025c565b610248610293366004611abd565b6105f4565b61025c6102a6366004611b23565b6106d2565b6102b3601281565b60405160ff909116815260200161022c565b6102486102d3366004611af9565b610756565b6101f26102e6366004611b23565b610792565b61025c6102f9366004611b55565b6107d1565b61025c610859565b61025c610314366004611a6f565b610868565b6101f26108c7565b6101f261032f366004611af9565b61097c565b600054610347906001600160a01b031681565b6040516001600160a01b03909116815260200161022c565b61021f604051806040016040528060058152602001642134b3a9a160d91b81525081565b610248610391366004611a6f565b60086020526000908152604090205460ff1681565b6101f2610a7d565b6102486103bc366004611af9565b610ae4565b6102486103cf366004611af9565b610b9b565b6101f26103e2366004611a6f565b610ba8565b6101f26103f5366004611a6f565b610bf6565b610248610408366004611a6f565b60096020526000908152604090205460ff1681565b600154610347906001600160a01b031681565b61025c61043e366004611a8a565b600760209081526000928352604080842090915290825290205481565b6101f2610469366004611a6f565b610d4c565b6101f261047c366004611a6f565b610de7565b6101f261048f366004611a6f565b610f3a565b3360008181526009602052604090205460ff161561050e5760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b60648201526084015b60405180910390fd5b6000610519836110ed565b50505050505090508060056000846001600160a01b03166001600160a01b0316815260200190815260200160002060008282546105569190611cdf565b92505081905550806003600082825461056f9190611cdf565b9250508190555082600460008282546105889190611c86565b9091555050505050565b600061059f3384846111f2565b5060015b92915050565b6000546001600160a01b031633146105d35760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6001600160a01b0383166000908152600760209081526040808320338452909152812054828110156106795760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610505565b6000198110156106bc576001600160a01b0385166000908152600760209081526040808320338452909152812080548592906106b6908490611cdf565b90915550505b6106c7858585611317565b506001949350505050565b60006003548211156107395760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610505565b60006107436115cc565b905061074f8184611c9e565b9392505050565b3360008181526007602090815260408083206001600160a01b0387168452909152812054909161059f91859061078d908690611c86565b6111f2565b336107af5760405162461bcd60e51b815260040161050590611c45565b60006107ba826110ed565b50505050505090506107cd3383836115ef565b5050565b60006002548311156108255760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610505565b8161084257610833836110ed565b509495506105a3945050505050565b61084b836110ed565b509398975050505050505050565b60006108636115cc565b905090565b6001600160a01b03811660009081526009602052604081205460ff16156108a557506001600160a01b031660009081526006602052604090205490565b6001600160a01b0382166000908152600560205260409020546105a3906106d2565b6001546001600160a01b031633146109115760405162461bcd60e51b815260206004820152600d60248201526c27b7363c902732bba7bbb732b960991b6044820152606401610505565b600054600154604080516001600160a01b0393841681529290911660208301527f0384899bd253d83b23daa4d29aaa2efe0563d1132b43101e9ad667235aeb951b910160405180910390a1600080546001600160a01b03199081163317909155600180549091169055565b6001600160a01b0382166109a25760405162461bcd60e51b815260040161050590611c45565b6001600160a01b0382166000908152600760209081526040808320338452909152902054811115610a215760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b6064820152608401610505565b6001600160a01b038216600090815260076020908152604080832033845290915281208054839290610a54908490611cdf565b9091555060009050610a65826110ed565b5050505050509050610a788383836115ef565b505050565b6000546001600160a01b03163314610aa75760405162461bcd60e51b815260040161050590611c21565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f19350505050158015610ae1573d6000803e3d6000fd5b50565b3360009081526007602090815260408083206001600160a01b0386168452909152812054821115610b655760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610505565b3360008181526007602090815260408083206001600160a01b038816845290915290205461059f9190859061078d908690611cdf565b600061059f338484611317565b6000546001600160a01b03163314610bd25760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b03163314610c205760405162461bcd60e51b815260040161050590611c21565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b158015610c6257600080fd5b505afa158015610c76573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c9a9190611b3c565b905060008111610ce25760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974686472617760681b6044820152606401610505565b60005460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529083169063a9059cbb90604401600060405180830381600087803b158015610d3057600080fd5b505af1158015610d44573d6000803e3d6000fd5b505050505050565b6000546001600160a01b03163314610d765760405162461bcd60e51b815260040161050590611c21565b6001600160a01b038116610dc55760405162461bcd60e51b81526020600482015260166024820152750557365722072656e6f756e63654f776e6572736869760541b6044820152606401610505565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610e115760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03811660009081526009602052604090205460ff1615610e7a5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610505565b6001600160a01b03811660009081526005602052604090205415610ed4576001600160a01b038116600090815260056020526040902054610eba906106d2565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6000546001600160a01b03163314610f645760405162461bcd60e51b815260040161050590611c21565b6001600160a01b03811660009081526009602052604090205460ff16610fcc5760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c7564656400000000006044820152606401610505565b60005b600a548110156107cd57816001600160a01b0316600a8281548110610ff657610ff6611d3d565b6000918252602090912001546001600160a01b031614156110db57600a805461102190600190611cdf565b8154811061103157611031611d3d565b600091825260209091200154600a80546001600160a01b03909216918390811061105d5761105d611d3d565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600990925220805460ff19169055600a8054806110b5576110b5611d27565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b806110e581611cf6565b915050610fcf565b6000808080808080611100606489611c9e565b915061110c8289611cdf565b9250611124600a6a52b7d2dcc80cd2e4000000611c9e565b60025411156111975761113860c889611c9e565b905080611151600a6a52b7d2dcc80cd2e4000000611c9e565b61115b9190611c86565b600254101561118a5761117a600a6a52b7d2dcc80cd2e4000000611c9e565b6002546111879190611cdf565b90505b6111948184611cdf565b92505b60006111a16115cc565b90506111ad818a611cc0565b97506111b98184611cc0565b95506111c58689611cdf565b965081156111e6576111d78183611cc0565b94506111e38588611cdf565b96505b50919395979092949650565b6001600160a01b0383166112545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610505565b6001600160a01b0382166112b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610505565b6001600160a01b0383811660008181526007602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661137b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610505565b6001600160a01b0382166113dd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610505565b8015611598576001600160a01b03831660009081526008602052604090205460ff161561140f57610a788383836116e6565b6000806000806000806000611423886110ed565b965096509650965096509650965086600560008c6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546114669190611cdf565b90915550506001600160a01b038a1660009081526009602052604090205460ff16156114ba576001600160a01b038a16600090815260066020526040812080548a92906114b4908490611cdf565b90915550505b6001600160a01b038916600090815260056020526040812080548892906114e2908490611c86565b90915550506001600160a01b03891660009081526009602052604090205460ff1615611536576001600160a01b03891660009081526006602052604081208054859290611530908490611c86565b90915550505b611540858361183f565b80156115515761155184828c611873565b886001600160a01b03168a6001600160a01b0316600080516020611d548339815191528560405161158491815260200190565b60405180910390a350505050505050505050565b816001600160a01b0316836001600160a01b0316600080516020611d54833981519152600060405161130a91815260200190565b60008060006115d96118cf565b90925090506115e88183611c9e565b9250505090565b6001600160a01b0383166000908152600560205260409020548111156116275760405162461bcd60e51b815260040161050590611bdf565b6001600160a01b0383166000908152600560205260408120805483929061164f908490611cdf565b90915550506001600160a01b03831660009081526009602052604090205460ff16156116db576001600160a01b0383166000908152600660205260409020548211156116ad5760405162461bcd60e51b815260040161050590611bdf565b6001600160a01b038316600090815260066020526040812080548492906116d5908490611cdf565b90915550505b610a78818385611873565b60006116f1826110ed565b50505050505090508060056000866001600160a01b03166001600160a01b03168152602001908152602001600020600082825461172e9190611cdf565b90915550506001600160a01b03841660009081526009602052604090205460ff1615611782576001600160a01b0384166000908152600660205260408120805484929061177c908490611cdf565b90915550505b6001600160a01b038316600090815260056020526040812080548392906117aa908490611c86565b90915550506001600160a01b03831660009081526009602052604090205460ff16156117fe576001600160a01b038316600090815260066020526040812080548492906117f8908490611c86565b90915550505b826001600160a01b0316846001600160a01b0316600080516020611d548339815191528460405161183191815260200190565b60405180910390a350505050565b81600360008282546118519190611cdf565b92505081905550806004600082825461186a9190611c86565b90915550505050565b82600360008282546118859190611cdf565b92505081905550816002600082825461189e9190611cdf565b90915550506040518281526000906001600160a01b03831690600080516020611d548339815191529060200161130a565b6003546002546000918291825b600a54811015611a21578260056000600a84815481106118fe576118fe611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061196957508160066000600a848154811061194257611942611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561197f57600354600254945094505050509091565b60056000600a838154811061199657611996611d3d565b60009182526020808320909101546001600160a01b031683528201929092526040019020546119c59084611cdf565b925060066000600a83815481106119de576119de611d3d565b60009182526020808320909101546001600160a01b03168352820192909252604001902054611a0d9083611cdf565b915080611a1981611cf6565b9150506118dc565b600254600354611a319190611c9e565b831015611a4957600354600254945094505050509091565b5090939092509050565b80356001600160a01b0381168114611a6a57600080fd5b919050565b600060208284031215611a8157600080fd5b61074f82611a53565b60008060408385031215611a9d57600080fd5b611aa683611a53565b9150611ab460208401611a53565b90509250929050565b600080600060608486031215611ad257600080fd5b611adb84611a53565b9250611ae960208501611a53565b9150604084013590509250925092565b60008060408385031215611b0c57600080fd5b611b1583611a53565b946020939093013593505050565b600060208284031215611b3557600080fd5b5035919050565b600060208284031215611b4e57600080fd5b5051919050565b60008060408385031215611b6857600080fd5b8235915060208301358015158114611b7f57600080fd5b809150509250929050565b600060208083528351808285015260005b81811015611bb757858101830151858201604001528201611b9b565b81811115611bc9576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b6020808252600a908201526927b7363c9037bbb732b960b11b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60008219821115611c9957611c99611d11565b500190565b600082611cbb57634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615611cda57611cda611d11565b500290565b600082821015611cf157611cf1611d11565b500390565b6000600019821415611d0a57611d0a611d11565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220281b525db88bc80889f4971e43143271149b60a97c552810a456a6732b2b351764736f6c63430008070033

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

00000000000000000000000023e7f318c383a5e9af702ee11e342632006a23cc

-----Decoded View---------------
Arg [0] : _owner (address): 0x23E7f318C383a5e9af702EE11e342632006A23Cc

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000023e7f318c383a5e9af702ee11e342632006a23cc


Deployed Bytecode Sourcemap

5925:13361:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10068:363;;;;;;:::i;:::-;;:::i;:::-;;6208:44;;;;;;;;;;;;;;;-1:-1:-1;;;6208:44:0;;;;;;;;;;;;:::i;:::-;;;;;;;;7785:186;;;;;;:::i;:::-;;:::i;:::-;;;2921:14:3;;2914:22;2896:41;;2884:2;2869:18;7785:186:0;2756:187:3;7190:87:0;7260:10;;7190:87;;;3102:25:3;;;3090:2;3075:18;7190:87:0;2948:185:3;17626:96:0;;;;;;:::i;:::-;;:::i;7060:95::-;7141:7;;7060:95;;8003:491;;;;;;:::i;:::-;;:::i;11260:308::-;;;;;;:::i;:::-;;:::i;6303:35::-;;6336:2;6303:35;;;;;11013:4:3;11001:17;;;10983:36;;10971:2;10956:18;6303:35:0;10841:184:3;8531:266:0;;;;;;:::i;:::-;;:::i;9278:224::-;;;;;;:::i;:::-;;:::i;10662:441::-;;;;;;:::i;:::-;;:::i;15801:85::-;;;:::i;7306:232::-;;;;;;:::i;:::-;;:::i;638:202:2:-;;;:::i;9530:422:0:-;;;;;;:::i;:::-;;:::i;85:20:2:-;;;;;-1:-1:-1;;;;;85:20:2;;;;;;-1:-1:-1;;;;;2124:32:3;;;2106:51;;2094:2;2079:18;85:20:2;1960:203:3;6258:39:0;;;;;;;;;;;;;;;-1:-1:-1;;;6258:39:0;;;;;6905:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;18824:105;;;:::i;8834:420::-;;;;;;:::i;:::-;;:::i;7566:192::-;;;;;;:::i;:::-;;:::i;17433:92::-;;;;;;:::i;:::-;;:::i;19025:259::-;;;;;;:::i;:::-;;:::i;6953:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;111:23:2;;;;;-1:-1:-1;;;;;111:23:2;;;6825:73:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;449:151:2;;;;;;:::i;:::-;;:::i;17849:322:0:-;;;;;;:::i;:::-;;:::i;18286:470::-;;;;;;:::i;:::-;;:::i;10068:363::-;10138:10;10121:14;10180:18;;;:10;:18;;;;;;;;10179:19;10158:110;;;;-1:-1:-1;;;10158:110:0;;9700:2:3;10158:110:0;;;9682:21:3;9739:2;9719:18;;;9712:30;9778:34;9758:18;;;9751:62;-1:-1:-1;;;9829:18:3;;;9822:42;9881:19;;10158:110:0;;;;;;;;;10279:15;10310:19;10321:7;10310:10;:19::i;:::-;10278:51;;;;;;;;10358:7;10339;:15;10347:6;-1:-1:-1;;;;;10339:15:0;-1:-1:-1;;;;;10339:15:0;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;10386:7;10375;;:18;;;;;;;:::i;:::-;;;;;;;;10417:7;10403:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;10068:363:0:o;7785:186::-;7886:4;7906:37;7915:10;7927:7;7936:6;7906:8;:37::i;:::-;-1:-1:-1;7960:4:0;7785:186;;;;;:::o;17626:96::-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17692:15:0::1;17710:5;17692:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;17692:23:0::1;::::0;;17626:96::o;8003:491::-;-1:-1:-1;;;;;8163:17:0;;8133:4;8163:17;;;:9;:17;;;;;;;;8181:10;8163:29;;;;;;;;8210:13;;;;8202:66;;;;-1:-1:-1;;;8202:66:0;;7322:2:3;8202:66:0;;;7304:21:3;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:3;;;7444:38;7499:19;;8202:66:0;7120:404:3;8202:66:0;-1:-1:-1;;8346:3:0;:9;8342:79;;;-1:-1:-1;;;;;8371:17:0;;;;;;:9;:17;;;;;;;;8389:10;8371:29;;;;;;;:39;;8404:6;;8371:17;:39;;8404:6;;8371:39;:::i;:::-;;;;-1:-1:-1;;8342:79:0;8430:36;8440:6;8448:9;8459:6;8430:9;:36::i;:::-;-1:-1:-1;8483:4:0;;8003:491;-1:-1:-1;;;;8003:491:0:o;11260:308::-;11351:7;11406;;11395;:18;;11374:107;;;;-1:-1:-1;;;11374:107:0;;5436:2:3;11374:107:0;;;5418:21:3;5475:2;5455:18;;;5448:30;5514:34;5494:18;;;5487:62;-1:-1:-1;;;5565:18:3;;;5558:40;5615:19;;11374:107:0;5234:406:3;11374:107:0;11491:19;11513:10;:8;:10::i;:::-;11491:32;-1:-1:-1;11540:21:0;11491:32;11540:7;:21;:::i;:::-;11533:28;11260:308;-1:-1:-1;;;11260:308:0:o;8531:266::-;8671:10;8629:4;8716:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;8716:30:0;;;;;;;;;;8629:4;;8649:120;;8695:7;;8716:43;;8749:10;;8716:43;:::i;:::-;8649:8;:120::i;9278:224::-;9335:10;9327:64;;;;-1:-1:-1;;;9327:64:0;;;;;;;:::i;:::-;9402:15;9433:18;9444:6;9433:10;:18::i;:::-;9401:50;;;;;;;;9461:34;9467:10;9479:6;9487:7;9461:5;:34::i;:::-;9317:185;9278:224;:::o;10662:441::-;10779:14;10828:7;;10817;:18;;10809:62;;;;-1:-1:-1;;;10809:62:0;;6962:2:3;10809:62:0;;;6944:21:3;7001:2;6981:18;;;6974:30;7040:33;7020:18;;;7013:61;7091:18;;10809:62:0;6760:355:3;10809:62:0;10886:17;10881:216;;10964:19;10975:7;10964:10;:19::i;:::-;-1:-1:-1;10941:42:0;;-1:-1:-1;10881:216:0;;-1:-1:-1;;;;;10881:216:0;;11067:19;11078:7;11067:10;:19::i;:::-;-1:-1:-1;11044:42:0;;10662:441;-1:-1:-1;;;;;;;;10662:441:0:o;15801:85::-;15843:7;15869:10;:8;:10::i;:::-;15862:17;;15801:85;:::o;7306:232::-;-1:-1:-1;;;;;7433:19:0;;7406:7;7433:19;;;:10;:19;;;;;;;;7429:48;;;-1:-1:-1;;;;;;7461:16:0;;;;;:7;:16;;;;;;;7306:232::o;7429:48::-;-1:-1:-1;;;;;7514:16:0;;;;;;:7;:16;;;;;;7494:37;;:19;:37::i;638:202:2:-;706:8;;-1:-1:-1;;;;;706:8:2;692:10;:22;684:48;;;;-1:-1:-1;;;684:48:2;;10519:2:3;684:48:2;;;10501:21:3;10558:2;10538:18;;;10531:30;-1:-1:-1;;;10577:18:3;;;10570:43;10630:18;;684:48:2;10317:337:3;684:48:2;764:5;;;771:8;747:33;;;-1:-1:-1;;;;;764:5:2;;;2380:34:3;;771:8:2;;;;2445:2:3;2430:18;;2423:43;747:33:2;;2315:18:3;747:33:2;;;;;;;790:5;:18;;-1:-1:-1;;;;;;790:18:2;;;798:10;790:18;;;;;818:15;;;;;;;638:202::o;9530:422:0:-;-1:-1:-1;;;;;9608:15:0;;9600:61;;;;-1:-1:-1;;;9600:61:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9692:18:0;;;;;;:9;:18;;;;;;;;9711:10;9692:30;;;;;;;;:40;-1:-1:-1;9692:40:0;9671:123;;;;-1:-1:-1;;;9671:123:0;;7731:2:3;9671:123:0;;;7713:21:3;7770:2;7750:18;;;7743:30;7809:34;7789:18;;;7782:62;-1:-1:-1;;;7860:18:3;;;7853:34;7904:19;;9671:123:0;7529:400:3;9671:123:0;-1:-1:-1;;;;;9804:18:0;;;;;;:9;:18;;;;;;;;9823:10;9804:30;;;;;;;:40;;9838:6;;9804:18;:40;;9838:6;;9804:40;:::i;:::-;;;;-1:-1:-1;9855:15:0;;-1:-1:-1;9886:18:0;9897:6;9886:10;:18::i;:::-;9854:50;;;;;;;;9914:31;9920:7;9929:6;9937:7;9914:5;:31::i;:::-;9590:362;9530:422;;:::o;18824:105::-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;18884:5:0::1;::::0;;18876:46:::1;::::0;-1:-1:-1;;;;;18884:5:0;;::::1;::::0;18900:21:::1;18876:46:::0;::::1;;;::::0;18900:21;;18876:46;18884:5;18876:46;18900:21;18884:5;18876:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;18824:105::o:0;8834:420::-;8988:10;8937:4;8978:21;;;:9;:21;;;;;;;;-1:-1:-1;;;;;8978:30:0;;;;;;;;;;:49;-1:-1:-1;8978:49:0;8957:133;;;;-1:-1:-1;;;8957:133:0;;10113:2:3;8957:133:0;;;10095:21:3;10152:2;10132:18;;;10125:30;10191:34;10171:18;;;10164:62;-1:-1:-1;;;10242:18:3;;;10235:35;10287:19;;8957:133:0;9911:401:3;8957:133:0;9122:10;9167:21;;;;:9;:21;;;;;;;;-1:-1:-1;;;;;9167:30:0;;;;;;;;;;9100:125;;9122:10;9146:7;;9167:48;;9200:15;;9167:48;:::i;7566:192::-;7670:4;7690:40;7700:10;7712:9;7723:6;7690:9;:40::i;17433:92::-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17496:15:0::1;;::::0;;;:9:::1;:15;::::0;;;;:22;;-1:-1:-1;;17496:22:0::1;17514:4;17496:22;::::0;;17433:92::o;19025:259::-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;19110:38:0::1;::::0;-1:-1:-1;;;19110:38:0;;19142:4:::1;19110:38;::::0;::::1;2106:51:3::0;19092:15:0::1;::::0;-1:-1:-1;;;;;19110:23:0;::::1;::::0;::::1;::::0;2079:18:3;;19110:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19092:56;;19176:1;19166:7;:11;19158:43;;;::::0;-1:-1:-1;;;19158:43:0;;5088:2:3;19158:43:0::1;::::0;::::1;5070:21:3::0;5127:2;5107:18;;;5100:30;-1:-1:-1;;;5146:18:3;;;5139:49;5205:18;;19158:43:0::1;4886:343:3::0;19158:43:0::1;19262:5;::::0;19240:37:::1;::::0;-1:-1:-1;;;19240:37:0;;-1:-1:-1;;;;;19262:5:0;;::::1;19240:37;::::0;::::1;2651:51:3::0;2718:18;;;2711:34;;;19240:21:0;;::::1;::::0;::::1;::::0;2624:18:3;;19240:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;19082:202;19025:259:::0;:::o;449:151:2:-;359:5;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;523:18:2;::::1;515:53;;;::::0;-1:-1:-1;;;515:53:2;;8944:2:3;515:53:2::1;::::0;::::1;8926:21:3::0;8983:2;8963:18;;;8956:30;-1:-1:-1;;;9002:18:3;;;8995:52;9064:18;;515:53:2::1;8742:346:3::0;515:53:2::1;578:8;:15:::0;;-1:-1:-1;;;;;;578:15:2::1;-1:-1:-1::0;;;;;578:15:2;;;::::1;::::0;;;::::1;::::0;;449:151::o;17849:322:0:-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;17928:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;::::1;;17927:20;17919:60;;;::::0;-1:-1:-1;;;17919:60:0;;6250:2:3;17919:60:0::1;::::0;::::1;6232:21:3::0;6289:2;6269:18;;;6262:30;6328:29;6308:18;;;6301:57;6375:18;;17919:60:0::1;6048:351:3::0;17919:60:0::1;-1:-1:-1::0;;;;;17993:16:0;::::1;18012:1;17993:16:::0;;;:7:::1;:16;::::0;;;;;:20;17989:107:::1;;-1:-1:-1::0;;;;;18068:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;18048:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;18029:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;17989:107:::1;-1:-1:-1::0;;;;;18105:19:0::1;;::::0;;;:10:::1;:19;::::0;;;;:26;;-1:-1:-1;;18105:26:0::1;18127:4;18105:26:::0;;::::1;::::0;;;18141:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;18141:23:0::1;::::0;;::::1;::::0;;17849:322::o;18286:470::-;359:5:2;;-1:-1:-1;;;;;359:5:2;345:10;:19;337:42;;;;-1:-1:-1;;;337:42:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;18364:19:0;::::1;;::::0;;;:10:::1;:19;::::0;;;;;::::1;;18356:59;;;::::0;-1:-1:-1;;;18356:59:0;;6606:2:3;18356:59:0::1;::::0;::::1;6588:21:3::0;6645:2;6625:18;;;6618:30;6684:29;6664:18;;;6657:57;6731:18;;18356:59:0::1;6404:351:3::0;18356:59:0::1;18425:9;18444:306;18456:9;:16:::0;18452:20;::::1;18444:306;;;18513:7;-1:-1:-1::0;;;;;18497:23:0::1;:9;18507:1;18497:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;18497:12:0::1;:23;18493:247;;;18555:9;18565:16:::0;;:20:::1;::::0;18584:1:::1;::::0;18565:20:::1;:::i;:::-;18555:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;18540:9:::1;:12:::0;;-1:-1:-1;;;;;18555:31:0;;::::1;::::0;18550:1;;18540:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;18540:46:0::1;-1:-1:-1::0;;;;;18540:46:0;;::::1;;::::0;;18604:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;18642:10:::1;:19:::0;;;;:27;;-1:-1:-1;;18642:27:0::1;::::0;;18687:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;18687:15:0;;;;;-1:-1:-1;;;;;;18687:15:0::1;::::0;;;;;9317:185;9278:224;:::o;18493:247::-:1;18474:3:::0;::::1;::::0;::::1;:::i;:::-;;;;18444:306;;14857:938:::0;14953:15;;;;;;;15180:13;15190:3;15180:7;:13;:::i;:::-;15173:20;-1:-1:-1;15239:14:0;15173:20;15239:7;:14;:::i;:::-;15221:32;-1:-1:-1;6513:19:0;6530:2;6441:22;6513:19;:::i;:::-;15267:7;;:26;15263:252;;;15317:13;15327:3;15317:7;:13;:::i;:::-;15309:21;-1:-1:-1;15309:21:0;6513:19;6530:2;6441:22;6513:19;:::i;:::-;15374:24;;;;:::i;:::-;15364:7;;:34;15360:107;;;6513:19;6530:2;6441:22;6513:19;:::i;:::-;15426:7;;:26;;;;:::i;:::-;15418:34;;15360:107;15480:24;15499:5;15480:24;;:::i;:::-;;;15263:252;15524:19;15546:10;:8;:10::i;:::-;15524:32;-1:-1:-1;15576:21:0;15524:32;15576:7;:21;:::i;:::-;15566:31;-1:-1:-1;15614:18:0;15621:11;15614:4;:18;:::i;:::-;15607:25;-1:-1:-1;15660:14:0;15607:25;15660:7;:14;:::i;:::-;15642:32;-1:-1:-1;15688:9:0;;15684:105;;15721:19;15729:11;15721:5;:19;:::i;:::-;15713:27;-1:-1:-1;15754:24:0;15713:27;15754:24;;:::i;:::-;;;15684:105;15163:632;14857:938;;;;;;;;;:::o;11765:351::-;-1:-1:-1;;;;;11888:14:0;;11880:63;;;;-1:-1:-1;;;11880:63:0;;9295:2:3;11880:63:0;;;9277:21:3;9334:2;9314:18;;;9307:30;9373:34;9353:18;;;9346:62;-1:-1:-1;;;9424:18:3;;;9417:34;9468:19;;11880:63:0;9093:400:3;11880:63:0;-1:-1:-1;;;;;11961:15:0;;11953:62;;;;-1:-1:-1;;;11953:62:0;;5847:2:3;11953:62:0;;;5829:21:3;5886:2;5866:18;;;5859:30;5925:34;5905:18;;;5898:62;-1:-1:-1;;;5976:18:3;;;5969:32;6018:19;;11953:62:0;5645:398:3;11953:62:0;-1:-1:-1;;;;;12026:17:0;;;;;;;:9;:17;;;;;;;;:26;;;;;;;;;;;;;:35;;;12076:33;;3102:25:3;;;12076:33:0;;3075:18:3;12076:33:0;;;;;;;;11765:351;;;:::o;12321:1347::-;-1:-1:-1;;;;;12448:14:0;;12440:64;;;;-1:-1:-1;;;12440:64:0;;8538:2:3;12440:64:0;;;8520:21:3;8577:2;8557:18;;;8550:30;8616:34;8596:18;;;8589:62;-1:-1:-1;;;8667:18:3;;;8660:35;8712:19;;12440:64:0;8336:401:3;12440:64:0;-1:-1:-1;;;;;12522:17:0;;12514:65;;;;-1:-1:-1;;;12514:65:0;;3942:2:3;12514:65:0;;;3924:21:3;3981:2;3961:18;;;3954:30;4020:34;4000:18;;;3993:62;-1:-1:-1;;;4071:18:3;;;4064:33;4114:19;;12514:65:0;3740:399:3;12514:65:0;12593:11;;12589:1072;;-1:-1:-1;;;;;12624:17:0;;;;;;:9;:17;;;;;;;;12620:990;;;12661:44;12678:6;12686:9;12697:7;12661:16;:44::i;12620:990::-;12766:15;12803:23;12848:12;12882:13;12917:23;12962:12;12996:13;13030:19;13041:7;13030:10;:19::i;:::-;12744:305;;;;;;;;;;;;;;13087:7;13068;:15;13076:6;-1:-1:-1;;;;;13068:15:0;-1:-1:-1;;;;;13068:15:0;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13116:18:0;;;;;;:10;:18;;;;;;;;13112:91;;;-1:-1:-1;;;;;13158:15:0;;;;;;:7;:15;;;;;:26;;13177:7;;13158:15;:26;;13177:7;;13158:26;:::i;:::-;;;;-1:-1:-1;;13112:91:0;-1:-1:-1;;;;;13220:18:0;;;;;;:7;:18;;;;;:37;;13242:15;;13220:18;:37;;13242:15;;13220:37;:::i;:::-;;;;-1:-1:-1;;;;;;;13279:21:0;;;;;;:10;:21;;;;;;;;13275:105;;;-1:-1:-1;;;;;13324:18:0;;;;;;:7;:18;;;;;:37;;13346:15;;13324:18;:37;;13346:15;;13324:37;:::i;:::-;;;;-1:-1:-1;;13275:105:0;13398:23;13410:4;13416;13398:11;:23::i;:::-;13443:9;;13439:90;;13476:34;13489:5;13496;13503:6;13476:12;:34::i;:::-;13568:9;-1:-1:-1;;;;;13551:44:0;13560:6;-1:-1:-1;;;;;13551:44:0;-1:-1:-1;;;;;;;;;;;13579:15:0;13551:44;;;;3102:25:3;;3090:2;3075:18;;2948:185;13551:44:0;;;;;;;;12726:884;;;;;;;9590:362;9530:422;;:::o;12589:1072::-;13648:9;-1:-1:-1;;;;;13631:30:0;13640:6;-1:-1:-1;;;;;13631:30:0;-1:-1:-1;;;;;;;;;;;13659:1:0;13631:30;;;;3102:25:3;;3090:2;3075:18;;2948:185;15931:158:0;15973:7;15993:15;16010;16029:19;:17;:19::i;:::-;15992:56;;-1:-1:-1;15992:56:0;-1:-1:-1;16065:17:0;15992:56;;16065:17;:::i;:::-;16058:24;;;;15931:158;:::o;16743:536::-;-1:-1:-1;;;;;16878:16:0;;;;;;:7;:16;;;;;;:27;-1:-1:-1;16878:27:0;16857:108;;;;-1:-1:-1;;;16857:108:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16975:16:0;;;;;;:7;:16;;;;;:27;;16995:7;;16975:16;:27;;16995:7;;16975:27;:::i;:::-;;;;-1:-1:-1;;;;;;;17016:19:0;;;;;;:10;:19;;;;;;;;17012:212;;;-1:-1:-1;;;;;17076:16:0;;;;;;:7;:16;;;;;;:27;-1:-1:-1;17076:27:0;17051:120;;;;-1:-1:-1;;;17051:120:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17186:16:0;;;;;;:7;:16;;;;;:27;;17206:7;;17186:16;:27;;17206:7;;17186:27;:::i;:::-;;;;-1:-1:-1;;17012:212:0;17233:39;17246:7;17255;17264;17233:12;:39::i;13877:484::-;14004:15;14035:19;14046:7;14035:10;:19::i;:::-;14003:51;;;;;;;;14083:7;14064;:15;14072:6;-1:-1:-1;;;;;14064:15:0;-1:-1:-1;;;;;14064:15:0;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;14104:18:0;;;;;;:10;:18;;;;;;;;14100:75;;;-1:-1:-1;;;;;14138:15:0;;;;;;:7;:15;;;;;:26;;14157:7;;14138:15;:26;;14157:7;;14138:26;:::i;:::-;;;;-1:-1:-1;;14100:75:0;-1:-1:-1;;;;;14184:18:0;;;;;;:7;:18;;;;;:29;;14206:7;;14184:18;:29;;14206:7;;14184:29;:::i;:::-;;;;-1:-1:-1;;;;;;;14227:21:0;;;;;;:10;:21;;;;;;;;14223:81;;;-1:-1:-1;;;;;14264:18:0;;;;;;:7;:18;;;;;:29;;14286:7;;14264:18;:29;;14286:7;;14264:29;:::i;:::-;;;;-1:-1:-1;;14223:81:0;14335:9;-1:-1:-1;;;;;14318:36:0;14327:6;-1:-1:-1;;;;;14318:36:0;-1:-1:-1;;;;;;;;;;;14346:7:0;14318:36;;;;3102:25:3;;3090:2;3075:18;;2948:185;14318:36:0;;;;;;;;13993:368;13877:484;;;:::o;14412:117::-;14490:4;14479:7;;:15;;;;;;;:::i;:::-;;;;;;;;14518:4;14504:10;;:18;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;14412:117:0:o;14581:211::-;14709:5;14698:7;;:16;;;;;;;:::i;:::-;;;;;;;;14735:5;14724:7;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;;14755:30:0;;3102:25:3;;;6719:1:0;;-1:-1:-1;;;;;14755:30:0;;;-1:-1:-1;;;;;;;;;;;14755:30:0;3090:2:3;3075:18;14755:30:0;2948:185:3;16134:572:0;16231:7;;16266;;16185;;;;;16302:295;16314:9;:16;16310:20;;16302:295;;;16396:7;16372;:21;16380:9;16390:1;16380:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;16380:12:0;16372:21;;;;;;;;;;;;;:31;;:82;;;16447:7;16423;:21;16431:9;16441:1;16431:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;16431:12:0;16423:21;;;;;;;;;;;;;:31;16372:82;16351:143;;;16477:7;;16486;;16469:25;;;;;;;16134:572;;:::o;16351:143::-;16519:7;:21;16527:9;16537:1;16527:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;16527:12:0;16519:21;;;;;;;;;;;;;16508:32;;;;:::i;:::-;;;16565:7;:21;16573:9;16583:1;16573:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;16573:12:0;16565:21;;;;;;;;;;;;;16554:32;;;;:::i;:::-;;-1:-1:-1;16332:3:0;;;;:::i;:::-;;;;16302:295;;;16630:7;;16620;;:17;;;;:::i;:::-;16610:7;:27;16606:58;;;16647:7;;16656;;16639:25;;;;;;;16134:572;;:::o;16606:58::-;-1:-1:-1;16682:7:0;;16691;;-1:-1:-1;16134:572:0;-1:-1:-1;16134:572:0:o;14:173:3:-;82:20;;-1:-1:-1;;;;;131:31:3;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:3:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:3;;1240:180;-1:-1:-1;1240:180:3:o;1425:184::-;1495:6;1548:2;1536:9;1527:7;1523:23;1519:32;1516:52;;;1564:1;1561;1554:12;1516:52;-1:-1:-1;1587:16:3;;1425:184;-1:-1:-1;1425:184:3:o;1614:341::-;1679:6;1687;1740:2;1728:9;1719:7;1715:23;1711:32;1708:52;;;1756:1;1753;1746:12;1708:52;1792:9;1779:23;1769:33;;1852:2;1841:9;1837:18;1824:32;1899:5;1892:13;1885:21;1878:5;1875:32;1865:60;;1921:1;1918;1911:12;1865:60;1944:5;1934:15;;;1614:341;;;;;:::o;3138:597::-;3250:4;3279:2;3308;3297:9;3290:21;3340:6;3334:13;3383:6;3378:2;3367:9;3363:18;3356:34;3408:1;3418:140;3432:6;3429:1;3426:13;3418:140;;;3527:14;;;3523:23;;3517:30;3493:17;;;3512:2;3489:26;3482:66;3447:10;;3418:140;;;3576:6;3573:1;3570:13;3567:91;;;3646:1;3641:2;3632:6;3621:9;3617:22;3613:31;3606:42;3567:91;-1:-1:-1;3719:2:3;3698:15;-1:-1:-1;;3694:29:3;3679:45;;;;3726:2;3675:54;;3138:597;-1:-1:-1;;;3138:597:3:o;4144:398::-;4346:2;4328:21;;;4385:2;4365:18;;;4358:30;4424:34;4419:2;4404:18;;4397:62;-1:-1:-1;;;4490:2:3;4475:18;;4468:32;4532:3;4517:19;;4144:398::o;4547:334::-;4749:2;4731:21;;;4788:2;4768:18;;;4761:30;-1:-1:-1;;;4822:2:3;4807:18;;4800:40;4872:2;4857:18;;4547:334::o;7934:397::-;8136:2;8118:21;;;8175:2;8155:18;;;8148:30;8214:34;8209:2;8194:18;;8187:62;-1:-1:-1;;;8280:2:3;8265:18;;8258:31;8321:3;8306:19;;7934:397::o;11030:128::-;11070:3;11101:1;11097:6;11094:1;11091:13;11088:39;;;11107:18;;:::i;:::-;-1:-1:-1;11143:9:3;;11030:128::o;11163:217::-;11203:1;11229;11219:132;;11273:10;11268:3;11264:20;11261:1;11254:31;11308:4;11305:1;11298:15;11336:4;11333:1;11326:15;11219:132;-1:-1:-1;11365:9:3;;11163:217::o;11385:168::-;11425:7;11491:1;11487;11483:6;11479:14;11476:1;11473:21;11468:1;11461:9;11454:17;11450:45;11447:71;;;11498:18;;:::i;:::-;-1:-1:-1;11538:9:3;;11385:168::o;11558:125::-;11598:4;11626:1;11623;11620:8;11617:34;;;11631:18;;:::i;:::-;-1:-1:-1;11668:9:3;;11558:125::o;11688:135::-;11727:3;-1:-1:-1;;11748:17:3;;11745:43;;;11768:18;;:::i;:::-;-1:-1:-1;11815:1:3;11804:13;;11688:135::o;11828:127::-;11889:10;11884:3;11880:20;11877:1;11870:31;11920:4;11917:1;11910:15;11944:4;11941:1;11934:15;11960:127;12021:10;12016:3;12012:20;12009:1;12002:31;12052:4;12049:1;12042:15;12076:4;12073:1;12066:15;12092:127;12153:10;12148:3;12144:20;12141:1;12134:31;12184:4;12181:1;12174:15;12208:4;12205:1;12198:15

Swarm Source

ipfs://281b525db88bc80889f4971e43143271149b60a97c552810a456a6732b2b3517
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.