ETH Price: $2,292.10 (-2.21%)

Token

Discord (DISCORD)
 

Overview

Max Total Supply

100,000,000 DISCORD

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
936,330.961124216341205183 DISCORD

Value
$0.00
0x0bd291c0766cafdd5f12eb40db772cf2790d2ba5
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TaxToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : TaxToken.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {Context, Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {SafeMath} from "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol";
import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol";

contract TaxToken is Context, IERC20, Ownable {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;

    mapping(address => uint256) private _rOwned;
    mapping(address => uint256) private _tOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    uint256 private constant MAX = ~uint256(0);
    uint256 private constant _tTotal = 100000000 * 10 ** 18;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;
    uint256 private _redisFeeOnBuy = 0;
    uint256 private _taxFeeOnBuy = 5;
    uint256 private _redisFeeOnSell = 0;
    uint256 private _taxFeeOnSell = 15;

    //Original Fee
    uint256 private _redisFee = _redisFeeOnSell;
    uint256 private _taxFee = _taxFeeOnSell;

    uint256 private _previousredisFee = _redisFee;
    uint256 private _previoustaxFee = _taxFee;

    mapping(address => bool) public bots;
    mapping(address => uint256) public _buyMap;
    address payable private _developmentAddress;
    address payable private _marketingAddress;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private inSwap = false;
    bool private swapEnabled = true;

    uint256 public _maxTxAmount = 1000000 * 10 ** 18;
    uint256 public _maxWalletSize = 1000000 * 10 ** 18;
    uint256 public _swapTokensAtAmount = 1000 * 10 ** 18;

    event MaxTxAmountUpdated(uint256 _maxTxAmount);
    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(string memory __name, string memory __symbol) {
        _name = __name;
        _symbol = __symbol;
        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        _developmentAddress = payable(msg.sender);
        _marketingAddress = payable(msg.sender);

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_developmentAddress] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(
        address owner,
        address spender
    ) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function tokenFromReflection(
        uint256 rAmount
    ) private view returns (uint256) {
        require(
            rAmount <= _rTotal,
            "Amount must be less than total reflections"
        );
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function removeAllFee() private {
        if (_redisFee == 0 && _taxFee == 0) return;

        _previousredisFee = _redisFee;
        _previoustaxFee = _taxFee;

        _redisFee = 0;
        _taxFee = 0;
    }

    function restoreAllFee() private {
        _redisFee = _previousredisFee;
        _taxFee = _previoustaxFee;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");

        if (from != owner() && to != owner()) {
            require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit");
            require(
                !bots[from] && !bots[to],
                "TOKEN: Your account is blacklisted!"
            );

            if (to != uniswapV2Pair) {
                require(
                    balanceOf(to) + amount < _maxWalletSize,
                    "TOKEN: Balance exceeds wallet size!"
                );
            }

            uint256 contractTokenBalance = balanceOf(address(this));
            bool canSwap = contractTokenBalance >= _swapTokensAtAmount;

            if (contractTokenBalance >= _maxTxAmount) {
                contractTokenBalance = _maxTxAmount;
            }

            if (
                canSwap &&
                !inSwap &&
                from != uniswapV2Pair &&
                swapEnabled &&
                !_isExcludedFromFee[from] &&
                !_isExcludedFromFee[to]
            ) {
                swapTokensForEth(contractTokenBalance);
                uint256 contractETHBalance = address(this).balance;
                if (contractETHBalance > 0) {
                    sendETHToFee(address(this).balance);
                }
            }
        }

        bool takeFee = true;

        //Transfer Tokens
        if (
            (_isExcludedFromFee[from] || _isExcludedFromFee[to]) ||
            (from != uniswapV2Pair && to != uniswapV2Pair)
        ) {
            takeFee = false;
        } else {
            //Set Fee for Buys
            if (from == uniswapV2Pair && to != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnBuy;
                _taxFee = _taxFeeOnBuy;
            }

            //Set Fee for Sells
            if (to == uniswapV2Pair && from != address(uniswapV2Router)) {
                _redisFee = _redisFeeOnSell;
                _taxFee = _taxFeeOnSell;
            }
        }

        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapTokensForEth(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function sendETHToFee(uint256 amount) private {
        _marketingAddress.transfer(amount);
    }

    function manualswap() external {
        require(
            _msgSender() == _developmentAddress ||
                _msgSender() == _marketingAddress
        );
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualsend() external {
        require(
            _msgSender() == _developmentAddress ||
                _msgSender() == _marketingAddress
        );
        uint256 contractETHBalance = address(this).balance;
        sendETHToFee(contractETHBalance);
    }

    function blockBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function unblockBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (!takeFee) removeAllFee();
        _transferStandard(sender, recipient, amount);
        if (!takeFee) restoreAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tTeam
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeTeam(tTeam);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _takeTeam(uint256 tTeam) private {
        uint256 currentRate = _getRate();
        uint256 rTeam = tTeam.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rTeam);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    receive() external payable {}

    function _getValues(
        uint256 tAmount
    )
        private
        view
        returns (uint256, uint256, uint256, uint256, uint256, uint256)
    {
        (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues(
            tAmount,
            _redisFee,
            _taxFee
        );
        uint256 currentRate = _getRate();
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tTeam,
            currentRate
        );
        return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam);
    }

    function _getTValues(
        uint256 tAmount,
        uint256 redisFee,
        uint256 taxFee
    ) private pure returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.mul(redisFee).div(100);
        uint256 tTeam = tAmount.mul(taxFee).div(100);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam);
        return (tTransferAmount, tFee, tTeam);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tTeam,
        uint256 currentRate
    ) private pure returns (uint256, uint256, uint256) {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rTeam = tTeam.mul(currentRate);
        uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam);
        return (rAmount, rTransferAmount, rFee);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function setFee(
        uint256 redisFeeOnBuy,
        uint256 redisFeeOnSell,
        uint256 taxFeeOnBuy,
        uint256 taxFeeOnSell
    ) public onlyOwner {
        require(
            redisFeeOnBuy >= 0 && redisFeeOnBuy <= 4,
            "Buy rewards must be between 0% and 4%"
        );
        require(
            taxFeeOnBuy >= 0 && taxFeeOnBuy <= 99,
            "Buy tax must be between 0% and 99%"
        );
        require(
            redisFeeOnSell >= 0 && redisFeeOnSell <= 4,
            "Sell rewards must be between 0% and 4%"
        );
        require(
            taxFeeOnSell >= 0 && taxFeeOnSell <= 99,
            "Sell tax must be between 0% and 99%"
        );

        _redisFeeOnBuy = redisFeeOnBuy;
        _redisFeeOnSell = redisFeeOnSell;
        _taxFeeOnBuy = taxFeeOnBuy;
        _taxFeeOnSell = taxFeeOnSell;
    }

    //Set minimum tokens required to swap.
    function setMinSwapTokensThreshold(
        uint256 swapTokensAtAmount
    ) public onlyOwner {
        _swapTokensAtAmount = swapTokensAtAmount;
    }

    //Set minimum tokens required to swap.
    function toggleSwap(bool _swapEnabled) public onlyOwner {
        swapEnabled = _swapEnabled;
    }

    //Set maximum transaction
    function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner {
        _maxTxAmount = maxTxAmount;
    }

    function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner {
        _maxWalletSize = maxWalletSize;
    }

    function excludeMultipleAccountsFromFees(
        address[] calldata accounts,
        bool excluded
    ) public onlyOwner {
        for (uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFee[accounts[i]] = excluded;
        }
    }
}

File 2 of 7 : 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 7 : 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);
}

