ETH Price: $3,483.81 (+0.65%)
Gas: 5 Gwei

Token

DeFi² (DFX)
 

Overview

Max Total Supply

959,160.538723530905301699 DFX

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
226.72394731307495447 DFX

Value
$0.00
0x877db097ab9050bb2bec0e82f19a9243fd6a9320
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:
DFX

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : DeFi².sol
// SPDX-License-Identifier: MIT

/**

DeFi² | $DFX

Welcome to the next-generation of DeFi, where $DFX functions as the square-root of your wealth.

Website: http://DeFiSquared.io
Gitbook: http://defi-3.gitbook.io/
Twitter: https://twitter.com/DFX_Squared
Telegram: t.me/DeFiSquaredEntry

*/

pragma solidity = 0.8.16;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

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

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

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

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

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

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

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

interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

interface ILpPair {
    function sync() external;
}

contract TokenHandler is Ownable {
    function sendTokenToOwner(address token) external onlyOwner {
        if(IERC20(token).balanceOf(address(this)) > 0){
            IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this)));
        }
    }
}

pragma solidity >= 0.8.16;


contract DFX is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    IERC20 public immutable USDC;

    bool private swapping;

    uint256 public maxSellTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    uint256 public supply;

    address public marketingAddress;
    address public rewardAddress;
    address public treasuryAddress;

    TokenHandler public tokenHandler;

    bool public tradingActive = false;
    bool public liquidityFeeActive = false;

    bool public limitsInEffect = true;
    bool public swapEnabled = true;

    bool public _renounceDelayFunction = false;
    bool public _renounceFeeFunctions = false;
    bool public _renounceMaxUpdateFunctions = false;
    bool public _renounceMarketMakerPairChanges = false;
    bool public _renounceWalletChanges = false;
    bool public _renounceExcludeInclude = false;

    mapping(address => uint256) private _holderLastTransferTimestamp;

    uint256 public buyBurnFee;
    uint256 public buyMarketingFee;
    uint256 public buyTreasuryFee;
    uint256 public buyRewardFee;
    uint256 public buyLiquidityFee;
    uint256 public buyTotalFees;

    uint256 public sellBurnFee;
    uint256 public sellMarketingFee;
    uint256 public sellTreasuryFee;
    uint256 public sellRewardFee;
    uint256 public sellLiquidityFee;
    uint256 public sellTotalFees;

    uint256 public feeUnits = 10000;

    uint256 public tokensForBurn;
    uint256 public tokensForMarketing;
    uint256 public tokensForTreasury;
    uint256 public tokensForReward;
    uint256 public tokensForLiquidity;

    uint256 private _previousBuyLiquidityFee = 0;
    uint256 private _previousSellLiquidityFee = 0;

    uint256 public maxWalletTotal;
    uint256 public maxSellTransaction;

    /******************/

    // exlcude from fees and max transaction amount
    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxSellTransactionAmount;

    // Store the automatic market maker pair addresses. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping (address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity);
    event updateHolderLastTransferTimestamp(address indexed account, uint256 timestamp);


    constructor() ERC20(unicode"DeFi²", "DFX") {

        address _dexRouter;
        address usdcAddress;

        if(block.chainid == 1){
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Router
            usdcAddress = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; // USDC ETH
        } else if(block.chainid == 5){
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // Goerli Router
            usdcAddress = 0x2f3A40A3db8a7e3D09B0adfEfbCe4f6F81927557; // Goerli USDC
        } else if(block.chainid == 97){
            usdcAddress  = 0x78867BbEeF44f2326bF8DDd1941a4439382EF2A7; // BSC Testnet BUSD
            _dexRouter = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BNB Chain: PCS V2
        } else {
            revert("Chain not configured");
        }

        tokenHandler = new TokenHandler();
        USDC = IERC20(usdcAddress);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_dexRouter);

        excludeFromMaxSellTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), usdcAddress);
        excludeFromMaxSellTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 totalSupply = 1000000 * (10 ** 18);
        supply += totalSupply;

        maxWallet = 2;
        maxSellTransaction = 2;

        maxSellTransactionAmount = supply * maxSellTransaction / 100;
        swapTokensAtAmount = supply * 5 / 100000; // 0.005% swap wallet;
        maxWalletTotal = supply * maxWallet / 50;

        buyBurnFee = 0;
        buyMarketingFee = 175;
        buyLiquidityFee = 150;
        buyTreasuryFee = 125;
        buyRewardFee = 50;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee + buyTreasuryFee + buyRewardFee;

        sellBurnFee = 150;
        sellMarketingFee = 175;
        sellLiquidityFee = 0;
        sellTreasuryFee = 125;
        sellRewardFee = 50;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee + sellTreasuryFee + sellRewardFee;

        marketingAddress = 0xa0a1C7096C28Bb19aC4E0A4e640ef9C1B23Eb606;
        treasuryAddress = 0x8e2c3656a14b13bb3471FF0260De575a4Ec93847;
        rewardAddress = 0x07aC5418d7c14c6895C0d3479265328F876A80Bd;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(uniswapV2Router), true);
        excludeFromFees(address(0x3a2Ddf1828D6D2091E90B4fc9a9898c84f112142), true);

        excludeFromMaxSellTransaction(owner(), true);
        excludeFromMaxSellTransaction(address(this), true);
        excludeFromMaxSellTransaction(address(0xdead), true);
        excludeFromMaxSellTransaction(address(uniswapV2Router), true);

        _approve(owner(), address(uniswapV2Router), totalSupply);
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function toggleLiquidityFeeActive () external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncemennt");
        if (liquidityFeeActive) {
        _previousBuyLiquidityFee = buyLiquidityFee;
        _previousSellLiquidityFee = sellLiquidityFee;
        }
        buyLiquidityFee = liquidityFeeActive ? 0 : _previousBuyLiquidityFee;
        sellLiquidityFee = liquidityFeeActive ? 0 : _previousSellLiquidityFee;
        liquidityFeeActive = !liquidityFeeActive;
    }

    function enableTrading() external onlyOwner {
        buyBurnFee = 0;
        buyMarketingFee = 100;
        buyLiquidityFee = 150;
        buyTreasuryFee = 200;
        buyRewardFee = 50;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee + buyTreasuryFee + buyRewardFee;

        sellBurnFee = 150;
        sellMarketingFee = 100;
        sellLiquidityFee = 0;
        sellTreasuryFee = 200;
        sellRewardFee = 50;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee + sellTreasuryFee + sellRewardFee;

        tradingActive = true;
        liquidityFeeActive = true;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
    }

    function updateMaxSellTransaction(uint256 newNum) external onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        require(newNum >= 1);
        maxSellTransaction = newNum;
        updateLimits();
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        require(newNum >= 1);
        maxWallet = newNum;
        updateLimits();
    }


    function excludeFromMaxSellTransaction(address updAds, bool isEx) public onlyOwner {
      require(!_renounceMaxUpdateFunctions, "Cannot update max transaction amount after renouncement");
        _isExcludedMaxSellTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(uint256 _burnFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _treasuryFee, uint256 _rewardFee) external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncement");
        buyBurnFee = _burnFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyTreasuryFee = _treasuryFee;
        buyRewardFee = _rewardFee;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee + buyTreasuryFee + buyRewardFee;
        require(buyTotalFees <= 15 * feeUnits / 100, "Must keep fees at 15% or less");
    }

    function updateSellFees(uint256 _burnFee, uint256 _marketingFee, uint256 _liquidityFee, uint256 _treasuryFee, uint256 _rewardFee) external onlyOwner {
      require(!_renounceFeeFunctions, "Cannot update fees after renouncement");
        sellBurnFee = _burnFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellTreasuryFee = _treasuryFee;
        sellRewardFee = _rewardFee;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee + sellTreasuryFee + sellRewardFee;
        require(sellTotalFees <= 25 * feeUnits / 100, "Must keep fees at 25% or less");
    }

    function updateMarketingAddress(address newWallet) external onlyOwner {
        require(!_renounceWalletChanges, "Cannot update wallet after renouncement");
        require(newWallet != address(0), "cannot set to zero address");
        marketingAddress = newWallet;
    }

    function updateRewardAddress(address newWallet) external onlyOwner {
        require(!_renounceWalletChanges, "Cannot update wallet after renouncement");
        require(newWallet != address(0), "cannot set to zero address");
        rewardAddress = newWallet;
    }

    function updateTreasuryAddress(address newWallet) external onlyOwner {
        require(!_renounceWalletChanges, "Cannot update wallet after renouncement");
        require(newWallet != address(0), "cannot set to zero address");
        treasuryAddress = newWallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
      require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement");
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function includeInFees(address account) public onlyOwner {
      require(!_renounceExcludeInclude, "Cannot update excluded accounts after renouncement");
        excludeFromFees(account, false);
    }

    function updateLimits() private {
        maxSellTransactionAmount = supply * maxSellTransaction / 100;
        swapTokensAtAmount = supply * 5 / 10000; // 0.05% swap wallet;
        maxWalletTotal = supply * maxWallet / 100;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
      require(!_renounceMarketMakerPairChanges, "Cannot update market maker pairs after renouncement");
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

         if(amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]){
            super._transfer(from, to, amount);
            return;
        }

        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    revert("Trading is not active.");
                }

                // add the wallet to the _holderLastTransferTimestamp(address, timestamp) map
                _holderLastTransferTimestamp[tx.origin] = block.timestamp;
                emit updateHolderLastTransferTimestamp(tx.origin, block.timestamp);

                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxSellTransactionAmount[to] && !automatedMarketMakerPairs[to]){
                    require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded");
                }

                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxSellTransactionAmount[from] && !automatedMarketMakerPairs[from]){
                        require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
                }
                else if(!_isExcludedMaxSellTransactionAmount[to]){
                    require(amount + balanceOf(to) <= maxWalletTotal, "Max wallet exceeded");
                }
            }
        }
        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if(
            canSwap &&
            !swapping &&
            swapEnabled &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount.mul(sellTotalFees).div(feeUnits);
                tokensForBurn += fees * sellBurnFee / sellTotalFees;
                tokensForMarketing += fees * sellMarketingFee / sellTotalFees;
                tokensForTreasury += fees * sellTreasuryFee / sellTotalFees;
                tokensForReward += fees * sellRewardFee / sellTotalFees;
                if (liquidityFeeActive) {
                    tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                }
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount.mul(buyTotalFees).div(feeUnits);
        	    tokensForBurn += fees * buyBurnFee / buyTotalFees;
                tokensForMarketing += fees * buyMarketingFee / buyTotalFees;
                tokensForTreasury += fees * buyTreasuryFee / buyTotalFees;
                tokensForReward += fees * buyRewardFee / buyTotalFees;
                if (liquidityFeeActive) {
                    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                }
            }

            if(fees > 0){
                super._transfer(from, address(this), fees);
                if (tokensForBurn > 0) {
                    _burn(address(this), tokensForBurn);
                    supply = totalSupply();
                    updateLimits();
                    tokensForBurn = 0;
                }
            }
        	amount -= fees;
        }

        super._transfer(from, to, amount);
      }

    function renounceFeeFunctions () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce fee functions");
        _renounceFeeFunctions = true;
    }

    function renounceWalletChanges () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce wallet changes");
        _renounceWalletChanges = true;
    }

    function renounceMaxUpdateFunctions () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce max update functions");
        _renounceMaxUpdateFunctions = true;
    }

    function renounceMarketMakerPairChanges () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce market maker pair changes");
        _renounceMarketMakerPairChanges = true;
    }

    function renounceExcludeInclude () public onlyOwner {
        require(msg.sender == owner(), "Only the owner can renounce exclude include");
        _renounceExcludeInclude = true;
    }

    function swapTokensForUSDC(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = address(USDC);

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(tokenHandler),
            block.timestamp
        );

        tokenHandler.sendTokenToOwner(address(USDC));

    }

    function swapBack() private {

        if (tokensForLiquidity > 0 && balanceOf(address(this)) >= tokensForLiquidity) {
            super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
            try ILpPair(uniswapV2Pair).sync(){} catch {}
            tokensForLiquidity = 0;
        }
        
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalSwapTokens = tokensForMarketing + tokensForTreasury + tokensForReward;

        if(contractBalance == 0) {return;}

        if(contractBalance > swapTokensAtAmount * 40){
          contractBalance = swapTokensAtAmount * 40;
        }

        swapTokensForUSDC(contractBalance);

        uint256 usdcBalance = USDC.balanceOf(address(this));
        
        uint256 amountForReward = usdcBalance * tokensForReward / totalSwapTokens;
        uint256 amountForTreasury = usdcBalance * tokensForTreasury / totalSwapTokens;

        tokensForMarketing = 0;
        tokensForTreasury = 0;
        tokensForReward = 0;
        
        if(amountForReward > 0){
            USDC.transfer(rewardAddress, amountForReward);
        }
        if(amountForTreasury > 0){
            USDC.transfer(treasuryAddress, amountForTreasury);
        }
        if(USDC.balanceOf(address(this)) > 0){
            USDC.transfer(marketingAddress, USDC.balanceOf(address(this)));
        }
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"updateHolderLastTransferTimestamp","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceDelayFunction","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceExcludeInclude","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceFeeFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMarketMakerPairChanges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceMaxUpdateFunctions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_renounceWalletChanges","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeUnits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceExcludeInclude","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceFeeFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMarketMakerPairChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceMaxUpdateFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceWalletChanges","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellRewardFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLiquidityFeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenHandler","outputs":[{"internalType":"contract TokenHandler","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTreasury","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateRewardAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_rewardFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTreasuryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600f8054600160a01b600160f01b03191661010160b01b179055612710601d55600060238190556024553480156200003b57600080fd5b50604051806040016040528060068152602001652232a334e15960d11b815250604051806040016040528060038152602001620888cb60eb1b815250816003908162000088919062000c07565b50600462000097828262000c07565b5050506000620000ac6200064f60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060008046600103620001395750737a250d5630b4cf539739df2c5dacb4c659f2488d905073a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48620001fe565b46600503620001755750737a250d5630b4cf539739df2c5dacb4c659f2488d9050732f3a40a3db8a7e3d09b0adfefbce4f6f81927557620001fe565b46606103620001b1575073d99d1c33f9fc3444f8101754abc46c52416550d190507378867bbeef44f2326bf8ddd1941a4439382ef2a7620001fe565b60405162461bcd60e51b815260206004820152601460248201527f436861696e206e6f7420636f6e6669677572656400000000000000000000000060448201526064015b60405180910390fd5b6040516200020c9062000b55565b604051809103906000f08015801562000229573d6000803e3d6000fd5b50600f80546001600160a01b0319166001600160a01b039283161790558116608052816200025981600162000653565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620002b3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d9919062000cd3565b6040516364e329cb60e11b81523060048201526001600160a01b038481166024830152919091169063c9c65396906044016020604051808303816000875af11580156200032a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000350919062000cd3565b600780546001600160a01b0319166001600160a01b039290921691821790556200037c90600162000653565b60075462000395906001600160a01b031660016200074b565b600069d3c21bcecceda1000000905080600b6000828254620003b8919062000d14565b90915550506002600a8190556026819055600b54606491620003da9162000d2a565b620003e6919062000d4c565b600855600b54620186a090620003fe90600562000d2a565b6200040a919062000d4c565b600955600a54600b54603291620004219162000d2a565b6200042d919062000d4c565b6025556000601181905560af601281905560966015819055607d601381905560326014819055939092620004619162000d14565b6200046d919062000d14565b62000479919062000d14565b62000485919062000d14565b6016556096601781905560af60188190556000601b819055607d60198190556032601a819055939092620004b99162000d14565b620004c5919062000d14565b620004d1919062000d14565b620004dd919062000d14565b601c55600c80546001600160a01b031990811673a0a1c7096c28bb19ac4e0a4e640ef9c1b23eb60617909155600e80548216738e2c3656a14b13bb3471ff0260de575a4ec93847179055600d80549091167307ac5418d7c14c6895c0d3479265328f876a80bd179055620005656200055d6005546001600160a01b031690565b60016200079f565b620005723060016200079f565b6200058161dead60016200079f565b6006546200059a906001600160a01b031660016200079f565b620005bb733a2ddf1828d6d2091e90b4fc9a9898c84f11214260016200079f565b620005da620005d26005546001600160a01b031690565b600162000653565b620005e730600162000653565b620005f661dead600162000653565b6006546200060f906001600160a01b0316600162000653565b62000639620006266005546001600160a01b031690565b6006546001600160a01b031683620008c0565b620006453382620009e8565b5050505062000d6f565b3390565b6005546001600160a01b031633146200069e5760405162461bcd60e51b8152602060048201819052602482015260008051602062004b038339815191526044820152606401620001f5565b600f54600160d01b900460ff1615620007205760405162461bcd60e51b815260206004820152603760248201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60448201527f6f756e742061667465722072656e6f756e63656d656e740000000000000000006064820152608401620001f5565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620007ea5760405162461bcd60e51b8152602060048201819052602482015260008051602062004b038339815191526044820152606401620001f5565b600f54600160e81b900460ff1615620008615760405162461bcd60e51b815260206004820152603260248201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060448201527118599d195c881c995b9bdd5b98d95b595b9d60721b6064820152608401620001f5565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620009245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620001f5565b6001600160a01b038216620009875760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620001f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03821662000a405760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001f5565b62000a5c8160025462000ae960201b62001dc61790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000a8f91839062001dc662000ae9821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b60008062000af8838562000d14565b90508381101562000b4c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620001f5565b90505b92915050565b6104d6806200462d83390190565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168062000b8e57607f821691505b60208210810362000baf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000ae457600081815260208120601f850160051c8101602086101562000bde5750805b601f850160051c820191505b8181101562000bff5782815560010162000bea565b505050505050565b81516001600160401b0381111562000c235762000c2362000b63565b62000c3b8162000c34845462000b79565b8462000bb5565b602080601f83116001811462000c73576000841562000c5a5750858301515b600019600386901b1c1916600185901b17855562000bff565b600085815260208120601f198616915b8281101562000ca45788860151825594840194600190910190840162000c83565b508582101562000cc35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000ce657600080fd5b81516001600160a01b038116811462000b4c57600080fd5b634e487b7160e01b600052601160045260246000fd5b8082018082111562000b4f5762000b4f62000cfe565b600081600019048311821515161562000d475762000d4762000cfe565b500290565b60008262000d6a57634e487b7160e01b600052601260045260246000fd5b500490565b60805161387162000dbc6000396000818161093a01528181612ad701528181612bc401528181612c6401528181612ced01528181612d860152818161309a015261317901526138716000f3fe6080604052600436106104615760003560e01c8063841e45611161023f578063b1099b8111610139578063de0aad53116100b6578063f2fde38b1161007a578063f2fde38b14610d04578063f637434214610d24578063f680f79914610d3a578063f8b45b0514610d50578063ff935af614610d6657600080fd5b8063de0aad5314610c8c578063e2f4560514610ca2578063e71dc3f514610cb8578063f11a24d314610cce578063f170d7fd14610ce457600080fd5b8063c5f956af116100fd578063c5f956af14610bd9578063c94c2a5214610bf9578063cc2ffe7c14610c1a578063d85ba06314610c30578063dd62ed3e14610c4657600080fd5b8063b1099b8114610b3e578063b116288414610b53578063b62496f514610b68578063bbc0c74214610b98578063c024666814610bb957600080fd5b8063a002959c116101c7578063a5ece9411161018b578063a5ece94114610ab3578063a9059cbb14610ad3578063ac819f5414610af3578063adb873bd14610b13578063b0a95bfa14610b2957600080fd5b8063a002959c14610a1a578063a333174f14610a30578063a457c2d714610a51578063a4c5ba9614610a71578063a4d0341414610a9257600080fd5b80638da5cb5b1161020e5780638da5cb5b1461099157806392136913146109af578063944dd5a2146109c557806395d89b41146109e55780639a7a23d6146109fa57600080fd5b8063841e45611461090857806389a30271146109285780638a8c523c1461095c5780638cf57cb91461097157600080fd5b806327c8f8351161035b5780635dc08315116102d85780636ddd17131161029c5780636ddd17131461087157806370a0823114610892578063715018a6146108c8578063751039fc146108dd5780637bce5a04146108f257600080fd5b80635dc08315146107ef578063637845c61461080f57806365aaf370146108245780636a486a8e146108455780636b2fb1241461085b57600080fd5b806349bd5a5e1161031f57806349bd5a5e1461074a5780634a62bb651461076a5780634fbee1931461078b5780635449f2ec146107c45780635c068a8c146107d957600080fd5b806327c8f835146106c1578063313ce567146106d757806339509351146106f35780633b13cc16146107135780633fad50a91461072957600080fd5b806316a2f82a116103e95780631cd6e871116103ad5780631cd6e871146106405780631d777856146106555780631f3fed8f1461066b5780632369bf831461068157806323b872dd146106a157600080fd5b806316a2f82a146105b357806318160ddd146105d55780631a8145bb146105ea5780631b3d6e87146106005780631c499ab01461062057600080fd5b806306fdde031161043057806306fdde03146104f35780630855f25d14610515578063095ea7b3146105455780630cfe2f3f146105655780631694505e1461057b57600080fd5b806302259e9e1461046d578063023ad58114610496578063047fc9aa146104ac578063064f2205146104c257600080fd5b3661046857005b600080fd5b34801561047957600080fd5b5061048360085481565b6040519081526020015b60405180910390f35b3480156104a257600080fd5b5061048360255481565b3480156104b857600080fd5b50610483600b5481565b3480156104ce57600080fd5b50600f546104e390600160a81b900460ff1681565b604051901515815260200161048d565b3480156104ff57600080fd5b50610508610d86565b60405161048d919061324c565b34801561052157600080fd5b506104e36105303660046132b6565b60286020526000908152604090205460ff1681565b34801561055157600080fd5b506104e36105603660046132d1565b610e18565b34801561057157600080fd5b5061048360145481565b34801561058757600080fd5b5060065461059b906001600160a01b031681565b6040516001600160a01b03909116815260200161048d565b3480156105bf57600080fd5b506105d36105ce3660046132b6565b610e2f565b005b3480156105e157600080fd5b50600254610483565b3480156105f657600080fd5b5061048360225481565b34801561060c57600080fd5b50600f5461059b906001600160a01b031681565b34801561062c57600080fd5b506105d361063b3660046132fb565b610e9a565b34801561064c57600080fd5b506105d3610f09565b34801561066157600080fd5b50610483601e5481565b34801561067757600080fd5b50610483601f5481565b34801561068d57600080fd5b506105d361069c3660046132b6565b610fb4565b3480156106ad57600080fd5b506104e36106bc366004613314565b611050565b3480156106cd57600080fd5b5061059b61dead81565b3480156106e357600080fd5b506040516012815260200161048d565b3480156106ff57600080fd5b506104e361070e3660046132d1565b6110b9565b34801561071f57600080fd5b5061048360265481565b34801561073557600080fd5b50600f546104e390600160d81b900460ff1681565b34801561075657600080fd5b5060075461059b906001600160a01b031681565b34801561077657600080fd5b50600f546104e390600160b01b900460ff1681565b34801561079757600080fd5b506104e36107a63660046132b6565b6001600160a01b031660009081526027602052604090205460ff1690565b3480156107d057600080fd5b506105d36110ef565b3480156107e557600080fd5b5061048360135481565b3480156107fb57600080fd5b506105d361080a3660046132fb565b61119c565b34801561081b57600080fd5b506105d361120b565b34801561083057600080fd5b50600f546104e390600160e01b900460ff1681565b34801561085157600080fd5b50610483601c5481565b34801561086757600080fd5b5061048360195481565b34801561087d57600080fd5b50600f546104e390600160b81b900460ff1681565b34801561089e57600080fd5b506104836108ad3660046132b6565b6001600160a01b031660009081526020819052604090205490565b3480156108d457600080fd5b506105d361131c565b3480156108e957600080fd5b506105d3611390565b3480156108fe57600080fd5b5061048360125481565b34801561091457600080fd5b506105d36109233660046132b6565b6113c9565b34801561093457600080fd5b5061059b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561096857600080fd5b506105d3611465565b34801561097d57600080fd5b50600d5461059b906001600160a01b031681565b34801561099d57600080fd5b506005546001600160a01b031661059b565b3480156109bb57600080fd5b5061048360185481565b3480156109d157600080fd5b506105d36109e03660046132b6565b611546565b3480156109f157600080fd5b506105086115e2565b348015610a0657600080fd5b506105d3610a1536600461335e565b6115f1565b348015610a2657600080fd5b5061048360215481565b348015610a3c57600080fd5b50600f546104e390600160e81b900460ff1681565b348015610a5d57600080fd5b506104e3610a6c3660046132d1565b611723565b348015610a7d57600080fd5b50600f546104e390600160c01b900460ff1681565b348015610a9e57600080fd5b50600f546104e390600160c81b900460ff1681565b348015610abf57600080fd5b50600c5461059b906001600160a01b031681565b348015610adf57600080fd5b506104e3610aee3660046132d1565b611772565b348015610aff57600080fd5b506105d3610b0e36600461335e565b61177f565b348015610b1f57600080fd5b5061048360175481565b348015610b3557600080fd5b506105d36117fe565b348015610b4a57600080fd5b506105d36118aa565b348015610b5f57600080fd5b506105d3611961565b348015610b7457600080fd5b506104e3610b833660046132b6565b60296020526000908152604090205460ff1681565b348015610ba457600080fd5b50600f546104e390600160a01b900460ff1681565b348015610bc557600080fd5b506105d3610bd436600461335e565b611a13565b348015610be557600080fd5b50600e5461059b906001600160a01b031681565b348015610c0557600080fd5b50600f546104e390600160d01b900460ff1681565b348015610c2657600080fd5b5061048360205481565b348015610c3c57600080fd5b5061048360165481565b348015610c5257600080fd5b50610483610c61366004613395565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c9857600080fd5b50610483601a5481565b348015610cae57600080fd5b5061048360095481565b348015610cc457600080fd5b5061048360115481565b348015610cda57600080fd5b5061048360155481565b348015610cf057600080fd5b506105d3610cff3660046133c8565b611ac6565b348015610d1057600080fd5b506105d3610d1f3660046132b6565b611bd4565b348015610d3057600080fd5b50610483601b5481565b348015610d4657600080fd5b50610483601d5481565b348015610d5c57600080fd5b50610483600a5481565b348015610d7257600080fd5b506105d3610d813660046133c8565b611cbf565b606060038054610d9590613403565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc190613403565b8015610e0e5780601f10610de357610100808354040283529160200191610e0e565b820191906000526020600020905b815481529060010190602001808311610df157829003601f168201915b5050505050905090565b6000610e25338484611e2c565b5060015b92915050565b6005546001600160a01b03163314610e625760405162461bcd60e51b8152600401610e599061343d565b60405180910390fd5b600f54600160e81b900460ff1615610e8c5760405162461bcd60e51b8152600401610e5990613472565b610e97816000611a13565b50565b6005546001600160a01b03163314610ec45760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff1615610eee5760405162461bcd60e51b8152600401610e59906134c4565b6001811015610efc57600080fd5b600a819055610e97611f51565b6005546001600160a01b03163314610f335760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b03163314610f9f5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060448201526866756e6374696f6e7360b81b6064820152608401610e59565b600f805460ff60c81b1916600160c81b179055565b6005546001600160a01b03163314610fde5760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff16156110085760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b03811661102e5760405162461bcd60e51b8152600401610e5990613568565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061105d848484611fb0565b6110af84336110aa856040518060600160405280602881526020016137ef602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061280d565b611e2c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610e259185906110aa9086611dc6565b6005546001600160a01b031633146111195760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146111875760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60448201526a75646520696e636c75646560a81b6064820152608401610e59565b600f805460ff60e81b1916600160e81b179055565b6005546001600160a01b031633146111c65760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff16156111f05760405162461bcd60e51b8152600401610e59906134c4565b60018110156111fe57600080fd5b6026819055610e97611f51565b6005546001600160a01b031633146112355760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff161561129e5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604482015265195b595b9b9d60d21b6064820152608401610e59565b600f54600160a81b900460ff16156112bd57601554602355601b546024555b600f54600160a81b900460ff166112d6576023546112d9565b60005b601555600f54600160a81b900460ff166112f5576024546112f8565b60005b601b55600f805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610e599061343d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146113ba5760405162461bcd60e51b8152600401610e599061343d565b600f805460ff60b01b19169055565b6005546001600160a01b031633146113f35760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff161561141d5760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b0381166114435760405162461bcd60e51b8152600401610e5990613568565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610e599061343d565b60006011819055606460128190556096601581905560c86013819055603260148190559390926114be916135b5565b6114c891906135b5565b6114d291906135b5565b6114dc91906135b5565b60165560966017819055606460188190556000601b81905560c860198190556032601a81905593909261150e916135b5565b61151891906135b5565b61152291906135b5565b61152c91906135b5565b601c55600f805461ffff60a01b191661010160a01b179055565b6005546001600160a01b031633146115705760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff161561159a5760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b0381166115c05760405162461bcd60e51b8152600401610e5990613568565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610d9590613403565b6005546001600160a01b0316331461161b5760405162461bcd60e51b8152600401610e599061343d565b600f54600160d81b900460ff16156116915760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420757064617465206d61726b6574206d616b65722070616972736044820152720818599d195c881c995b9bdd5b98d95b595b9d606a1b6064820152608401610e59565b6007546001600160a01b03908116908316036117155760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610e59565b61171f8282612847565b5050565b6000610e2533846110aa85604051806060016040528060258152602001613817602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061280d565b6000610e25338484611fb0565b6005546001600160a01b031633146117a95760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff16156117d35760405162461bcd60e51b8152600401610e59906134c4565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146118285760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146118955760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c6044820152696574206368616e67657360b01b6064820152608401610e59565b600f805460ff60e01b1916600160e01b179055565b6005546001600160a01b031633146118d45760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b0316331461194c5760405162461bcd60e51b815260206004820152603560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b6044820152746574206d616b65722070616972206368616e67657360581b6064820152608401610e59565b600f805460ff60d81b1916600160d81b179055565b6005546001600160a01b0316331461198b5760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146119fe5760405162461bcd60e51b815260206004820152603060248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060448201526f7570646174652066756e6374696f6e7360801b6064820152608401610e59565b600f805460ff60d01b1916600160d01b179055565b6005546001600160a01b03163314611a3d5760405162461bcd60e51b8152600401610e599061343d565b600f54600160e81b900460ff1615611a675760405162461bcd60e51b8152600401610e5990613472565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611af05760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff1615611b1a5760405162461bcd60e51b8152600401610e59906135c8565b60118590556012849055601583905560138290556014819055808284611b4087896135b5565b611b4a91906135b5565b611b5491906135b5565b611b5e91906135b5565b601655601d54606490611b7290600f61360d565b611b7c919061362c565b6016541115611bcd5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610e59565b5050505050565b6005546001600160a01b03163314611bfe5760405162461bcd60e51b8152600401610e599061343d565b6001600160a01b038116611c635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e59565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ce95760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff1615611d135760405162461bcd60e51b8152600401610e59906135c8565b60178590556018849055601b8390556019829055601a819055808284611d3987896135b5565b611d4391906135b5565b611d4d91906135b5565b611d5791906135b5565b601c55601d54606490611d6b90601961360d565b611d75919061362c565b601c541115611bcd5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610e59565b600080611dd383856135b5565b905083811015611e255760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e59565b9392505050565b6001600160a01b038316611e8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e59565b6001600160a01b038216611eef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e59565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064602654600b54611f63919061360d565b611f6d919061362c565b600855600b5461271090611f8290600561360d565b611f8c919061362c565b600955600a54600b54606491611fa19161360d565b611fab919061362c565b602555565b6001600160a01b038316611fd65760405162461bcd60e51b8152600401610e599061364e565b6001600160a01b038216611ffc5760405162461bcd60e51b8152600401610e5990613693565b80600003612015576120108383600061289b565b505050565b6001600160a01b03831660009081526027602052604090205460ff168061205457506001600160a01b03821660009081526027602052604090205460ff165b156120645761201083838361289b565b600f54600160b01b900460ff16156123c9576005546001600160a01b038481169116148015906120a257506005546001600160a01b03838116911614155b80156120b657506001600160a01b03821615155b80156120cd57506001600160a01b03821661dead14155b80156120e35750600754600160a01b900460ff16155b156123c957600f54600160a01b900460ff1661213a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610e59565b32600081815260106020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526029602052604090205460ff1680156121c357506001600160a01b03821660009081526028602052604090205460ff16155b80156121e857506001600160a01b03821660009081526029602052604090205460ff16155b1561225c576025546001600160a01b03831660009081526020819052604090205461221390836135b5565b11156122575760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e59565b6123c9565b6001600160a01b03821660009081526029602052604090205460ff16801561229d57506001600160a01b03831660009081526028602052604090205460ff16155b80156122c257506001600160a01b03831660009081526029602052604090205460ff16155b1561233f576008548111156122575760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610e59565b6001600160a01b03821660009081526028602052604090205460ff166123c9576025546001600160a01b03831660009081526020819052604090205461238590836135b5565b11156123c95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e59565b30600090815260208190526040902054600954811080159081906123f75750600754600160a01b900460ff16155b801561240c5750600f54600160b81b900460ff165b801561243157506001600160a01b03851660009081526029602052604090205460ff16155b801561245657506001600160a01b03851660009081526027602052604090205460ff16155b801561247b57506001600160a01b03841660009081526027602052604090205460ff16155b156124a9576007805460ff60a01b1916600160a01b17905561249b6129a4565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526027602052604090205460ff600160a01b9092048216159116806124f757506001600160a01b03851660009081526027602052604090205460ff165b15612500575060005b600081156127f9576001600160a01b03861660009081526029602052604090205460ff16801561253257506000601c54115b1561266357612558601d54612552601c5488612e7490919063ffffffff16565b90612ef6565b9050601c546017548261256b919061360d565b612575919061362c565b601e600082825461258691906135b5565b9091555050601c5460185461259b908361360d565b6125a5919061362c565b601f60008282546125b691906135b5565b9091555050601c546019546125cb908361360d565b6125d5919061362c565b602060008282546125e691906135b5565b9091555050601c54601a546125fb908361360d565b612605919061362c565b6021600082825461261691906135b5565b9091555050600f54600160a81b900460ff161561265e57601c54601b5461263d908361360d565b612647919061362c565b6022600082825461265891906135b5565b90915550505b6127b3565b6001600160a01b03871660009081526029602052604090205460ff16801561268d57506000601654115b156127b3576126ad601d5461255260165488612e7490919063ffffffff16565b9050601654601154826126c0919061360d565b6126ca919061362c565b601e60008282546126db91906135b5565b90915550506016546012546126f0908361360d565b6126fa919061362c565b601f600082825461270b91906135b5565b9091555050601654601354612720908361360d565b61272a919061362c565b6020600082825461273b91906135b5565b9091555050601654601454612750908361360d565b61275a919061362c565b6021600082825461276b91906135b5565b9091555050600f54600160a81b900460ff16156127b357601654601554612792908361360d565b61279c919061362c565b602260008282546127ad91906135b5565b90915550505b80156127ec576127c487308361289b565b601e54156127ec576127d830601e54612f38565b600254600b556127e6611f51565b6000601e555b6127f681866136d6565b94505b61280487878761289b565b50505050505050565b600081848411156128315760405162461bcd60e51b8152600401610e59919061324c565b50600061283e84866136d6565b95945050505050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166128c15760405162461bcd60e51b8152600401610e599061364e565b6001600160a01b0382166128e75760405162461bcd60e51b8152600401610e5990613693565b612924816040518060600160405280602681526020016137c9602691396001600160a01b038616600090815260208190526040902054919061280d565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129539082611dc6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611f44565b60006022541180156129c757506022543060009081526020819052604090205410155b15612a51576007546022546129e99130916001600160a01b039091169061289b565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a3957600080fd5b505af1925050508015612a4a575060015b5060006022555b3060009081526020819052604081205490506000602154602054601f54612a7891906135b5565b612a8291906135b5565b905081600003612a90575050565b600954612a9e90602861360d565b821115612ab657600954612ab390602861360d565b91505b612abf82613043565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015612b26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4a91906136e9565b905060008260215483612b5d919061360d565b612b67919061362c565b905060008360205484612b7a919061360d565b612b84919061362c565b6000601f819055602081905560215590508115612c3557600d5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af1158015612c0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c339190613702565b505b8015612cd557600e5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390527f00000000000000000000000000000000000000000000000000000000000000009091169063a9059cbb906044016020604051808303816000875af1158015612caf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd39190613702565b505b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015612d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6091906136e9565b1115611bcd57600c546040516370a0823160e01b81523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015612dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfd91906136e9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6c9190613702565b505050505050565b600082600003612e8657506000610e29565b6000612e92838561360d565b905082612e9f858361362c565b14611e255760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610e59565b6000611e2583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506131dc565b6001600160a01b038216612f985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e59565b612fd5816040518060600160405280602281526020016137a7602291396001600160a01b038516600090815260208190526040902054919061280d565b6001600160a01b038316600090815260208190526040902055600254612ffb908261320a565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106130785761307861371f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106130cc576130cc61371f565b6001600160a01b0392831660209182029290920101526006546130f29130911684611e2c565b600654600f54604051635c11d79560e01b81526001600160a01b0392831692635c11d7959261312f92879260009288929116904290600401613735565b600060405180830381600087803b15801561314957600080fd5b505af115801561315d573d6000803e3d6000fd5b5050600f546040516304fa881160e21b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015290911692506313ea20449150602401600060405180830381600087803b1580156131c857600080fd5b505af1158015612e6c573d6000803e3d6000fd5b600081836131fd5760405162461bcd60e51b8152600401610e59919061324c565b50600061283e848661362c565b6000611e2583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061280d565b600060208083528351808285015260005b818110156132795785810183015185820160400152820161325d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146132b157600080fd5b919050565b6000602082840312156132c857600080fd5b611e258261329a565b600080604083850312156132e457600080fd5b6132ed8361329a565b946020939093013593505050565b60006020828403121561330d57600080fd5b5035919050565b60008060006060848603121561332957600080fd5b6133328461329a565b92506133406020850161329a565b9150604084013590509250925092565b8015158114610e9757600080fd5b6000806040838503121561337157600080fd5b61337a8361329a565b9150602083013561338a81613350565b809150509250929050565b600080604083850312156133a857600080fd5b6133b18361329a565b91506133bf6020840161329a565b90509250929050565b600080600080600060a086880312156133e057600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c9082168061341757607f821691505b60208210810361343757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060408201527118599d195c881c995b9bdd5b98d95b595b9d60721b606082015260800190565b60208082526037908201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60408201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000606082015260800190565b60208082526027908201527f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f756040820152661b98d95b595b9d60ca1b606082015260800190565b6020808252601a908201527f63616e6e6f742073657420746f207a65726f2061646472657373000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e2957610e2961359f565b60208082526025908201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604082015264195b595b9d60da1b606082015260800190565b60008160001904831182151516156136275761362761359f565b500290565b60008261364957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610e2957610e2961359f565b6000602082840312156136fb57600080fd5b5051919050565b60006020828403121561371457600080fd5b8151611e2581613350565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156137855784516001600160a01b031683529383019391830191600101613760565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f69fd27bc6a23b80f7ae8e314694559df59b0c1d7062e649e9c300d2872822aa64736f6c63430008100033608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610475806100616000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c806313ea204414610051578063715018a6146100665780638da5cb5b1461006e578063f2fde38b1461008d575b600080fd5b61006461005f36600461039f565b6100a0565b005b610064610241565b600054604080516001600160a01b039092168252519081900360200190f35b61006461009b36600461039f565b6102b5565b6000546001600160a01b031633146100d35760405162461bcd60e51b81526004016100ca906103cf565b60405180910390fd5b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561011a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061013e9190610404565b111561023e57806001600160a01b031663a9059cbb6101656000546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa1580156101a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101cd9190610404565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610218573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023c919061041d565b505b50565b6000546001600160a01b0316331461026b5760405162461bcd60e51b81526004016100ca906103cf565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146102df5760405162461bcd60e51b81526004016100ca906103cf565b6001600160a01b0381166103445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016100ca565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000602082840312156103b157600080fd5b81356001600160a01b03811681146103c857600080fd5b9392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561041657600080fd5b5051919050565b60006020828403121561042f57600080fd5b815180151581146103c857600080fdfea2646970667358221220d84c6133e35440a0f4fe76d05a3496b0dcb63e6145ce02bf6918de6efb58684164736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106104615760003560e01c8063841e45611161023f578063b1099b8111610139578063de0aad53116100b6578063f2fde38b1161007a578063f2fde38b14610d04578063f637434214610d24578063f680f79914610d3a578063f8b45b0514610d50578063ff935af614610d6657600080fd5b8063de0aad5314610c8c578063e2f4560514610ca2578063e71dc3f514610cb8578063f11a24d314610cce578063f170d7fd14610ce457600080fd5b8063c5f956af116100fd578063c5f956af14610bd9578063c94c2a5214610bf9578063cc2ffe7c14610c1a578063d85ba06314610c30578063dd62ed3e14610c4657600080fd5b8063b1099b8114610b3e578063b116288414610b53578063b62496f514610b68578063bbc0c74214610b98578063c024666814610bb957600080fd5b8063a002959c116101c7578063a5ece9411161018b578063a5ece94114610ab3578063a9059cbb14610ad3578063ac819f5414610af3578063adb873bd14610b13578063b0a95bfa14610b2957600080fd5b8063a002959c14610a1a578063a333174f14610a30578063a457c2d714610a51578063a4c5ba9614610a71578063a4d0341414610a9257600080fd5b80638da5cb5b1161020e5780638da5cb5b1461099157806392136913146109af578063944dd5a2146109c557806395d89b41146109e55780639a7a23d6146109fa57600080fd5b8063841e45611461090857806389a30271146109285780638a8c523c1461095c5780638cf57cb91461097157600080fd5b806327c8f8351161035b5780635dc08315116102d85780636ddd17131161029c5780636ddd17131461087157806370a0823114610892578063715018a6146108c8578063751039fc146108dd5780637bce5a04146108f257600080fd5b80635dc08315146107ef578063637845c61461080f57806365aaf370146108245780636a486a8e146108455780636b2fb1241461085b57600080fd5b806349bd5a5e1161031f57806349bd5a5e1461074a5780634a62bb651461076a5780634fbee1931461078b5780635449f2ec146107c45780635c068a8c146107d957600080fd5b806327c8f835146106c1578063313ce567146106d757806339509351146106f35780633b13cc16146107135780633fad50a91461072957600080fd5b806316a2f82a116103e95780631cd6e871116103ad5780631cd6e871146106405780631d777856146106555780631f3fed8f1461066b5780632369bf831461068157806323b872dd146106a157600080fd5b806316a2f82a146105b357806318160ddd146105d55780631a8145bb146105ea5780631b3d6e87146106005780631c499ab01461062057600080fd5b806306fdde031161043057806306fdde03146104f35780630855f25d14610515578063095ea7b3146105455780630cfe2f3f146105655780631694505e1461057b57600080fd5b806302259e9e1461046d578063023ad58114610496578063047fc9aa146104ac578063064f2205146104c257600080fd5b3661046857005b600080fd5b34801561047957600080fd5b5061048360085481565b6040519081526020015b60405180910390f35b3480156104a257600080fd5b5061048360255481565b3480156104b857600080fd5b50610483600b5481565b3480156104ce57600080fd5b50600f546104e390600160a81b900460ff1681565b604051901515815260200161048d565b3480156104ff57600080fd5b50610508610d86565b60405161048d919061324c565b34801561052157600080fd5b506104e36105303660046132b6565b60286020526000908152604090205460ff1681565b34801561055157600080fd5b506104e36105603660046132d1565b610e18565b34801561057157600080fd5b5061048360145481565b34801561058757600080fd5b5060065461059b906001600160a01b031681565b6040516001600160a01b03909116815260200161048d565b3480156105bf57600080fd5b506105d36105ce3660046132b6565b610e2f565b005b3480156105e157600080fd5b50600254610483565b3480156105f657600080fd5b5061048360225481565b34801561060c57600080fd5b50600f5461059b906001600160a01b031681565b34801561062c57600080fd5b506105d361063b3660046132fb565b610e9a565b34801561064c57600080fd5b506105d3610f09565b34801561066157600080fd5b50610483601e5481565b34801561067757600080fd5b50610483601f5481565b34801561068d57600080fd5b506105d361069c3660046132b6565b610fb4565b3480156106ad57600080fd5b506104e36106bc366004613314565b611050565b3480156106cd57600080fd5b5061059b61dead81565b3480156106e357600080fd5b506040516012815260200161048d565b3480156106ff57600080fd5b506104e361070e3660046132d1565b6110b9565b34801561071f57600080fd5b5061048360265481565b34801561073557600080fd5b50600f546104e390600160d81b900460ff1681565b34801561075657600080fd5b5060075461059b906001600160a01b031681565b34801561077657600080fd5b50600f546104e390600160b01b900460ff1681565b34801561079757600080fd5b506104e36107a63660046132b6565b6001600160a01b031660009081526027602052604090205460ff1690565b3480156107d057600080fd5b506105d36110ef565b3480156107e557600080fd5b5061048360135481565b3480156107fb57600080fd5b506105d361080a3660046132fb565b61119c565b34801561081b57600080fd5b506105d361120b565b34801561083057600080fd5b50600f546104e390600160e01b900460ff1681565b34801561085157600080fd5b50610483601c5481565b34801561086757600080fd5b5061048360195481565b34801561087d57600080fd5b50600f546104e390600160b81b900460ff1681565b34801561089e57600080fd5b506104836108ad3660046132b6565b6001600160a01b031660009081526020819052604090205490565b3480156108d457600080fd5b506105d361131c565b3480156108e957600080fd5b506105d3611390565b3480156108fe57600080fd5b5061048360125481565b34801561091457600080fd5b506105d36109233660046132b6565b6113c9565b34801561093457600080fd5b5061059b7f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881565b34801561096857600080fd5b506105d3611465565b34801561097d57600080fd5b50600d5461059b906001600160a01b031681565b34801561099d57600080fd5b506005546001600160a01b031661059b565b3480156109bb57600080fd5b5061048360185481565b3480156109d157600080fd5b506105d36109e03660046132b6565b611546565b3480156109f157600080fd5b506105086115e2565b348015610a0657600080fd5b506105d3610a1536600461335e565b6115f1565b348015610a2657600080fd5b5061048360215481565b348015610a3c57600080fd5b50600f546104e390600160e81b900460ff1681565b348015610a5d57600080fd5b506104e3610a6c3660046132d1565b611723565b348015610a7d57600080fd5b50600f546104e390600160c01b900460ff1681565b348015610a9e57600080fd5b50600f546104e390600160c81b900460ff1681565b348015610abf57600080fd5b50600c5461059b906001600160a01b031681565b348015610adf57600080fd5b506104e3610aee3660046132d1565b611772565b348015610aff57600080fd5b506105d3610b0e36600461335e565b61177f565b348015610b1f57600080fd5b5061048360175481565b348015610b3557600080fd5b506105d36117fe565b348015610b4a57600080fd5b506105d36118aa565b348015610b5f57600080fd5b506105d3611961565b348015610b7457600080fd5b506104e3610b833660046132b6565b60296020526000908152604090205460ff1681565b348015610ba457600080fd5b50600f546104e390600160a01b900460ff1681565b348015610bc557600080fd5b506105d3610bd436600461335e565b611a13565b348015610be557600080fd5b50600e5461059b906001600160a01b031681565b348015610c0557600080fd5b50600f546104e390600160d01b900460ff1681565b348015610c2657600080fd5b5061048360205481565b348015610c3c57600080fd5b5061048360165481565b348015610c5257600080fd5b50610483610c61366004613395565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610c9857600080fd5b50610483601a5481565b348015610cae57600080fd5b5061048360095481565b348015610cc457600080fd5b5061048360115481565b348015610cda57600080fd5b5061048360155481565b348015610cf057600080fd5b506105d3610cff3660046133c8565b611ac6565b348015610d1057600080fd5b506105d3610d1f3660046132b6565b611bd4565b348015610d3057600080fd5b50610483601b5481565b348015610d4657600080fd5b50610483601d5481565b348015610d5c57600080fd5b50610483600a5481565b348015610d7257600080fd5b506105d3610d813660046133c8565b611cbf565b606060038054610d9590613403565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc190613403565b8015610e0e5780601f10610de357610100808354040283529160200191610e0e565b820191906000526020600020905b815481529060010190602001808311610df157829003601f168201915b5050505050905090565b6000610e25338484611e2c565b5060015b92915050565b6005546001600160a01b03163314610e625760405162461bcd60e51b8152600401610e599061343d565b60405180910390fd5b600f54600160e81b900460ff1615610e8c5760405162461bcd60e51b8152600401610e5990613472565b610e97816000611a13565b50565b6005546001600160a01b03163314610ec45760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff1615610eee5760405162461bcd60e51b8152600401610e59906134c4565b6001811015610efc57600080fd5b600a819055610e97611f51565b6005546001600160a01b03163314610f335760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b03163314610f9f5760405162461bcd60e51b815260206004820152602960248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206665652060448201526866756e6374696f6e7360b81b6064820152608401610e59565b600f805460ff60c81b1916600160c81b179055565b6005546001600160a01b03163314610fde5760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff16156110085760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b03811661102e5760405162461bcd60e51b8152600401610e5990613568565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600061105d848484611fb0565b6110af84336110aa856040518060600160405280602881526020016137ef602891396001600160a01b038a166000908152600160209081526040808320338452909152902054919061280d565b611e2c565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610e259185906110aa9086611dc6565b6005546001600160a01b031633146111195760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146111875760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206578636c60448201526a75646520696e636c75646560a81b6064820152608401610e59565b600f805460ff60e81b1916600160e81b179055565b6005546001600160a01b031633146111c65760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff16156111f05760405162461bcd60e51b8152600401610e59906134c4565b60018110156111fe57600080fd5b6026819055610e97611f51565b6005546001600160a01b031633146112355760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff161561129e5760405162461bcd60e51b815260206004820152602660248201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604482015265195b595b9b9d60d21b6064820152608401610e59565b600f54600160a81b900460ff16156112bd57601554602355601b546024555b600f54600160a81b900460ff166112d6576023546112d9565b60005b601555600f54600160a81b900460ff166112f5576024546112f8565b60005b601b55600f805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b031633146113465760405162461bcd60e51b8152600401610e599061343d565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b031633146113ba5760405162461bcd60e51b8152600401610e599061343d565b600f805460ff60b01b19169055565b6005546001600160a01b031633146113f35760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff161561141d5760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b0381166114435760405162461bcd60e51b8152600401610e5990613568565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461148f5760405162461bcd60e51b8152600401610e599061343d565b60006011819055606460128190556096601581905560c86013819055603260148190559390926114be916135b5565b6114c891906135b5565b6114d291906135b5565b6114dc91906135b5565b60165560966017819055606460188190556000601b81905560c860198190556032601a81905593909261150e916135b5565b61151891906135b5565b61152291906135b5565b61152c91906135b5565b601c55600f805461ffff60a01b191661010160a01b179055565b6005546001600160a01b031633146115705760405162461bcd60e51b8152600401610e599061343d565b600f54600160e01b900460ff161561159a5760405162461bcd60e51b8152600401610e5990613521565b6001600160a01b0381166115c05760405162461bcd60e51b8152600401610e5990613568565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b606060048054610d9590613403565b6005546001600160a01b0316331461161b5760405162461bcd60e51b8152600401610e599061343d565b600f54600160d81b900460ff16156116915760405162461bcd60e51b815260206004820152603360248201527f43616e6e6f7420757064617465206d61726b6574206d616b65722070616972736044820152720818599d195c881c995b9bdd5b98d95b595b9d606a1b6064820152608401610e59565b6007546001600160a01b03908116908316036117155760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610e59565b61171f8282612847565b5050565b6000610e2533846110aa85604051806060016040528060258152602001613817602591393360009081526001602090815260408083206001600160a01b038d168452909152902054919061280d565b6000610e25338484611fb0565b6005546001600160a01b031633146117a95760405162461bcd60e51b8152600401610e599061343d565b600f54600160d01b900460ff16156117d35760405162461bcd60e51b8152600401610e59906134c4565b6001600160a01b03919091166000908152602860205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146118285760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146118955760405162461bcd60e51b815260206004820152602a60248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e63652077616c6c6044820152696574206368616e67657360b01b6064820152608401610e59565b600f805460ff60e01b1916600160e01b179055565b6005546001600160a01b031633146118d45760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b0316331461194c5760405162461bcd60e51b815260206004820152603560248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61726b6044820152746574206d616b65722070616972206368616e67657360581b6064820152608401610e59565b600f805460ff60d81b1916600160d81b179055565b6005546001600160a01b0316331461198b5760405162461bcd60e51b8152600401610e599061343d565b6005546001600160a01b031633146119fe5760405162461bcd60e51b815260206004820152603060248201527f4f6e6c7920746865206f776e65722063616e2072656e6f756e6365206d61782060448201526f7570646174652066756e6374696f6e7360801b6064820152608401610e59565b600f805460ff60d01b1916600160d01b179055565b6005546001600160a01b03163314611a3d5760405162461bcd60e51b8152600401610e599061343d565b600f54600160e81b900460ff1615611a675760405162461bcd60e51b8152600401610e5990613472565b6001600160a01b038216600081815260276020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314611af05760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff1615611b1a5760405162461bcd60e51b8152600401610e59906135c8565b60118590556012849055601583905560138290556014819055808284611b4087896135b5565b611b4a91906135b5565b611b5491906135b5565b611b5e91906135b5565b601655601d54606490611b7290600f61360d565b611b7c919061362c565b6016541115611bcd5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610e59565b5050505050565b6005546001600160a01b03163314611bfe5760405162461bcd60e51b8152600401610e599061343d565b6001600160a01b038116611c635760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e59565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314611ce95760405162461bcd60e51b8152600401610e599061343d565b600f54600160c81b900460ff1615611d135760405162461bcd60e51b8152600401610e59906135c8565b60178590556018849055601b8390556019829055601a819055808284611d3987896135b5565b611d4391906135b5565b611d4d91906135b5565b611d5791906135b5565b601c55601d54606490611d6b90601961360d565b611d75919061362c565b601c541115611bcd5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610e59565b600080611dd383856135b5565b905083811015611e255760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610e59565b9392505050565b6001600160a01b038316611e8e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e59565b6001600160a01b038216611eef5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e59565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064602654600b54611f63919061360d565b611f6d919061362c565b600855600b5461271090611f8290600561360d565b611f8c919061362c565b600955600a54600b54606491611fa19161360d565b611fab919061362c565b602555565b6001600160a01b038316611fd65760405162461bcd60e51b8152600401610e599061364e565b6001600160a01b038216611ffc5760405162461bcd60e51b8152600401610e5990613693565b80600003612015576120108383600061289b565b505050565b6001600160a01b03831660009081526027602052604090205460ff168061205457506001600160a01b03821660009081526027602052604090205460ff165b156120645761201083838361289b565b600f54600160b01b900460ff16156123c9576005546001600160a01b038481169116148015906120a257506005546001600160a01b03838116911614155b80156120b657506001600160a01b03821615155b80156120cd57506001600160a01b03821661dead14155b80156120e35750600754600160a01b900460ff16155b156123c957600f54600160a01b900460ff1661213a5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610e59565b32600081815260106020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b03831660009081526029602052604090205460ff1680156121c357506001600160a01b03821660009081526028602052604090205460ff16155b80156121e857506001600160a01b03821660009081526029602052604090205460ff16155b1561225c576025546001600160a01b03831660009081526020819052604090205461221390836135b5565b11156122575760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e59565b6123c9565b6001600160a01b03821660009081526029602052604090205460ff16801561229d57506001600160a01b03831660009081526028602052604090205460ff16155b80156122c257506001600160a01b03831660009081526029602052604090205460ff16155b1561233f576008548111156122575760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610e59565b6001600160a01b03821660009081526028602052604090205460ff166123c9576025546001600160a01b03831660009081526020819052604090205461238590836135b5565b11156123c95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610e59565b30600090815260208190526040902054600954811080159081906123f75750600754600160a01b900460ff16155b801561240c5750600f54600160b81b900460ff165b801561243157506001600160a01b03851660009081526029602052604090205460ff16155b801561245657506001600160a01b03851660009081526027602052604090205460ff16155b801561247b57506001600160a01b03841660009081526027602052604090205460ff16155b156124a9576007805460ff60a01b1916600160a01b17905561249b6129a4565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526027602052604090205460ff600160a01b9092048216159116806124f757506001600160a01b03851660009081526027602052604090205460ff165b15612500575060005b600081156127f9576001600160a01b03861660009081526029602052604090205460ff16801561253257506000601c54115b1561266357612558601d54612552601c5488612e7490919063ffffffff16565b90612ef6565b9050601c546017548261256b919061360d565b612575919061362c565b601e600082825461258691906135b5565b9091555050601c5460185461259b908361360d565b6125a5919061362c565b601f60008282546125b691906135b5565b9091555050601c546019546125cb908361360d565b6125d5919061362c565b602060008282546125e691906135b5565b9091555050601c54601a546125fb908361360d565b612605919061362c565b6021600082825461261691906135b5565b9091555050600f54600160a81b900460ff161561265e57601c54601b5461263d908361360d565b612647919061362c565b6022600082825461265891906135b5565b90915550505b6127b3565b6001600160a01b03871660009081526029602052604090205460ff16801561268d57506000601654115b156127b3576126ad601d5461255260165488612e7490919063ffffffff16565b9050601654601154826126c0919061360d565b6126ca919061362c565b601e60008282546126db91906135b5565b90915550506016546012546126f0908361360d565b6126fa919061362c565b601f600082825461270b91906135b5565b9091555050601654601354612720908361360d565b61272a919061362c565b6020600082825461273b91906135b5565b9091555050601654601454612750908361360d565b61275a919061362c565b6021600082825461276b91906135b5565b9091555050600f54600160a81b900460ff16156127b357601654601554612792908361360d565b61279c919061362c565b602260008282546127ad91906135b5565b90915550505b80156127ec576127c487308361289b565b601e54156127ec576127d830601e54612f38565b600254600b556127e6611f51565b6000601e555b6127f681866136d6565b94505b61280487878761289b565b50505050505050565b600081848411156128315760405162461bcd60e51b8152600401610e59919061324c565b50600061283e84866136d6565b95945050505050565b6001600160a01b038216600081815260296020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166128c15760405162461bcd60e51b8152600401610e599061364e565b6001600160a01b0382166128e75760405162461bcd60e51b8152600401610e5990613693565b612924816040518060600160405280602681526020016137c9602691396001600160a01b038616600090815260208190526040902054919061280d565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546129539082611dc6565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611f44565b60006022541180156129c757506022543060009081526020819052604090205410155b15612a51576007546022546129e99130916001600160a01b039091169061289b565b600760009054906101000a90046001600160a01b03166001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015612a3957600080fd5b505af1925050508015612a4a575060015b5060006022555b3060009081526020819052604081205490506000602154602054601f54612a7891906135b5565b612a8291906135b5565b905081600003612a90575050565b600954612a9e90602861360d565b821115612ab657600954612ab390602861360d565b91505b612abf82613043565b6040516370a0823160e01b81523060048201526000907f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b0316906370a0823190602401602060405180830381865afa158015612b26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b4a91906136e9565b905060008260215483612b5d919061360d565b612b67919061362c565b905060008360205484612b7a919061360d565b612b84919061362c565b6000601f819055602081905560215590508115612c3557600d5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018490527f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489091169063a9059cbb906044016020604051808303816000875af1158015612c0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c339190613702565b505b8015612cd557600e5460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390527f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb489091169063a9059cbb906044016020604051808303816000875af1158015612caf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd39190613702565b505b6040516370a0823160e01b81523060048201526000907f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486001600160a01b0316906370a0823190602401602060405180830381865afa158015612d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6091906136e9565b1115611bcd57600c546040516370a0823160e01b81523060048201526001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb4881169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015612dd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612dfd91906136e9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015612e48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e6c9190613702565b505050505050565b600082600003612e8657506000610e29565b6000612e92838561360d565b905082612e9f858361362c565b14611e255760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610e59565b6000611e2583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506131dc565b6001600160a01b038216612f985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e59565b612fd5816040518060600160405280602281526020016137a7602291396001600160a01b038516600090815260208190526040902054919061280d565b6001600160a01b038316600090815260208190526040902055600254612ffb908261320a565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106130785761307861371f565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48816001815181106130cc576130cc61371f565b6001600160a01b0392831660209182029290920101526006546130f29130911684611e2c565b600654600f54604051635c11d79560e01b81526001600160a01b0392831692635c11d7959261312f92879260009288929116904290600401613735565b600060405180830381600087803b15801561314957600080fd5b505af115801561315d573d6000803e3d6000fd5b5050600f546040516304fa881160e21b81526001600160a01b037f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb488116600483015290911692506313ea20449150602401600060405180830381600087803b1580156131c857600080fd5b505af1158015612e6c573d6000803e3d6000fd5b600081836131fd5760405162461bcd60e51b8152600401610e59919061324c565b50600061283e848661362c565b6000611e2583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061280d565b600060208083528351808285015260005b818110156132795785810183015185820160400152820161325d565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146132b157600080fd5b919050565b6000602082840312156132c857600080fd5b611e258261329a565b600080604083850312156132e457600080fd5b6132ed8361329a565b946020939093013593505050565b60006020828403121561330d57600080fd5b5035919050565b60008060006060848603121561332957600080fd5b6133328461329a565b92506133406020850161329a565b9150604084013590509250925092565b8015158114610e9757600080fd5b6000806040838503121561337157600080fd5b61337a8361329a565b9150602083013561338a81613350565b809150509250929050565b600080604083850312156133a857600080fd5b6133b18361329a565b91506133bf6020840161329a565b90509250929050565b600080600080600060a086880312156133e057600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b600181811c9082168061341757607f821691505b60208210810361343757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526032908201527f43616e6e6f7420757064617465206578636c75646564206163636f756e74732060408201527118599d195c881c995b9bdd5b98d95b595b9d60721b606082015260800190565b60208082526037908201527f43616e6e6f7420757064617465206d6178207472616e73616374696f6e20616d60408201527f6f756e742061667465722072656e6f756e63656d656e74000000000000000000606082015260800190565b60208082526027908201527f43616e6e6f74207570646174652077616c6c65742061667465722072656e6f756040820152661b98d95b595b9d60ca1b606082015260800190565b6020808252601a908201527f63616e6e6f742073657420746f207a65726f2061646472657373000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610e2957610e2961359f565b60208082526025908201527f43616e6e6f742075706461746520666565732061667465722072656e6f756e63604082015264195b595b9d60da1b606082015260800190565b60008160001904831182151516156136275761362761359f565b500290565b60008261364957634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610e2957610e2961359f565b6000602082840312156136fb57600080fd5b5051919050565b60006020828403121561371457600080fd5b8151611e2581613350565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156137855784516001600160a01b031683529383019391830191600101613760565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f69fd27bc6a23b80f7ae8e314694559df59b0c1d7062e649e9c300d2872822aa64736f6c63430008100033

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.