File 4 of 7 : 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 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 7 : IUniswapV2Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);

    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
}

File 7 of 7 : IUniswapV2Router02.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity 0.8.11;

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"__name","type":"string"},{"internalType":"string","name":"__symbol","type":"string"}],"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":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526a52b7d2dcc80cd2e40000006000196200001f919062000833565b6000196200002e91906200089a565b60075560006009556005600a556000600b55600f600c55600b54600d55600c54600e55600d54600f55600e546010556000601660146101000a81548160ff0219169083151502179055506001601660156101000a81548160ff02191690831515021790555069d3c21bcecceda100000060175569d3c21bcecceda1000000601855683635c9adc5dea00000601955348015620000c957600080fd5b50604051620044bd380380620044bd8339818101604052810190620000ef919062000a72565b6200010f620001036200065560201b60201c565b6200065d60201b60201c565b8160019080519060200190620001279291906200074a565b508060029080519060200190620001409291906200074a565b5060075460036000620001586200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000262919062000b5c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f0919062000b5c565b6040518363ffffffff1660e01b81526004016200030f92919062000b9f565b6020604051808303816000875af11580156200032f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000355919062000b5c565b601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600660006200042d6200072160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160066000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005da6200065560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6a52b7d2dcc80cd2e400000060405162000644919062000bdd565b60405180910390a350505062000c5f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620007589062000c29565b90600052602060002090601f0160209004810192826200077c5760008555620007c8565b82601f106200079757805160ff1916838001178555620007c8565b82800160010185558215620007c8579182015b82811115620007c7578251825591602001919060010190620007aa565b5b509050620007d79190620007db565b5090565b5b80821115620007f6576000816000905550600101620007dc565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200084082620007fa565b91506200084d83620007fa565b92508262000860576200085f62000804565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008a782620007fa565b9150620008b483620007fa565b925082821015620008ca57620008c96200086b565b5b828203905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200093e82620008f3565b810181811067ffffffffffffffff8211171562000960576200095f62000904565b5b80604052505050565b600062000975620008d5565b905062000983828262000933565b919050565b600067ffffffffffffffff821115620009a657620009a562000904565b5b620009b182620008f3565b9050602081019050919050565b60005b83811015620009de578082015181840152602081019050620009c1565b83811115620009ee576000848401525b50505050565b600062000a0b62000a058462000988565b62000969565b90508281526020810184848401111562000a2a5762000a29620008ee565b5b62000a37848285620009be565b509392505050565b600082601f83011262000a575762000a56620008e9565b5b815162000a69848260208601620009f4565b91505092915050565b6000806040838503121562000a8c5762000a8b620008df565b5b600083015167ffffffffffffffff81111562000aad5762000aac620008e4565b5b62000abb8582860162000a3f565b925050602083015167ffffffffffffffff81111562000adf5762000ade620008e4565b5b62000aed8582860162000a3f565b9150509250929050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b248262000af7565b9050919050565b62000b368162000b17565b811462000b4257600080fd5b50565b60008151905062000b568162000b2b565b92915050565b60006020828403121562000b755762000b74620008df565b5b600062000b858482850162000b45565b91505092915050565b62000b998162000b17565b82525050565b600060408201905062000bb6600083018562000b8e565b62000bc5602083018462000b8e565b9392505050565b62000bd781620007fa565b82525050565b600060208201905062000bf4600083018462000bcc565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c4257607f821691505b6020821081141562000c595762000c5862000bfa565b5b50919050565b61384e8062000c6f6000396000f3fe6080604052600436106101c55760003560e01c806374010ece116100f7578063a2a957bb11610095578063c492f04611610064578063c492f04614610628578063dd62ed3e14610651578063ea1644d51461068e578063f2fde38b146106b7576101cc565b8063a2a957bb1461056e578063a9059cbb14610597578063bfd79284146105d4578063c3c8cd8014610611576101cc565b80638da5cb5b116100d15780638da5cb5b146104c45780638f9a55c0146104ef57806395d89b411461051a57806398a5c31514610545576101cc565b806374010ece146104335780637d1db4a51461045c5780637f2feddc14610487576101cc565b8063313ce567116101645780636d8aa8f81161013e5780636d8aa8f81461039f5780636fc3eaec146103c857806370a08231146103df578063715018a61461041c576101cc565b8063313ce5671461032057806349bd5a5e1461034b5780636b99905314610376576101cc565b80631694505e116101a05780631694505e1461026257806318160ddd1461028d57806323b872dd146102b85780632fd689e3146102f5576101cc565b8062b8cf2a146101d157806306fdde03146101fa578063095ea7b314610225576101cc565b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f391906126c1565b6106e0565b005b34801561020657600080fd5b5061020f61077d565b60405161021c9190612792565b60405180910390f35b34801561023157600080fd5b5061024c600480360381019061024791906127ea565b61080f565b6040516102599190612845565b60405180910390f35b34801561026e57600080fd5b5061027761082d565b60405161028491906128bf565b60405180910390f35b34801561029957600080fd5b506102a2610853565b6040516102af91906128e9565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612904565b610866565b6040516102ec9190612845565b60405180910390f35b34801561030157600080fd5b5061030a61093f565b60405161031791906128e9565b60405180910390f35b34801561032c57600080fd5b50610335610945565b6040516103429190612973565b60405180910390f35b34801561035757600080fd5b5061036061094e565b60405161036d919061299d565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906129b8565b610974565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612a11565b6109d7565b005b3480156103d457600080fd5b506103dd6109fc565b005b3480156103eb57600080fd5b50610406600480360381019061040191906129b8565b610acd565b60405161041391906128e9565b60405180910390f35b34801561042857600080fd5b50610431610b1e565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612a3e565b610b32565b005b34801561046857600080fd5b50610471610b44565b60405161047e91906128e9565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906129b8565b610b4a565b6040516104bb91906128e9565b60405180910390f35b3480156104d057600080fd5b506104d9610b62565b6040516104e6919061299d565b60405180910390f35b3480156104fb57600080fd5b50610504610b8b565b60405161051191906128e9565b60405180910390f35b34801561052657600080fd5b5061052f610b91565b60405161053c9190612792565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612a3e565b610c23565b005b34801561057a57600080fd5b5061059560048036038101906105909190612a6b565b610c35565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127ea565b610da3565b6040516105cb9190612845565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906129b8565b610dc1565b6040516106089190612845565b60405180910390f35b34801561061d57600080fd5b50610626610de1565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612b2d565b610eba565b005b34801561065d57600080fd5b5061067860048036038101906106739190612b8d565b610f67565b60405161068591906128e9565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a3e565b610fee565b005b3480156106c357600080fd5b506106de60048036038101906106d991906129b8565b611000565b005b6106e8611084565b60005b81518110156107795760016011600084848151811061070d5761070c612bcd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061077190612c2b565b9150506106eb565b5050565b60606001805461078c90612ca3565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612ca3565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061082361081c611102565b848461110a565b6001905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006a52b7d2dcc80cd2e4000000905090565b60006108738484846112d5565b6109348461087f611102565b61092f856040518060600160405280602881526020016137f160289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108e5611102565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad29092919063ffffffff16565b61110a565b600190509392505050565b60195481565b60006012905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61097c611084565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109df611084565b80601660156101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a3d611102565b73ffffffffffffffffffffffffffffffffffffffff161480610ab35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a9b611102565b73ffffffffffffffffffffffffffffffffffffffff16145b610abc57600080fd5b6000479050610aca81611b27565b50565b6000610b17600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b93565b9050919050565b610b26611084565b610b306000611c01565b565b610b3a611084565b8060178190555050565b60175481565b60126020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b606060028054610ba090612ca3565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcc90612ca3565b8015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b5050505050905090565b610c2b611084565b8060198190555050565b610c3d611084565b60008410158015610c4f575060048411155b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612d47565b60405180910390fd5b60008210158015610ca0575060638211155b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612dd9565b60405180910390fd5b60008310158015610cf1575060048311155b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612e6b565b60405180910390fd5b60008110158015610d42575060638111155b610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890612efd565b60405180910390fd5b8360098190555082600b8190555081600a8190555080600c8190555050505050565b6000610db7610db0611102565b84846112d5565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e22611102565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e80611102565b73ffffffffffffffffffffffffffffffffffffffff16145b610ea157600080fd5b6000610eac30610acd565b9050610eb781611cc5565b50565b610ec2611084565b60005b83839050811015610f61578160066000868685818110610ee857610ee7612bcd565b5b9050602002016020810190610efd91906129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f5990612c2b565b915050610ec5565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff6611084565b8060188190555050565b611008611084565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612f8f565b60405180910390fd5b61108181611c01565b50565b61108c611102565b73ffffffffffffffffffffffffffffffffffffffff166110aa610b62565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612ffb565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061308d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061311f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112c891906128e9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906131b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613243565b60405180910390fd5b600081116113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906132d5565b60405180910390fd5b611400610b62565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561146e575061143e610b62565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117d1576017548111156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613341565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561155c5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611592906133d3565b60405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461164857601854816115fd84610acd565b61160791906133f3565b10611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906134bb565b60405180910390fd5b5b600061165330610acd565b905060006019548210159050601754821061166e5760175491505b8080156116885750601660149054906101000a900460ff16155b80156116e25750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156116fa5750601660159054906101000a900460ff165b80156117505750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117a65750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117ce576117b482611cc5565b600047905060008111156117cc576117cb47611b27565b5b505b50505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118785750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061192b5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561192a5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156119395760009050611ac0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119e45750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119fc57600954600d81905550600a54600e819055505b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611aa75750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611abf57600b54600d81905550600c54600e819055505b5b611acc84848484611f3e565b50505050565b6000838311158290611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119190612792565b60405180910390fd5b5082840390509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b8f573d6000803e3d6000fd5b5050565b6000600754821115611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd19061354d565b60405180910390fd5b6000611be4611f6b565b9050611bf98184611f9690919063ffffffff16565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611cfd57611cfc612520565b5b604051908082528060200260200182016040528015611d2b5781602001602082028036833780820191505090505b5090503081600081518110611d4357611d42612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0e9190613582565b81600181518110611e2257611e21612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e8930601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461110a565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611eed9594939291906136a8565b600060405180830381600087803b158015611f0757600080fd5b505af1158015611f1b573d6000803e3d6000fd5b50505050506000601660146101000a81548160ff02191690831515021790555050565b80611f4c57611f4b611fac565b5b611f57848484611fef565b80611f6557611f646121ba565b5b50505050565b6000806000611f786121ce565b91509150611f8f8183611f9690919063ffffffff16565b9250505090565b60008183611fa49190613731565b905092915050565b6000600d54148015611fc057506000600e54145b15611fca57611fed565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b60008060008060008061200187612236565b95509550955095509550955061205f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229e90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120f485600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612140816122ca565b61214a8483612387565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516121a791906128e9565b60405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b6000806000600754905060006a52b7d2dcc80cd2e400000090506122086a52b7d2dcc80cd2e4000000600754611f9690919063ffffffff16565b821015612229576007546a52b7d2dcc80cd2e4000000935093505050612232565b81819350935050505b9091565b60008060008060008060008060006122538a600d54600e546123c1565b9250925092506000612263611f6b565b905060008060006122768e878787612457565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600081836122ac9190613762565b905092915050565b600081836122c291906133f3565b905092915050565b60006122d4611f6b565b905060006122eb82846124e090919063ffffffff16565b905061233f81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b61239c8260075461229e90919063ffffffff16565b6007819055506123b7816008546122b490919063ffffffff16565b6008819055505050565b6000806000806123ed60646123df888a6124e090919063ffffffff16565b611f9690919063ffffffff16565b905060006124176064612409888b6124e090919063ffffffff16565b611f9690919063ffffffff16565b9050600061244082612432858c61229e90919063ffffffff16565b61229e90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061247085896124e090919063ffffffff16565b9050600061248786896124e090919063ffffffff16565b9050600061249e87896124e090919063ffffffff16565b905060006124c7826124b9858761229e90919063ffffffff16565b61229e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600081836124ee9190613796565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125588261250f565b810181811067ffffffffffffffff8211171561257757612576612520565b5b80604052505050565b600061258a6124f6565b9050612596828261254f565b919050565b600067ffffffffffffffff8211156125b6576125b5612520565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125f7826125cc565b9050919050565b612607816125ec565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b600061263d6126388461259b565b612580565b905080838252602082019050602084028301858111156126605761265f6125c7565b5b835b8181101561268957806126758882612615565b845260208401935050602081019050612662565b5050509392505050565b600082601f8301126126a8576126a761250a565b5b81356126b884826020860161262a565b91505092915050565b6000602082840312156126d7576126d6612500565b5b600082013567ffffffffffffffff8111156126f5576126f4612505565b5b61270184828501612693565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612744578082015181840152602081019050612729565b83811115612753576000848401525b50505050565b60006127648261270a565b61276e8185612715565b935061277e818560208601612726565b6127878161250f565b840191505092915050565b600060208201905081810360008301526127ac8184612759565b905092915050565b6000819050919050565b6127c7816127b4565b81146127d257600080fd5b50565b6000813590506127e4816127be565b92915050565b6000806040838503121561280157612800612500565b5b600061280f85828601612615565b9250506020612820858286016127d5565b9150509250929050565b60008115159050919050565b61283f8161282a565b82525050565b600060208201905061285a6000830184612836565b92915050565b6000819050919050565b600061288561288061287b846125cc565b612860565b6125cc565b9050919050565b60006128978261286a565b9050919050565b60006128a98261288c565b9050919050565b6128b98161289e565b82525050565b60006020820190506128d460008301846128b0565b92915050565b6128e3816127b4565b82525050565b60006020820190506128fe60008301846128da565b92915050565b60008060006060848603121561291d5761291c612500565b5b600061292b86828701612615565b935050602061293c86828701612615565b925050604061294d868287016127d5565b9150509250925092565b600060ff82169050919050565b61296d81612957565b82525050565b60006020820190506129886000830184612964565b92915050565b612997816125ec565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6000602082840312156129ce576129cd612500565b5b60006129dc84828501612615565b91505092915050565b6129ee8161282a565b81146129f957600080fd5b50565b600081359050612a0b816129e5565b92915050565b600060208284031215612a2757612a26612500565b5b6000612a35848285016129fc565b91505092915050565b600060208284031215612a5457612a53612500565b5b6000612a62848285016127d5565b91505092915050565b60008060008060808587031215612a8557612a84612500565b5b6000612a93878288016127d5565b9450506020612aa4878288016127d5565b9350506040612ab5878288016127d5565b9250506060612ac6878288016127d5565b91505092959194509250565b600080fd5b60008083601f840112612aed57612aec61250a565b5b8235905067ffffffffffffffff811115612b0a57612b09612ad2565b5b602083019150836020820283011115612b2657612b256125c7565b5b9250929050565b600080600060408486031215612b4657612b45612500565b5b600084013567ffffffffffffffff811115612b6457612b63612505565b5b612b7086828701612ad7565b93509350506020612b83868287016129fc565b9150509250925092565b60008060408385031215612ba457612ba3612500565b5b6000612bb285828601612615565b9250506020612bc385828601612615565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c36826127b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6957612c68612bfc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cbb57607f821691505b60208210811415612ccf57612cce612c74565b5b50919050565b7f4275792072657761726473206d757374206265206265747765656e203025206160008201527f6e64203425000000000000000000000000000000000000000000000000000000602082015250565b6000612d31602583612715565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f42757920746178206d757374206265206265747765656e20302520616e64203960008201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b6000612dc3602283612715565b9150612dce82612d67565b604082019050919050565b60006020820190508181036000830152612df281612db6565b9050919050565b7f53656c6c2072657761726473206d757374206265206265747765656e2030252060008201527f616e642034250000000000000000000000000000000000000000000000000000602082015250565b6000612e55602683612715565b9150612e6082612df9565b604082019050919050565b60006020820190508181036000830152612e8481612e48565b9050919050565b7f53656c6c20746178206d757374206265206265747765656e20302520616e642060008201527f3939250000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee7602383612715565b9150612ef282612e8b565b604082019050919050565b60006020820190508181036000830152612f1681612eda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f79602683612715565b9150612f8482612f1d565b604082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fe5602083612715565b9150612ff082612faf565b602082019050919050565b6000602082019050818103600083015261301481612fd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613077602483612715565b91506130828261301b565b604082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613109602283612715565b9150613114826130ad565b604082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061319b602583612715565b91506131a68261313f565b604082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061322d602383612715565b9150613238826131d1565b604082019050919050565b6000602082019050818103600083015261325c81613220565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006132bf602983612715565b91506132ca82613263565b604082019050919050565b600060208201905081810360008301526132ee816132b2565b9050919050565b7f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000600082015250565b600061332b601c83612715565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b60006133bd602383612715565b91506133c882613361565b604082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b60006133fe826127b4565b9150613409836127b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343e5761343d612bfc565b5b828201905092915050565b7f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008201527f7a65210000000000000000000000000000000000000000000000000000000000602082015250565b60006134a5602383612715565b91506134b082613449565b604082019050919050565b600060208201905081810360008301526134d481613498565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613537602a83612715565b9150613542826134db565b604082019050919050565b600060208201905081810360008301526135668161352a565b9050919050565b60008151905061357c816125fe565b92915050565b60006020828403121561359857613597612500565b5b60006135a68482850161356d565b91505092915050565b6000819050919050565b60006135d46135cf6135ca846135af565b612860565b6127b4565b9050919050565b6135e4816135b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61361f816125ec565b82525050565b60006136318383613616565b60208301905092915050565b6000602082019050919050565b6000613655826135ea565b61365f81856135f5565b935061366a83613606565b8060005b8381101561369b5781516136828882613625565b975061368d8361363d565b92505060018101905061366e565b5085935050505092915050565b600060a0820190506136bd60008301886128da565b6136ca60208301876135db565b81810360408301526136dc818661364a565b90506136eb606083018561298e565b6136f860808301846128da565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061373c826127b4565b9150613747836127b4565b92508261375757613756613702565b5b828204905092915050565b600061376d826127b4565b9150613778836127b4565b92508282101561378b5761378a612bfc565b5b828203905092915050565b60006137a1826127b4565b91506137ac836127b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e4612bfc565b5b82820290509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207ad000f1966a85d6e660f7501453c42dad2d9f6dce51b41e1cb71001541994bd64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007446973636f7264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007444953434f524400000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c55760003560e01c806374010ece116100f7578063a2a957bb11610095578063c492f04611610064578063c492f04614610628578063dd62ed3e14610651578063ea1644d51461068e578063f2fde38b146106b7576101cc565b8063a2a957bb1461056e578063a9059cbb14610597578063bfd79284146105d4578063c3c8cd8014610611576101cc565b80638da5cb5b116100d15780638da5cb5b146104c45780638f9a55c0146104ef57806395d89b411461051a57806398a5c31514610545576101cc565b806374010ece146104335780637d1db4a51461045c5780637f2feddc14610487576101cc565b8063313ce567116101645780636d8aa8f81161013e5780636d8aa8f81461039f5780636fc3eaec146103c857806370a08231146103df578063715018a61461041c576101cc565b8063313ce5671461032057806349bd5a5e1461034b5780636b99905314610376576101cc565b80631694505e116101a05780631694505e1461026257806318160ddd1461028d57806323b872dd146102b85780632fd689e3146102f5576101cc565b8062b8cf2a146101d157806306fdde03146101fa578063095ea7b314610225576101cc565b366101cc57005b600080fd5b3480156101dd57600080fd5b506101f860048036038101906101f391906126c1565b6106e0565b005b34801561020657600080fd5b5061020f61077d565b60405161021c9190612792565b60405180910390f35b34801561023157600080fd5b5061024c600480360381019061024791906127ea565b61080f565b6040516102599190612845565b60405180910390f35b34801561026e57600080fd5b5061027761082d565b60405161028491906128bf565b60405180910390f35b34801561029957600080fd5b506102a2610853565b6040516102af91906128e9565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da9190612904565b610866565b6040516102ec9190612845565b60405180910390f35b34801561030157600080fd5b5061030a61093f565b60405161031791906128e9565b60405180910390f35b34801561032c57600080fd5b50610335610945565b6040516103429190612973565b60405180910390f35b34801561035757600080fd5b5061036061094e565b60405161036d919061299d565b60405180910390f35b34801561038257600080fd5b5061039d600480360381019061039891906129b8565b610974565b005b3480156103ab57600080fd5b506103c660048036038101906103c19190612a11565b6109d7565b005b3480156103d457600080fd5b506103dd6109fc565b005b3480156103eb57600080fd5b50610406600480360381019061040191906129b8565b610acd565b60405161041391906128e9565b60405180910390f35b34801561042857600080fd5b50610431610b1e565b005b34801561043f57600080fd5b5061045a60048036038101906104559190612a3e565b610b32565b005b34801561046857600080fd5b50610471610b44565b60405161047e91906128e9565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906129b8565b610b4a565b6040516104bb91906128e9565b60405180910390f35b3480156104d057600080fd5b506104d9610b62565b6040516104e6919061299d565b60405180910390f35b3480156104fb57600080fd5b50610504610b8b565b60405161051191906128e9565b60405180910390f35b34801561052657600080fd5b5061052f610b91565b60405161053c9190612792565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190612a3e565b610c23565b005b34801561057a57600080fd5b5061059560048036038101906105909190612a6b565b610c35565b005b3480156105a357600080fd5b506105be60048036038101906105b991906127ea565b610da3565b6040516105cb9190612845565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f691906129b8565b610dc1565b6040516106089190612845565b60405180910390f35b34801561061d57600080fd5b50610626610de1565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612b2d565b610eba565b005b34801561065d57600080fd5b5061067860048036038101906106739190612b8d565b610f67565b60405161068591906128e9565b60405180910390f35b34801561069a57600080fd5b506106b560048036038101906106b09190612a3e565b610fee565b005b3480156106c357600080fd5b506106de60048036038101906106d991906129b8565b611000565b005b6106e8611084565b60005b81518110156107795760016011600084848151811061070d5761070c612bcd565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061077190612c2b565b9150506106eb565b5050565b60606001805461078c90612ca3565b80601f01602080910402602001604051908101604052809291908181526020018280546107b890612ca3565b80156108055780601f106107da57610100808354040283529160200191610805565b820191906000526020600020905b8154815290600101906020018083116107e857829003601f168201915b5050505050905090565b600061082361081c611102565b848461110a565b6001905092915050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006a52b7d2dcc80cd2e4000000905090565b60006108738484846112d5565b6109348461087f611102565b61092f856040518060600160405280602881526020016137f160289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108e5611102565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ad29092919063ffffffff16565b61110a565b600190509392505050565b60195481565b60006012905090565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61097c611084565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109df611084565b80601660156101000a81548160ff02191690831515021790555050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a3d611102565b73ffffffffffffffffffffffffffffffffffffffff161480610ab35750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610a9b611102565b73ffffffffffffffffffffffffffffffffffffffff16145b610abc57600080fd5b6000479050610aca81611b27565b50565b6000610b17600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611b93565b9050919050565b610b26611084565b610b306000611c01565b565b610b3a611084565b8060178190555050565b60175481565b60126020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b606060028054610ba090612ca3565b80601f0160208091040260200160405190810160405280929190818152602001828054610bcc90612ca3565b8015610c195780601f10610bee57610100808354040283529160200191610c19565b820191906000526020600020905b815481529060010190602001808311610bfc57829003601f168201915b5050505050905090565b610c2b611084565b8060198190555050565b610c3d611084565b60008410158015610c4f575060048411155b610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612d47565b60405180910390fd5b60008210158015610ca0575060638211155b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690612dd9565b60405180910390fd5b60008310158015610cf1575060048311155b610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790612e6b565b60405180910390fd5b60008110158015610d42575060638111155b610d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7890612efd565b60405180910390fd5b8360098190555082600b8190555081600a8190555080600c8190555050505050565b6000610db7610db0611102565b84846112d5565b6001905092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e22611102565b73ffffffffffffffffffffffffffffffffffffffff161480610e985750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610e80611102565b73ffffffffffffffffffffffffffffffffffffffff16145b610ea157600080fd5b6000610eac30610acd565b9050610eb781611cc5565b50565b610ec2611084565b60005b83839050811015610f61578160066000868685818110610ee857610ee7612bcd565b5b9050602002016020810190610efd91906129b8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610f5990612c2b565b915050610ec5565b50505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ff6611084565b8060188190555050565b611008611084565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90612f8f565b60405180910390fd5b61108181611c01565b50565b61108c611102565b73ffffffffffffffffffffffffffffffffffffffff166110aa610b62565b73ffffffffffffffffffffffffffffffffffffffff1614611100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f790612ffb565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061308d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061311f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112c891906128e9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c906131b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ac90613243565b60405180910390fd5b600081116113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef906132d5565b60405180910390fd5b611400610b62565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561146e575061143e610b62565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156117d1576017548111156114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613341565b60405180910390fd5b601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561155c5750601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611592906133d3565b60405180910390fd5b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461164857601854816115fd84610acd565b61160791906133f3565b10611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906134bb565b60405180910390fd5b5b600061165330610acd565b905060006019548210159050601754821061166e5760175491505b8080156116885750601660149054906101000a900460ff16155b80156116e25750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156116fa5750601660159054906101000a900460ff165b80156117505750600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156117a65750600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156117ce576117b482611cc5565b600047905060008111156117cc576117cb47611b27565b5b505b50505b600060019050600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118785750600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061192b5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415801561192a5750601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b156119395760009050611ac0565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156119e45750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119fc57600954600d81905550600a54600e819055505b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611aa75750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611abf57600b54600d81905550600c54600e819055505b5b611acc84848484611f3e565b50505050565b6000838311158290611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b119190612792565b60405180910390fd5b5082840390509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b8f573d6000803e3d6000fd5b5050565b6000600754821115611bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd19061354d565b60405180910390fd5b6000611be4611f6b565b9050611bf98184611f9690919063ffffffff16565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611cfd57611cfc612520565b5b604051908082528060200260200182016040528015611d2b5781602001602082028036833780820191505090505b5090503081600081518110611d4357611d42612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0e9190613582565b81600181518110611e2257611e21612bcd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e8930601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461110a565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611eed9594939291906136a8565b600060405180830381600087803b158015611f0757600080fd5b505af1158015611f1b573d6000803e3d6000fd5b50505050506000601660146101000a81548160ff02191690831515021790555050565b80611f4c57611f4b611fac565b5b611f57848484611fef565b80611f6557611f646121ba565b5b50505050565b6000806000611f786121ce565b91509150611f8f8183611f9690919063ffffffff16565b9250505090565b60008183611fa49190613731565b905092915050565b6000600d54148015611fc057506000600e54145b15611fca57611fed565b600d54600f81905550600e546010819055506000600d819055506000600e819055505b565b60008060008060008061200187612236565b95509550955095509550955061205f86600360008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461229e90919063ffffffff16565b600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120f485600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b600360008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612140816122ca565b61214a8483612387565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516121a791906128e9565b60405180910390a3505050505050505050565b600f54600d81905550601054600e81905550565b6000806000600754905060006a52b7d2dcc80cd2e400000090506122086a52b7d2dcc80cd2e4000000600754611f9690919063ffffffff16565b821015612229576007546a52b7d2dcc80cd2e4000000935093505050612232565b81819350935050505b9091565b60008060008060008060008060006122538a600d54600e546123c1565b9250925092506000612263611f6b565b905060008060006122768e878787612457565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b600081836122ac9190613762565b905092915050565b600081836122c291906133f3565b905092915050565b60006122d4611f6b565b905060006122eb82846124e090919063ffffffff16565b905061233f81600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b61239c8260075461229e90919063ffffffff16565b6007819055506123b7816008546122b490919063ffffffff16565b6008819055505050565b6000806000806123ed60646123df888a6124e090919063ffffffff16565b611f9690919063ffffffff16565b905060006124176064612409888b6124e090919063ffffffff16565b611f9690919063ffffffff16565b9050600061244082612432858c61229e90919063ffffffff16565b61229e90919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061247085896124e090919063ffffffff16565b9050600061248786896124e090919063ffffffff16565b9050600061249e87896124e090919063ffffffff16565b905060006124c7826124b9858761229e90919063ffffffff16565b61229e90919063ffffffff16565b9050838184965096509650505050509450945094915050565b600081836124ee9190613796565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125588261250f565b810181811067ffffffffffffffff8211171561257757612576612520565b5b80604052505050565b600061258a6124f6565b9050612596828261254f565b919050565b600067ffffffffffffffff8211156125b6576125b5612520565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125f7826125cc565b9050919050565b612607816125ec565b811461261257600080fd5b50565b600081359050612624816125fe565b92915050565b600061263d6126388461259b565b612580565b905080838252602082019050602084028301858111156126605761265f6125c7565b5b835b8181101561268957806126758882612615565b845260208401935050602081019050612662565b5050509392505050565b600082601f8301126126a8576126a761250a565b5b81356126b884826020860161262a565b91505092915050565b6000602082840312156126d7576126d6612500565b5b600082013567ffffffffffffffff8111156126f5576126f4612505565b5b61270184828501612693565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612744578082015181840152602081019050612729565b83811115612753576000848401525b50505050565b60006127648261270a565b61276e8185612715565b935061277e818560208601612726565b6127878161250f565b840191505092915050565b600060208201905081810360008301526127ac8184612759565b905092915050565b6000819050919050565b6127c7816127b4565b81146127d257600080fd5b50565b6000813590506127e4816127be565b92915050565b6000806040838503121561280157612800612500565b5b600061280f85828601612615565b9250506020612820858286016127d5565b9150509250929050565b60008115159050919050565b61283f8161282a565b82525050565b600060208201905061285a6000830184612836565b92915050565b6000819050919050565b600061288561288061287b846125cc565b612860565b6125cc565b9050919050565b60006128978261286a565b9050919050565b60006128a98261288c565b9050919050565b6128b98161289e565b82525050565b60006020820190506128d460008301846128b0565b92915050565b6128e3816127b4565b82525050565b60006020820190506128fe60008301846128da565b92915050565b60008060006060848603121561291d5761291c612500565b5b600061292b86828701612615565b935050602061293c86828701612615565b925050604061294d868287016127d5565b9150509250925092565b600060ff82169050919050565b61296d81612957565b82525050565b60006020820190506129886000830184612964565b92915050565b612997816125ec565b82525050565b60006020820190506129b2600083018461298e565b92915050565b6000602082840312156129ce576129cd612500565b5b60006129dc84828501612615565b91505092915050565b6129ee8161282a565b81146129f957600080fd5b50565b600081359050612a0b816129e5565b92915050565b600060208284031215612a2757612a26612500565b5b6000612a35848285016129fc565b91505092915050565b600060208284031215612a5457612a53612500565b5b6000612a62848285016127d5565b91505092915050565b60008060008060808587031215612a8557612a84612500565b5b6000612a93878288016127d5565b9450506020612aa4878288016127d5565b9350506040612ab5878288016127d5565b9250506060612ac6878288016127d5565b91505092959194509250565b600080fd5b60008083601f840112612aed57612aec61250a565b5b8235905067ffffffffffffffff811115612b0a57612b09612ad2565b5b602083019150836020820283011115612b2657612b256125c7565b5b9250929050565b600080600060408486031215612b4657612b45612500565b5b600084013567ffffffffffffffff811115612b6457612b63612505565b5b612b7086828701612ad7565b93509350506020612b83868287016129fc565b9150509250925092565b60008060408385031215612ba457612ba3612500565b5b6000612bb285828601612615565b9250506020612bc385828601612615565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612c36826127b4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c6957612c68612bfc565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612cbb57607f821691505b60208210811415612ccf57612cce612c74565b5b50919050565b7f4275792072657761726473206d757374206265206265747765656e203025206160008201527f6e64203425000000000000000000000000000000000000000000000000000000602082015250565b6000612d31602583612715565b9150612d3c82612cd5565b604082019050919050565b60006020820190508181036000830152612d6081612d24565b9050919050565b7f42757920746178206d757374206265206265747765656e20302520616e64203960008201527f3925000000000000000000000000000000000000000000000000000000000000602082015250565b6000612dc3602283612715565b9150612dce82612d67565b604082019050919050565b60006020820190508181036000830152612df281612db6565b9050919050565b7f53656c6c2072657761726473206d757374206265206265747765656e2030252060008201527f616e642034250000000000000000000000000000000000000000000000000000602082015250565b6000612e55602683612715565b9150612e6082612df9565b604082019050919050565b60006020820190508181036000830152612e8481612e48565b9050919050565b7f53656c6c20746178206d757374206265206265747765656e20302520616e642060008201527f3939250000000000000000000000000000000000000000000000000000000000602082015250565b6000612ee7602383612715565b9150612ef282612e8b565b604082019050919050565b60006020820190508181036000830152612f1681612eda565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f79602683612715565b9150612f8482612f1d565b604082019050919050565b60006020820190508181036000830152612fa881612f6c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fe5602083612715565b9150612ff082612faf565b602082019050919050565b6000602082019050818103600083015261301481612fd8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613077602483612715565b91506130828261301b565b604082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613109602283612715565b9150613114826130ad565b604082019050919050565b60006020820190508181036000830152613138816130fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061319b602583612715565b91506131a68261313f565b604082019050919050565b600060208201905081810360008301526131ca8161318e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061322d602383612715565b9150613238826131d1565b604082019050919050565b6000602082019050818103600083015261325c81613220565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006132bf602983612715565b91506132ca82613263565b604082019050919050565b600060208201905081810360008301526132ee816132b2565b9050919050565b7f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000600082015250565b600061332b601c83612715565b9150613336826132f5565b602082019050919050565b6000602082019050818103600083015261335a8161331e565b9050919050565b7f544f4b454e3a20596f7572206163636f756e7420697320626c61636b6c69737460008201527f6564210000000000000000000000000000000000000000000000000000000000602082015250565b60006133bd602383612715565b91506133c882613361565b604082019050919050565b600060208201905081810360008301526133ec816133b0565b9050919050565b60006133fe826127b4565b9150613409836127b4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561343e5761343d612bfc565b5b828201905092915050565b7f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008201527f7a65210000000000000000000000000000000000000000000000000000000000602082015250565b60006134a5602383612715565b91506134b082613449565b604082019050919050565b600060208201905081810360008301526134d481613498565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613537602a83612715565b9150613542826134db565b604082019050919050565b600060208201905081810360008301526135668161352a565b9050919050565b60008151905061357c816125fe565b92915050565b60006020828403121561359857613597612500565b5b60006135a68482850161356d565b91505092915050565b6000819050919050565b60006135d46135cf6135ca846135af565b612860565b6127b4565b9050919050565b6135e4816135b9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61361f816125ec565b82525050565b60006136318383613616565b60208301905092915050565b6000602082019050919050565b6000613655826135ea565b61365f81856135f5565b935061366a83613606565b8060005b8381101561369b5781516136828882613625565b975061368d8361363d565b92505060018101905061366e565b5085935050505092915050565b600060a0820190506136bd60008301886128da565b6136ca60208301876135db565b81810360408301526136dc818661364a565b90506136eb606083018561298e565b6136f860808301846128da565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061373c826127b4565b9150613747836127b4565b92508261375757613756613702565b5b828204905092915050565b600061376d826127b4565b9150613778836127b4565b92508282101561378b5761378a612bfc565b5b828203905092915050565b60006137a1826127b4565b91506137ac836127b4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137e5576137e4612bfc565b5b82820290509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212207ad000f1966a85d6e660f7501453c42dad2d9f6dce51b41e1cb71001541994bd64736f6c634300080b0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007446973636f7264000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007444953434f524400000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : __name (string): Discord
Arg [1] : __symbol (string): DISCORD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 446973636f726400000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 444953434f524400000000000000000000000000000000000000000000000000


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.