ETH Price: $3,718.81 (+3.84%)

Token

ERC-20: Dump N Pump (DNP)
 

Overview

Max Total Supply

1,000,000,000 DNP

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.243410230221586642 DNP

Value
$0.00
0x4Cebb7dfC26fC1374AEaB9e7752b27FD84fcaC62
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:
DNP

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-11
*/

/**

Telegram : https://t.me/DNP_ERC
Website : https://dumpnpump.com/
Medium : https://medium.com/@dumpnpumperc/dump-n-pump-60caf93687f7

*/
// SPDX-License-Identifier: MIT
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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

pragma solidity >= 0.8.16;


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

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

    bool private swapping;

    uint256 public maxSellTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet = 1;

    uint256 public supply;

    address public marketingAddress = 0x3c604ce3d4a5Cd0d0Cc2A5596b4D7B5dd8AbB0ce;

    bool public tradingActive = true;
    bool public liquidityFeeActive = true;

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


    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => bool) public bots;

    uint256 public buyBurnFee = 0;
    uint256 public buyMarketingFee = 20;
    uint256 public buyLiquidityFee = 0;
    uint256 public buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee;

    uint256 public sellBurnFee = 0;
    uint256 public sellMarketingFee = 40;
    uint256 public sellLiquidityFee = 0;
    uint256 public sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee;

    uint256 public feeUnits = 100;

    uint256 public tokensForBurn;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;

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

    uint256 public maxWalletTotal;
    uint256 public maxSellTransaction = 1;

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

    // 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("Dump N Pump", "DNP") {

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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

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

        maxSellTransactionAmount = supply * maxSellTransaction / 100;
        swapTokensAtAmount = supply / 10000; // 0.1% swap wallet;
        maxWalletTotal = supply * maxWallet / 100;

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

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

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

    receive() external payable {}

    function toggleLiquidityFeeActive () external onlyOwner {
        if (liquidityFeeActive) {
        _previousBuyLiquidityFee = buyLiquidityFee;
        _previousSellLiquidityFee = sellLiquidityFee;
        }
        buyLiquidityFee = liquidityFeeActive ? 0 : _previousBuyLiquidityFee;
        sellLiquidityFee = liquidityFeeActive ? 0 : _previousSellLiquidityFee;
        liquidityFeeActive = !liquidityFeeActive;
    }


    function updateMaxSellTransaction(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        maxSellTransaction = newNum;
        updateLimits();
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 1);
        maxWallet = newNum;
        updateLimits();
    }

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


    function excludeFromMaxSellTransaction(address updAds, bool isEx) public onlyOwner {
        _isExcludedMaxSellTransactionAmount[updAds] = isEx;
    }

    // if want fractional % in future, need to increase the fee units
    function updateFeeUnits(uint256 newNum) external onlyOwner {
        feeUnits = newNum;
    }

    function manualSend() external {
        uint256 contractBalance = address(this).balance;
        payable(marketingAddress).transfer(contractBalance);
    }

    function updateBuyFees(uint256 _burnFee, uint256 _marketingFee, uint256 _buyLiquidityFee) external onlyOwner {
        buyBurnFee = _burnFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyBurnFee + buyMarketingFee + buyLiquidityFee;
        require(buyTotalFees <= 15 * feeUnits / 100, "Must keep fees at 15% or less");
    }

    function updateSellFees(uint256 _burnFee, uint256 _marketingFee, uint256 _sellLiquidityFee) external onlyOwner {
        sellBurnFee = _burnFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellBurnFee + sellMarketingFee + sellLiquidityFee;
        require(sellTotalFees <= 25 * feeUnits / 100, "Must keep fees at 25% or less");
    }

    function updateMarketingAddress(address newWallet) external onlyOwner {
        marketingAddress = newWallet;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function includeInFees(address account) public onlyOwner {
        excludeFromFees(account, false);
    }

    function setLiquidityAddress(address newAddress) public onlyOwner {
        liquidityAddress = newAddress;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        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");
        require(!bots[from] && !bots[to], "Account is blacklisted!");

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

        if(limitsInEffect){
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ){
                if(!tradingActive){
                    require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "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;
                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;
                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;
                }
            }
            if (tokensForLiquidity > 0) {
                super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
                tokensForLiquidity = 0;
            }
        	amount -= fees;
        }

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

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

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

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

    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if(contractBalance == 0) {return;}

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

        swapTokensForEth(contractBalance);

        tokensForMarketing = 0;
        if (address(this).balance > 50000000000000000)
        (success,) = address(marketingAddress).call{value: address(this).balance}("");
    }

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

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

}

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":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxSellTransactionAmount","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":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"liquidityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"sellTotalFees","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":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setLiquidityAddress","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":"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":"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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateFeeUnits","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":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600955600b80546001600160c01b03191677010101013c604ce3d4a5cd0d0cc2a5596b4d7b5dd8abb0ce1790556000600e8190556014600f819055601082905562000052908262000870565b6200005e919062000870565b6011556000601281905560286013819055601482905562000080908262000870565b6200008c919062000870565b60155560646016556000601a556000601b556001601d55348015620000b057600080fd5b506040518060400160405280600b81526020016a044756d70204e2050756d760ac1b815250604051806040016040528060038152602001620444e560ec1b81525081600390816200010291906200092a565b5060046200011182826200092a565b5050506000620001266200044a60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350737a250d5630b4cf539739df2c5dacb4c659f2488d620001968160016200044e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001e1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002079190620009f6565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000255573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027b9190620009f6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ef9190620009f6565b6001600160a01b031660a08190526200030a9060016200044e565b60a0516200031a906001620004c8565b60006b033b2e3c9fd0803ce8000000905080600a60008282546200033f919062000870565b9091555050601d54600a54606491620003589162000a21565b62000364919062000a43565b600755600a5462000379906127109062000a43565b600855600954600a54606491620003909162000a21565b6200039c919062000a43565b601c55620003be620003b66005546001600160a01b031690565b60016200051b565b620003cb3060016200051b565b620003da61dead60016200051b565b620003f9620003f16005546001600160a01b031690565b60016200044e565b620004063060016200044e565b6200041561dead60016200044e565b620004366200042c6005546001600160a01b031690565b60805183620005c5565b620004423382620006ed565b505062000a66565b3390565b6005546001600160a01b031633146200049d5760405162461bcd60e51b815260206004820181905260248201526000805160206200356683398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005665760405162461bcd60e51b8152602060048201819052602482015260008051602062003566833981519152604482015260640162000494565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038316620006295760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000494565b6001600160a01b0382166200068c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000494565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216620007455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000494565b6200076181600254620007ee60201b620014b91790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000794918390620014b9620007ee821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b600080620007fd838562000870565b905083811015620008515760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000494565b90505b92915050565b634e487b7160e01b600052601160045260246000fd5b808201808211156200085457620008546200085a565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620008b157607f821691505b602082108103620008d257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007e957600081815260208120601f850160051c81016020861015620009015750805b601f850160051c820191505b8181101562000922578281556001016200090d565b505050505050565b81516001600160401b0381111562000946576200094662000886565b6200095e816200095784546200089c565b84620008d8565b602080601f8311600181146200099657600084156200097d5750858301515b600019600386901b1c1916600185901b17855562000922565b600085815260208120601f198616915b82811015620009c757888601518255948401946001909101908401620009a6565b5085821015620009e65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121562000a0957600080fd5b81516001600160a01b03811681146200085157600080fd5b600081600019048311821515161562000a3e5762000a3e6200085a565b500290565b60008262000a6157634e487b7160e01b600052601260045260246000fd5b500490565b60805160a051612ab762000aaf6000396000818161067d015281816110bf0152611e970152600081816104d20152818161235901528181612412015261244e0152612ab76000f3fe60806040526004361061039a5760003560e01c80636ddd1713116101dc578063bbc0c74211610102578063e2f45605116100a0578063f42938901161006f578063f429389014610ac3578063f637434214610ad8578063f680f79914610aee578063f8b45b0514610b0457600080fd5b8063e2f4560514610a61578063e71dc3f514610a77578063f11a24d314610a8d578063f2fde38b14610aa357600080fd5b8063c17b5b8c116100dc578063c17b5b8c146109c5578063d85ba063146109e5578063dd62ed3e146109fb578063e18fc22414610a4157600080fd5b8063bbc0c74214610954578063bfd7928414610975578063c0246668146109a557600080fd5b806395d89b411161017a578063a9059cbb11610149578063a9059cbb146108cf578063ac819f54146108ef578063adb873bd1461090f578063b62496f51461092557600080fd5b806395d89b411461085a5780639a7a23d61461086f578063a457c2d71461088f578063a5ece941146108af57600080fd5b80637bce5a04116101b65780637bce5a04146107f05780638095d564146108065780638da5cb5b14610826578063921369131461084457600080fd5b80636ddd17131461078457806370a08231146107a5578063715018a6146107db57600080fd5b80632369bf83116102c157806349bd5a5e1161025f5780635dc083151161022e5780635dc0831514610719578063637845c6146107395780636a486a8e1461074e5780636b9990531461076457600080fd5b806349bd5a5e1461066b5780634a62bb651461069f5780634fbee193146106c0578063525fa81f146106f957600080fd5b8063313ce5671161029b578063313ce567146105f95780633221c93f1461061557806339509351146106355780633b13cc161461065557600080fd5b80632369bf83146105a357806323b872dd146105c357806327c8f835146105e357600080fd5b8063095ea7b3116103395780631a8145bb116103085780631a8145bb146105415780631c499ab0146105575780631d777856146105775780631f3fed8f1461058d57600080fd5b8063095ea7b3146104a05780631694505e146104c057806316a2f82a1461050c57806318160ddd1461052c57600080fd5b8063047fc9aa11610375578063047fc9aa14610407578063064f22051461041d57806306fdde031461044e5780630855f25d1461047057600080fd5b8062b8cf2a146103a657806302259e9e146103c8578063023ad581146103f157600080fd5b366103a157005b600080fd5b3480156103b257600080fd5b506103c66103c136600461256d565b610b1a565b005b3480156103d457600080fd5b506103de60075481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de601c5481565b34801561041357600080fd5b506103de600a5481565b34801561042957600080fd5b50600b5461043e90600160a81b900460ff1681565b60405190151581526020016103e8565b34801561045a57600080fd5b50610463610bb9565b6040516103e89190612632565b34801561047c57600080fd5b5061043e61048b366004612680565b601f6020526000908152604090205460ff1681565b3480156104ac57600080fd5b5061043e6104bb36600461269d565b610c4b565b3480156104cc57600080fd5b506104f47f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103e8565b34801561051857600080fd5b506103c6610527366004612680565b610c62565b34801561053857600080fd5b506002546103de565b34801561054d57600080fd5b506103de60195481565b34801561056357600080fd5b506103c66105723660046126c9565b610c9a565b34801561058357600080fd5b506103de60175481565b34801561059957600080fd5b506103de60185481565b3480156105af57600080fd5b506103c66105be366004612680565b610cdf565b3480156105cf57600080fd5b5061043e6105de3660046126e2565b610d2b565b3480156105ef57600080fd5b506104f461dead81565b34801561060557600080fd5b50604051601281526020016103e8565b34801561062157600080fd5b506006546104f4906001600160a01b031681565b34801561064157600080fd5b5061043e61065036600461269d565b610d94565b34801561066157600080fd5b506103de601d5481565b34801561067757600080fd5b506104f47f000000000000000000000000000000000000000000000000000000000000000081565b3480156106ab57600080fd5b50600b5461043e90600160b01b900460ff1681565b3480156106cc57600080fd5b5061043e6106db366004612680565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561070557600080fd5b506103c6610714366004612680565b610dca565b34801561072557600080fd5b506103c66107343660046126c9565b610e16565b34801561074557600080fd5b506103c6610e5b565b34801561075a57600080fd5b506103de60155481565b34801561077057600080fd5b506103c661077f366004612680565b610f03565b34801561079057600080fd5b50600b5461043e90600160b81b900460ff1681565b3480156107b157600080fd5b506103de6107c0366004612680565b6001600160a01b031660009081526020819052604090205490565b3480156107e757600080fd5b506103c6610f4e565b3480156107fc57600080fd5b506103de600f5481565b34801561081257600080fd5b506103c6610821366004612723565b610fc2565b34801561083257600080fd5b506005546001600160a01b03166104f4565b34801561085057600080fd5b506103de60135481565b34801561086657600080fd5b50610463611084565b34801561087b57600080fd5b506103c661088a36600461274f565b611093565b34801561089b57600080fd5b5061043e6108aa36600461269d565b61116e565b3480156108bb57600080fd5b50600b546104f4906001600160a01b031681565b3480156108db57600080fd5b5061043e6108ea36600461269d565b6111bd565b3480156108fb57600080fd5b506103c661090a36600461274f565b6111ca565b34801561091b57600080fd5b506103de60125481565b34801561093157600080fd5b5061043e610940366004612680565b602080526000908152604090205460ff1681565b34801561096057600080fd5b50600b5461043e90600160a01b900460ff1681565b34801561098157600080fd5b5061043e610990366004612680565b600d6020526000908152604090205460ff1681565b3480156109b157600080fd5b506103c66109c036600461274f565b61121f565b3480156109d157600080fd5b506103c66109e0366004612723565b6112a8565b3480156109f157600080fd5b506103de60115481565b348015610a0757600080fd5b506103de610a1636600461278d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4d57600080fd5b506103c6610a5c3660046126c9565b611365565b348015610a6d57600080fd5b506103de60085481565b348015610a8357600080fd5b506103de600e5481565b348015610a9957600080fd5b506103de60105481565b348015610aaf57600080fd5b506103c6610abe366004612680565b611394565b348015610acf57600080fd5b506103c661147f565b348015610ae457600080fd5b506103de60145481565b348015610afa57600080fd5b506103de60165481565b348015610b1057600080fd5b506103de60095481565b6005546001600160a01b03163314610b4d5760405162461bcd60e51b8152600401610b44906127bb565b60405180910390fd5b60005b8151811015610bb5576001600d6000848481518110610b7157610b716127f0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610bad8161281c565b915050610b50565b5050565b606060038054610bc890612835565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490612835565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b6000610c5833848461151f565b5060015b92915050565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b8152600401610b44906127bb565b610c9781600061121f565b50565b6005546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610b44906127bb565b6001811015610cd257600080fd5b6009819055610c97611644565b6005546001600160a01b03163314610d095760405162461bcd60e51b8152600401610b44906127bb565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d38848484611697565b610d8a8433610d8585604051806060016040528060288152602001612a35602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ee5565b61151f565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c58918590610d8590866114b9565b6005546001600160a01b03163314610df45760405162461bcd60e51b8152600401610b44906127bb565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b44906127bb565b6001811015610e4e57600080fd5b601d819055610c97611644565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610b44906127bb565b600b54600160a81b900460ff1615610ea457601054601a55601454601b555b600b54600160a81b900460ff16610ebd57601a54610ec0565b60005b601055600b54600160a81b900460ff16610edc57601b54610edf565b60005b601455600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b03163314610f785760405162461bcd60e51b8152600401610b44906127bb565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610fec5760405162461bcd60e51b8152600401610b44906127bb565b600e839055600f829055601081905580611006838561286f565b611010919061286f565b60115560165460649061102490600f612882565b61102e91906128a1565b601154111561107f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610b44565b505050565b606060048054610bc890612835565b6005546001600160a01b031633146110bd5760405162461bcd60e51b8152600401610b44906127bb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036111645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b44565b610bb58282611f1f565b6000610c583384610d8585604051806060016040528060258152602001612a5d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ee5565b6000610c58338484611697565b6005546001600160a01b031633146111f45760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112495760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112d25760405162461bcd60e51b8152600401610b44906127bb565b601283905560138290556014819055806112ec838561286f565b6112f6919061286f565b60155560165460649061130a906019612882565b61131491906128a1565b601554111561107f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b44565b6005546001600160a01b0316331461138f5760405162461bcd60e51b8152600401610b44906127bb565b601655565b6005546001600160a01b031633146113be5760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b44565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bb5573d6000803e3d6000fd5b6000806114c6838561286f565b9050838110156115185760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b44565b9392505050565b6001600160a01b0383166115815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b44565b6001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064601d54600a546116569190612882565b61166091906128a1565b600755600a54611673906103e8906128a1565b600855600954600a5460649161168891612882565b61169291906128a1565b601c55565b6001600160a01b0383166116bd5760405162461bcd60e51b8152600401610b44906128c3565b6001600160a01b0382166116e35760405162461bcd60e51b8152600401610b4490612908565b6001600160a01b0383166000908152600d602052604090205460ff1615801561172557506001600160a01b0382166000908152600d602052604090205460ff16155b6117715760405162461bcd60e51b815260206004820152601760248201527f4163636f756e7420697320626c61636b6c6973746564210000000000000000006044820152606401610b44565b806000036117855761107f83836000611f72565b600b54600160b01b900460ff1615611b29576005546001600160a01b038481169116148015906117c357506005546001600160a01b03838116911614155b80156117d757506001600160a01b03821615155b80156117ee57506001600160a01b03821661dead14155b80156118045750600654600160a01b900460ff16155b15611b2957600b54600160a01b900460ff1661189e576001600160a01b0383166000908152601e602052604090205460ff168061185957506001600160a01b0382166000908152601e602052604090205460ff165b61189e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b44565b326000818152600c6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b038316600090815260208052604090205460ff16801561192657506001600160a01b0382166000908152601f602052604090205460ff16155b801561194a57506001600160a01b038216600090815260208052604090205460ff16155b156119be57601c546001600160a01b038316600090815260208190526040902054611975908361286f565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b611b29565b6001600160a01b038216600090815260208052604090205460ff1680156119fe57506001600160a01b0383166000908152601f602052604090205460ff16155b8015611a2257506001600160a01b038316600090815260208052604090205460ff16155b15611a9f576007548111156119b95760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610b44565b6001600160a01b0382166000908152601f602052604090205460ff16611b2957601c546001600160a01b038316600090815260208190526040902054611ae5908361286f565b1115611b295760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b3060009081526020819052604090205460085481108015908190611b575750600654600160a01b900460ff16155b8015611b6c5750600b54600160b81b900460ff165b8015611b9057506001600160a01b038516600090815260208052604090205460ff16155b8015611bb557506001600160a01b0385166000908152601e602052604090205460ff16155b8015611bda57506001600160a01b0384166000908152601e602052604090205460ff16155b15611c08576006805460ff60a01b1916600160a01b179055611bfa61207b565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611c5657506001600160a01b0385166000908152601e602052604090205460ff165b15611c5f575060005b60008115611ed1576001600160a01b038616600090815260208052604090205460ff168015611c9057506000601554115b15611d6157611cb6601654611cb06015548861213390919063ffffffff16565b906121b5565b905060155460125482611cc99190612882565b611cd391906128a1565b60176000828254611ce4919061286f565b9091555050601554601354611cf99083612882565b611d0391906128a1565b60186000828254611d14919061286f565b9091555050600b54600160a81b900460ff1615611d5c57601554601454611d3b9083612882565b611d4591906128a1565b60196000828254611d56919061286f565b90915550505b611e50565b6001600160a01b038716600090815260208052604090205460ff168015611d8a57506000601154115b15611e5057611daa601654611cb06011548861213390919063ffffffff16565b9050601154600e5482611dbd9190612882565b611dc791906128a1565b60176000828254611dd8919061286f565b9091555050601154600f54611ded9083612882565b611df791906128a1565b60186000828254611e08919061286f565b9091555050600b54600160a81b900460ff1615611e5057601154601054611e2f9083612882565b611e3991906128a1565b60196000828254611e4a919061286f565b90915550505b8015611e8957611e61873083611f72565b60175415611e8957611e75306017546121f7565b600254600a55611e83611644565b60006017555b60195415611ec457611ebe307f0000000000000000000000000000000000000000000000000000000000000000601954611f72565b60006019555b611ece818661294b565b94505b611edc878787611f72565b50505050505050565b60008184841115611f095760405162461bcd60e51b8152600401610b449190612632565b506000611f16848661294b565b95945050505050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f985760405162461bcd60e51b8152600401610b44906128c3565b6001600160a01b038216611fbe5760405162461bcd60e51b8152600401610b4490612908565b611ffb81604051806060016040528060268152602001612a0f602691396001600160a01b0386166000908152602081905260409020549190611ee5565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461202a90826114b9565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611637565b3060009081526020819052604081205490818103612097575050565b6008546120a5906005612882565b8211156120bd576008546120ba906005612882565b91505b6120c682612302565b600060185566b1a2bc2ec50000471115610bb557600b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b5050505050565b60008260000361214557506000610c5c565b60006121518385612882565b90508261215e85836128a1565b146115185760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b44565b600061151883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124c2565b6001600160a01b0382166122575760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b44565b612294816040518060600160405280602281526020016129ed602291396001600160a01b0385166000908152602081905260409020549190611ee5565b6001600160a01b0383166000908152602081905260409020556002546122ba90826124f0565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612337576123376127f0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d9919061295e565b816001815181106123ec576123ec6127f0565b60200260200101906001600160a01b031690816001600160a01b031681525050612437307f00000000000000000000000000000000000000000000000000000000000000008461151f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061248c90859060009086903090429060040161297b565b600060405180830381600087803b1580156124a657600080fd5b505af11580156124ba573d6000803e3d6000fd5b505050505050565b600081836124e35760405162461bcd60e51b8152600401610b449190612632565b506000611f1684866128a1565b600061151883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ee5565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c9757600080fd5b803561256881612548565b919050565b6000602080838503121561258057600080fd5b823567ffffffffffffffff8082111561259857600080fd5b818501915085601f8301126125ac57600080fd5b8135818111156125be576125be612532565b8060051b604051601f19603f830116810181811085821117156125e3576125e3612532565b60405291825284820192508381018501918883111561260157600080fd5b938501935b82851015612626576126178561255d565b84529385019392850192612606565b98975050505050505050565b600060208083528351808285015260005b8181101561265f57858101830151858201604001528201612643565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561269257600080fd5b813561151881612548565b600080604083850312156126b057600080fd5b82356126bb81612548565b946020939093013593505050565b6000602082840312156126db57600080fd5b5035919050565b6000806000606084860312156126f757600080fd5b833561270281612548565b9250602084013561271281612548565b929592945050506040919091013590565b60008060006060848603121561273857600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561276257600080fd5b823561276d81612548565b91506020830135801515811461278257600080fd5b809150509250929050565b600080604083850312156127a057600080fd5b82356127ab81612548565b9150602083013561278281612548565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161282e5761282e612806565b5060010190565b600181811c9082168061284957607f821691505b60208210810361286957634e487b7160e01b600052602260045260246000fd5b50919050565b80820180821115610c5c57610c5c612806565b600081600019048311821515161561289c5761289c612806565b500290565b6000826128be57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c5c57610c5c612806565b60006020828403121561297057600080fd5b815161151881612548565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129cb5784516001600160a01b0316835293830193918301916001016129a6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c956ea6efe53b5a8c55dfe844e7c68ae015e3ae79e780bb559a756903158486c64736f6c634300081000334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061039a5760003560e01c80636ddd1713116101dc578063bbc0c74211610102578063e2f45605116100a0578063f42938901161006f578063f429389014610ac3578063f637434214610ad8578063f680f79914610aee578063f8b45b0514610b0457600080fd5b8063e2f4560514610a61578063e71dc3f514610a77578063f11a24d314610a8d578063f2fde38b14610aa357600080fd5b8063c17b5b8c116100dc578063c17b5b8c146109c5578063d85ba063146109e5578063dd62ed3e146109fb578063e18fc22414610a4157600080fd5b8063bbc0c74214610954578063bfd7928414610975578063c0246668146109a557600080fd5b806395d89b411161017a578063a9059cbb11610149578063a9059cbb146108cf578063ac819f54146108ef578063adb873bd1461090f578063b62496f51461092557600080fd5b806395d89b411461085a5780639a7a23d61461086f578063a457c2d71461088f578063a5ece941146108af57600080fd5b80637bce5a04116101b65780637bce5a04146107f05780638095d564146108065780638da5cb5b14610826578063921369131461084457600080fd5b80636ddd17131461078457806370a08231146107a5578063715018a6146107db57600080fd5b80632369bf83116102c157806349bd5a5e1161025f5780635dc083151161022e5780635dc0831514610719578063637845c6146107395780636a486a8e1461074e5780636b9990531461076457600080fd5b806349bd5a5e1461066b5780634a62bb651461069f5780634fbee193146106c0578063525fa81f146106f957600080fd5b8063313ce5671161029b578063313ce567146105f95780633221c93f1461061557806339509351146106355780633b13cc161461065557600080fd5b80632369bf83146105a357806323b872dd146105c357806327c8f835146105e357600080fd5b8063095ea7b3116103395780631a8145bb116103085780631a8145bb146105415780631c499ab0146105575780631d777856146105775780631f3fed8f1461058d57600080fd5b8063095ea7b3146104a05780631694505e146104c057806316a2f82a1461050c57806318160ddd1461052c57600080fd5b8063047fc9aa11610375578063047fc9aa14610407578063064f22051461041d57806306fdde031461044e5780630855f25d1461047057600080fd5b8062b8cf2a146103a657806302259e9e146103c8578063023ad581146103f157600080fd5b366103a157005b600080fd5b3480156103b257600080fd5b506103c66103c136600461256d565b610b1a565b005b3480156103d457600080fd5b506103de60075481565b6040519081526020015b60405180910390f35b3480156103fd57600080fd5b506103de601c5481565b34801561041357600080fd5b506103de600a5481565b34801561042957600080fd5b50600b5461043e90600160a81b900460ff1681565b60405190151581526020016103e8565b34801561045a57600080fd5b50610463610bb9565b6040516103e89190612632565b34801561047c57600080fd5b5061043e61048b366004612680565b601f6020526000908152604090205460ff1681565b3480156104ac57600080fd5b5061043e6104bb36600461269d565b610c4b565b3480156104cc57600080fd5b506104f47f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103e8565b34801561051857600080fd5b506103c6610527366004612680565b610c62565b34801561053857600080fd5b506002546103de565b34801561054d57600080fd5b506103de60195481565b34801561056357600080fd5b506103c66105723660046126c9565b610c9a565b34801561058357600080fd5b506103de60175481565b34801561059957600080fd5b506103de60185481565b3480156105af57600080fd5b506103c66105be366004612680565b610cdf565b3480156105cf57600080fd5b5061043e6105de3660046126e2565b610d2b565b3480156105ef57600080fd5b506104f461dead81565b34801561060557600080fd5b50604051601281526020016103e8565b34801561062157600080fd5b506006546104f4906001600160a01b031681565b34801561064157600080fd5b5061043e61065036600461269d565b610d94565b34801561066157600080fd5b506103de601d5481565b34801561067757600080fd5b506104f47f000000000000000000000000143e13c7c7c4cddeb3a938a59734f2e2d1e733d581565b3480156106ab57600080fd5b50600b5461043e90600160b01b900460ff1681565b3480156106cc57600080fd5b5061043e6106db366004612680565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561070557600080fd5b506103c6610714366004612680565b610dca565b34801561072557600080fd5b506103c66107343660046126c9565b610e16565b34801561074557600080fd5b506103c6610e5b565b34801561075a57600080fd5b506103de60155481565b34801561077057600080fd5b506103c661077f366004612680565b610f03565b34801561079057600080fd5b50600b5461043e90600160b81b900460ff1681565b3480156107b157600080fd5b506103de6107c0366004612680565b6001600160a01b031660009081526020819052604090205490565b3480156107e757600080fd5b506103c6610f4e565b3480156107fc57600080fd5b506103de600f5481565b34801561081257600080fd5b506103c6610821366004612723565b610fc2565b34801561083257600080fd5b506005546001600160a01b03166104f4565b34801561085057600080fd5b506103de60135481565b34801561086657600080fd5b50610463611084565b34801561087b57600080fd5b506103c661088a36600461274f565b611093565b34801561089b57600080fd5b5061043e6108aa36600461269d565b61116e565b3480156108bb57600080fd5b50600b546104f4906001600160a01b031681565b3480156108db57600080fd5b5061043e6108ea36600461269d565b6111bd565b3480156108fb57600080fd5b506103c661090a36600461274f565b6111ca565b34801561091b57600080fd5b506103de60125481565b34801561093157600080fd5b5061043e610940366004612680565b602080526000908152604090205460ff1681565b34801561096057600080fd5b50600b5461043e90600160a01b900460ff1681565b34801561098157600080fd5b5061043e610990366004612680565b600d6020526000908152604090205460ff1681565b3480156109b157600080fd5b506103c66109c036600461274f565b61121f565b3480156109d157600080fd5b506103c66109e0366004612723565b6112a8565b3480156109f157600080fd5b506103de60115481565b348015610a0757600080fd5b506103de610a1636600461278d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b348015610a4d57600080fd5b506103c6610a5c3660046126c9565b611365565b348015610a6d57600080fd5b506103de60085481565b348015610a8357600080fd5b506103de600e5481565b348015610a9957600080fd5b506103de60105481565b348015610aaf57600080fd5b506103c6610abe366004612680565b611394565b348015610acf57600080fd5b506103c661147f565b348015610ae457600080fd5b506103de60145481565b348015610afa57600080fd5b506103de60165481565b348015610b1057600080fd5b506103de60095481565b6005546001600160a01b03163314610b4d5760405162461bcd60e51b8152600401610b44906127bb565b60405180910390fd5b60005b8151811015610bb5576001600d6000848481518110610b7157610b716127f0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610bad8161281c565b915050610b50565b5050565b606060038054610bc890612835565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf490612835565b8015610c415780601f10610c1657610100808354040283529160200191610c41565b820191906000526020600020905b815481529060010190602001808311610c2457829003601f168201915b5050505050905090565b6000610c5833848461151f565b5060015b92915050565b6005546001600160a01b03163314610c8c5760405162461bcd60e51b8152600401610b44906127bb565b610c9781600061121f565b50565b6005546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610b44906127bb565b6001811015610cd257600080fd5b6009819055610c97611644565b6005546001600160a01b03163314610d095760405162461bcd60e51b8152600401610b44906127bb565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610d38848484611697565b610d8a8433610d8585604051806060016040528060288152602001612a35602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ee5565b61151f565b5060019392505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610c58918590610d8590866114b9565b6005546001600160a01b03163314610df45760405162461bcd60e51b8152600401610b44906127bb565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e405760405162461bcd60e51b8152600401610b44906127bb565b6001811015610e4e57600080fd5b601d819055610c97611644565b6005546001600160a01b03163314610e855760405162461bcd60e51b8152600401610b44906127bb565b600b54600160a81b900460ff1615610ea457601054601a55601454601b555b600b54600160a81b900460ff16610ebd57601a54610ec0565b60005b601055600b54600160a81b900460ff16610edc57601b54610edf565b60005b601455600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610f2d5760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b03166000908152600d60205260409020805460ff19169055565b6005546001600160a01b03163314610f785760405162461bcd60e51b8152600401610b44906127bb565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610fec5760405162461bcd60e51b8152600401610b44906127bb565b600e839055600f829055601081905580611006838561286f565b611010919061286f565b60115560165460649061102490600f612882565b61102e91906128a1565b601154111561107f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313525206f72206c6573730000006044820152606401610b44565b505050565b606060048054610bc890612835565b6005546001600160a01b031633146110bd5760405162461bcd60e51b8152600401610b44906127bb565b7f000000000000000000000000143e13c7c7c4cddeb3a938a59734f2e2d1e733d56001600160a01b0316826001600160a01b0316036111645760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b44565b610bb58282611f1f565b6000610c583384610d8585604051806060016040528060258152602001612a5d602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ee5565b6000610c58338484611697565b6005546001600160a01b031633146111f45760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146112495760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146112d25760405162461bcd60e51b8152600401610b44906127bb565b601283905560138290556014819055806112ec838561286f565b6112f6919061286f565b60155560165460649061130a906019612882565b61131491906128a1565b601554111561107f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323525206f72206c6573730000006044820152606401610b44565b6005546001600160a01b0316331461138f5760405162461bcd60e51b8152600401610b44906127bb565b601655565b6005546001600160a01b031633146113be5760405162461bcd60e51b8152600401610b44906127bb565b6001600160a01b0381166114235760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b44565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bb5573d6000803e3d6000fd5b6000806114c6838561286f565b9050838110156115185760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610b44565b9392505050565b6001600160a01b0383166115815760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610b44565b6001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610b44565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6064601d54600a546116569190612882565b61166091906128a1565b600755600a54611673906103e8906128a1565b600855600954600a5460649161168891612882565b61169291906128a1565b601c55565b6001600160a01b0383166116bd5760405162461bcd60e51b8152600401610b44906128c3565b6001600160a01b0382166116e35760405162461bcd60e51b8152600401610b4490612908565b6001600160a01b0383166000908152600d602052604090205460ff1615801561172557506001600160a01b0382166000908152600d602052604090205460ff16155b6117715760405162461bcd60e51b815260206004820152601760248201527f4163636f756e7420697320626c61636b6c6973746564210000000000000000006044820152606401610b44565b806000036117855761107f83836000611f72565b600b54600160b01b900460ff1615611b29576005546001600160a01b038481169116148015906117c357506005546001600160a01b03838116911614155b80156117d757506001600160a01b03821615155b80156117ee57506001600160a01b03821661dead14155b80156118045750600654600160a01b900460ff16155b15611b2957600b54600160a01b900460ff1661189e576001600160a01b0383166000908152601e602052604090205460ff168061185957506001600160a01b0382166000908152601e602052604090205460ff165b61189e5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610b44565b326000818152600c6020908152604091829020429081905591519182527fff12548a3ebb8257a10ea929ff01f69da0424c5bb36050f8d6df03452cbd4d00910160405180910390a26001600160a01b038316600090815260208052604090205460ff16801561192657506001600160a01b0382166000908152601f602052604090205460ff16155b801561194a57506001600160a01b038216600090815260208052604090205460ff16155b156119be57601c546001600160a01b038316600090815260208190526040902054611975908361286f565b11156119b95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b611b29565b6001600160a01b038216600090815260208052604090205460ff1680156119fe57506001600160a01b0383166000908152601f602052604090205460ff16155b8015611a2257506001600160a01b038316600090815260208052604090205460ff16155b15611a9f576007548111156119b95760405162461bcd60e51b815260206004820152603a60248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d617853656c6c5472616e73616374696f6e416d6f756e742e0000000000006064820152608401610b44565b6001600160a01b0382166000908152601f602052604090205460ff16611b2957601c546001600160a01b038316600090815260208190526040902054611ae5908361286f565b1115611b295760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610b44565b3060009081526020819052604090205460085481108015908190611b575750600654600160a01b900460ff16155b8015611b6c5750600b54600160b81b900460ff165b8015611b9057506001600160a01b038516600090815260208052604090205460ff16155b8015611bb557506001600160a01b0385166000908152601e602052604090205460ff16155b8015611bda57506001600160a01b0384166000908152601e602052604090205460ff16155b15611c08576006805460ff60a01b1916600160a01b179055611bfa61207b565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b909204821615911680611c5657506001600160a01b0385166000908152601e602052604090205460ff165b15611c5f575060005b60008115611ed1576001600160a01b038616600090815260208052604090205460ff168015611c9057506000601554115b15611d6157611cb6601654611cb06015548861213390919063ffffffff16565b906121b5565b905060155460125482611cc99190612882565b611cd391906128a1565b60176000828254611ce4919061286f565b9091555050601554601354611cf99083612882565b611d0391906128a1565b60186000828254611d14919061286f565b9091555050600b54600160a81b900460ff1615611d5c57601554601454611d3b9083612882565b611d4591906128a1565b60196000828254611d56919061286f565b90915550505b611e50565b6001600160a01b038716600090815260208052604090205460ff168015611d8a57506000601154115b15611e5057611daa601654611cb06011548861213390919063ffffffff16565b9050601154600e5482611dbd9190612882565b611dc791906128a1565b60176000828254611dd8919061286f565b9091555050601154600f54611ded9083612882565b611df791906128a1565b60186000828254611e08919061286f565b9091555050600b54600160a81b900460ff1615611e5057601154601054611e2f9083612882565b611e3991906128a1565b60196000828254611e4a919061286f565b90915550505b8015611e8957611e61873083611f72565b60175415611e8957611e75306017546121f7565b600254600a55611e83611644565b60006017555b60195415611ec457611ebe307f000000000000000000000000143e13c7c7c4cddeb3a938a59734f2e2d1e733d5601954611f72565b60006019555b611ece818661294b565b94505b611edc878787611f72565b50505050505050565b60008184841115611f095760405162461bcd60e51b8152600401610b449190612632565b506000611f16848661294b565b95945050505050565b6001600160a01b0382166000818152602080526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f985760405162461bcd60e51b8152600401610b44906128c3565b6001600160a01b038216611fbe5760405162461bcd60e51b8152600401610b4490612908565b611ffb81604051806060016040528060268152602001612a0f602691396001600160a01b0386166000908152602081905260409020549190611ee5565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461202a90826114b9565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611637565b3060009081526020819052604081205490818103612097575050565b6008546120a5906005612882565b8211156120bd576008546120ba906005612882565b91505b6120c682612302565b600060185566b1a2bc2ec50000471115610bb557600b546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612127576040519150601f19603f3d011682016040523d82523d6000602084013e61212c565b606091505b5050505050565b60008260000361214557506000610c5c565b60006121518385612882565b90508261215e85836128a1565b146115185760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610b44565b600061151883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124c2565b6001600160a01b0382166122575760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610b44565b612294816040518060600160405280602281526020016129ed602291396001600160a01b0385166000908152602081905260409020549190611ee5565b6001600160a01b0383166000908152602081905260409020556002546122ba90826124f0565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612337576123376127f0565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d9919061295e565b816001815181106123ec576123ec6127f0565b60200260200101906001600160a01b031690816001600160a01b031681525050612437307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461151f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061248c90859060009086903090429060040161297b565b600060405180830381600087803b1580156124a657600080fd5b505af11580156124ba573d6000803e3d6000fd5b505050505050565b600081836124e35760405162461bcd60e51b8152600401610b449190612632565b506000611f1684866128a1565b600061151883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ee5565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c9757600080fd5b803561256881612548565b919050565b6000602080838503121561258057600080fd5b823567ffffffffffffffff8082111561259857600080fd5b818501915085601f8301126125ac57600080fd5b8135818111156125be576125be612532565b8060051b604051601f19603f830116810181811085821117156125e3576125e3612532565b60405291825284820192508381018501918883111561260157600080fd5b938501935b82851015612626576126178561255d565b84529385019392850192612606565b98975050505050505050565b600060208083528351808285015260005b8181101561265f57858101830151858201604001528201612643565b506000604082860101526040601f19601f8301168501019250505092915050565b60006020828403121561269257600080fd5b813561151881612548565b600080604083850312156126b057600080fd5b82356126bb81612548565b946020939093013593505050565b6000602082840312156126db57600080fd5b5035919050565b6000806000606084860312156126f757600080fd5b833561270281612548565b9250602084013561271281612548565b929592945050506040919091013590565b60008060006060848603121561273857600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561276257600080fd5b823561276d81612548565b91506020830135801515811461278257600080fd5b809150509250929050565b600080604083850312156127a057600080fd5b82356127ab81612548565b9150602083013561278281612548565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820161282e5761282e612806565b5060010190565b600181811c9082168061284957607f821691505b60208210810361286957634e487b7160e01b600052602260045260246000fd5b50919050565b80820180821115610c5c57610c5c612806565b600081600019048311821515161561289c5761289c612806565b500290565b6000826128be57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610c5c57610c5c612806565b60006020828403121561297057600080fd5b815161151881612548565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156129cb5784516001600160a01b0316835293830193918301916001016129a6565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c956ea6efe53b5a8c55dfe844e7c68ae015e3ae79e780bb559a756903158486c64736f6c63430008100033

Deployed Bytecode Sourcemap

25216:12781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37723:169;;;;;;;;;;-1:-1:-1;37723:169:0;;;;;:::i;:::-;;:::i;:::-;;25522:39;;;;;;;;;;;;;;;;;;;1693:25:1;;;1681:2;1666:18;25522:39:0;;;;;;;;26717:29;;;;;;;;;;;;;;;;25645:21;;;;;;;;;;;;;;;;25799:37;;;;;;;;;;-1:-1:-1;25799:37:0;;;;-1:-1:-1;;;25799:37:0;;;;;;;;;1894:14:1;;1887:22;1869:41;;1857:2;1842:18;25799:37:0;1729:187:1;7607:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26940:68::-;;;;;;;;;;-1:-1:-1;26940:68:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9774:169;;;;;;;;;;-1:-1:-1;9774:169:0;;;;;:::i;:::-;;:::i;25289:51::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3237:32:1;;;3219:51;;3207:2;3192:18;25289:51:0;3046:230:1;31629:107:0;;;;;;;;;;-1:-1:-1;31629:107:0;;;;;:::i;:::-;;:::i;8727:108::-;;;;;;;;;;-1:-1:-1;8815:12:0;;8727:108;;26570:33;;;;;;;;;;;;;;;;29594:153;;;;;;;;;;-1:-1:-1;29594:153:0;;;;;:::i;:::-;;:::i;26495:28::-;;;;;;;;;;;;;;;;26530:33;;;;;;;;;;;;;;;;31314:117;;;;;;;;;;-1:-1:-1;31314:117:0;;;;;:::i;:::-;;:::i;10425:355::-;;;;;;;;;;-1:-1:-1;10425:355:0;;;;;:::i;:::-;;:::i;25392:53::-;;;;;;;;;;;;25438:6;25392:53;;8569:93;;;;;;;;;;-1:-1:-1;8569:93:0;;8652:2;4277:36:1;;4265:2;4250:18;8569:93:0;4135:184:1;25452:31:0;;;;;;;;;;-1:-1:-1;25452:31:0;;;;-1:-1:-1;;;;;25452:31:0;;;11189:218;;;;;;;;;;-1:-1:-1;11189:218:0;;;;;:::i;:::-;;:::i;26753:37::-;;;;;;;;;;;;;;;;25347:38;;;;;;;;;;;;;;;25845:33;;;;;;;;;;-1:-1:-1;25845:33:0;;;;-1:-1:-1;;;25845:33:0;;;;;;32314:125;;;;;;;;;;-1:-1:-1;32314:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;32403:28:0;32379:4;32403:28;;;:19;:28;;;;;;;;;32314:125;31744:114;;;;;;;;;;-1:-1:-1;31744:114:0;;;;;:::i;:::-;;:::i;29415:171::-;;;;;;;;;;-1:-1:-1;29415:171:0;;;;;:::i;:::-;;:::i;28978:427::-;;;;;;;;;;;;;:::i;26368:80::-;;;;;;;;;;;;;;;;37900:92;;;;;;;;;;-1:-1:-1;37900:92:0;;;;;:::i;:::-;;:::i;25885:30::-;;;;;;;;;;-1:-1:-1;25885:30:0;;;;-1:-1:-1;;;25885:30:0;;;;;;8898:127;;;;;;;;;;-1:-1:-1;8898:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8999:18:0;8972:7;8999:18;;;;;;;;;;;;8898:127;22068:148;;;;;;;;;;;;;:::i;26078:35::-;;;;;;;;;;;;;;;;30495:396;;;;;;;;;;-1:-1:-1;30495:396:0;;;;;:::i;:::-;;:::i;21426:79::-;;;;;;;;;;-1:-1:-1;21491:6:0;;-1:-1:-1;;;;;21491:6:0;21426:79;;26283:36;;;;;;;;;;;;;;;;7826:104;;;;;;;;;;;;;:::i;31866:244::-;;;;;;;;;;-1:-1:-1;31866:244:0;;;;;:::i;:::-;;:::i;11910:269::-;;;;;;;;;;-1:-1:-1;11910:269:0;;;;;:::i;:::-;;:::i;25675:76::-;;;;;;;;;;-1:-1:-1;25675:76:0;;;;-1:-1:-1;;;;;25675:76:0;;;9238:175;;;;;;;;;;-1:-1:-1;9238:175:0;;;;;:::i;:::-;;:::i;29994:152::-;;;;;;;;;;-1:-1:-1;29994:152:0;;;;;:::i;:::-;;:::i;26246:30::-;;;;;;;;;;;;;;;;27162:58;;;;;;;;;;-1:-1:-1;27162:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25760:32;;;;;;;;;;-1:-1:-1;25760:32:0;;;;-1:-1:-1;;;25760:32:0;;;;;;25997:36;;;;;;;;;;-1:-1:-1;25997:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31439:182;;;;;;;;;;-1:-1:-1;31439:182:0;;;;;:::i;:::-;;:::i;30899:407::-;;;;;;;;;;-1:-1:-1;30899:407:0;;;;;:::i;:::-;;:::i;26161:76::-;;;;;;;;;;;;;;;;9476:151;;;;;;;;;;-1:-1:-1;9476:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;9592:18:0;;;9565:7;9592:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9476:151;30225:95;;;;;;;;;;-1:-1:-1;30225:95:0;;;;;:::i;:::-;;:::i;25568:33::-;;;;;;;;;;;;;;;;26042:29;;;;;;;;;;;;;;;;26120:34;;;;;;;;;;;;;;;;22371:244;;;;;;;;;;-1:-1:-1;22371:244:0;;;;;:::i;:::-;;:::i;30328:159::-;;;;;;;;;;;;;:::i;26326:35::-;;;;;;;;;;;;;;;;26457:29;;;;;;;;;;;;;;;;25608:28;;;;;;;;;;;;;;;;37723:169;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;;;;;;;;;37799:9:::1;37794:91;37818:5;:12;37814:1;:16;37794:91;;;37869:4;37852;:14;37857:5;37863:1;37857:8;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;37852:14:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;37852:14:0;:21;;-1:-1:-1;;37852:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37832:3;::::1;::::0;::::1;:::i;:::-;;;;37794:91;;;;37723:169:::0;:::o;7607:100::-;7661:13;7694:5;7687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7607:100;:::o;9774:169::-;9857:4;9874:39;323:10;9897:7;9906:6;9874:8;:39::i;:::-;-1:-1:-1;9931:4:0;9774:169;;;;;:::o;31629:107::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;31697:31:::1;31713:7;31722:5;31697:15;:31::i;:::-;31629:107:::0;:::o;29594:153::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;29683:1:::1;29673:6;:11;;29665:20;;;::::0;::::1;;29696:9;:18:::0;;;29725:14:::1;:12;:14::i;31314:117::-:0;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;31395:16:::1;:28:::0;;-1:-1:-1;;;;;;31395:28:0::1;-1:-1:-1::0;;;;;31395:28:0;;;::::1;::::0;;;::::1;::::0;;31314:117::o;10425:355::-;10565:4;10582:36;10592:6;10600:9;10611:6;10582:9;:36::i;:::-;10629:121;10638:6;323:10;10660:89;10698:6;10660:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10660:19:0;;;;;;:11;:19;;;;;;;;323:10;10660:33;;;;;;;;;;:37;:89::i;:::-;10629:8;:121::i;:::-;-1:-1:-1;10768:4:0;10425:355;;;;;:::o;11189:218::-;323:10;11277:4;11326:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11326:34:0;;;;;;;;;;11277:4;;11294:83;;11317:7;;11326:50;;11365:10;11326:38;:50::i;31744:114::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;31821:16:::1;:29:::0;;-1:-1:-1;;;;;;31821:29:0::1;-1:-1:-1::0;;;;;31821:29:0;;;::::1;::::0;;;::::1;::::0;;31744:114::o;29415:171::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;29513:1:::1;29503:6;:11;;29495:20;;;::::0;::::1;;29526:18;:27:::0;;;29564:14:::1;:12;:14::i;28978:427::-:0;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;29049:18:::1;::::0;-1:-1:-1;;;29049:18:0;::::1;;;29045:144;;;29107:15;::::0;29080:24:::1;:42:::0;29161:16:::1;::::0;29133:25:::1;:44:::0;29045:144:::1;29217:18;::::0;-1:-1:-1;;;29217:18:0;::::1;;;:49;;29242:24;;29217:49;;;29238:1;29217:49;29199:15;:67:::0;29296:18:::1;::::0;-1:-1:-1;;;29296:18:0;::::1;;;:50;;29321:25;;29296:50;;;29317:1;29296:50;29277:16;:69:::0;29379:18:::1;::::0;;-1:-1:-1;;;;29357:40:0;::::1;-1:-1:-1::0;;;29379:18:0;;;::::1;;;29378:19;29357:40:::0;;::::1;;::::0;;28978:427::o;37900:92::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37964:12:0::1;37979:5;37964:12:::0;;;:4:::1;:12;::::0;;;;:20;;-1:-1:-1;;37964:20:0::1;::::0;;37900:92::o;22068:148::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;22159:6:::1;::::0;22138:40:::1;::::0;22175:1:::1;::::0;-1:-1:-1;;;;;22159:6:0::1;::::0;22138:40:::1;::::0;22175:1;;22138:40:::1;22189:6;:19:::0;;-1:-1:-1;;;;;;22189:19:0::1;::::0;;22068:148::o;30495:396::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;30615:10:::1;:21:::0;;;30647:15:::1;:31:::0;;;30689:15:::1;:34:::0;;;30707:16;30749:28:::1;30665:13:::0;30628:8;30749:28:::1;:::i;:::-;:46;;;;:::i;:::-;30734:12;:61:::0;30835:8:::1;::::0;30846:3:::1;::::0;30830:13:::1;::::0;:2:::1;:13;:::i;:::-;:19;;;;:::i;:::-;30814:12;;:35;;30806:77;;;::::0;-1:-1:-1;;;30806:77:0;;7336:2:1;30806:77:0::1;::::0;::::1;7318:21:1::0;7375:2;7355:18;;;7348:30;7414:31;7394:18;;;7387:59;7463:18;;30806:77:0::1;7134:353:1::0;30806:77:0::1;30495:396:::0;;;:::o;7826:104::-;7882:13;7915:7;7908:14;;;;;:::i;31866:244::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;31973:13:::1;-1:-1:-1::0;;;;;31965:21:0::1;:4;-1:-1:-1::0;;;;;31965:21:0::1;::::0;31957:91:::1;;;::::0;-1:-1:-1;;;31957:91:0;;7694:2:1;31957:91:0::1;::::0;::::1;7676:21:1::0;7733:2;7713:18;;;7706:30;7772:34;7752:18;;;7745:62;7843:27;7823:18;;;7816:55;7888:19;;31957:91:0::1;7492:421:1::0;31957:91:0::1;32061:41;32090:4;32096:5;32061:28;:41::i;11910:269::-:0;12003:4;12020:129;323:10;12043:7;12052:96;12091:15;12052:96;;;;;;;;;;;;;;;;;323:10;12052:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12052:34:0;;;;;;;;;;;;:38;:96::i;9238:175::-;9324:4;9341:42;323:10;9365:9;9376:6;9341:9;:42::i;29994:152::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30088:43:0;;;::::1;;::::0;;;:35:::1;:43;::::0;;;;:50;;-1:-1:-1;;30088:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29994:152::o;31439:182::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31524:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;31524:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31579:34;;1869:41:1;;;31579:34:0::1;::::0;1842:18:1;31579:34:0::1;;;;;;;31439:182:::0;;:::o;30899:407::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;31021:11:::1;:22:::0;;;31054:16:::1;:32:::0;;;31097:16:::1;:36:::0;;;31116:17;31160:30:::1;31073:13:::0;31035:8;31160:30:::1;:::i;:::-;:49;;;;:::i;:::-;31144:13;:65:::0;31250:8:::1;::::0;31261:3:::1;::::0;31245:13:::1;::::0;:2:::1;:13;:::i;:::-;:19;;;;:::i;:::-;31228:13;;:36;;31220:78;;;::::0;-1:-1:-1;;;31220:78:0;;8120:2:1;31220:78:0::1;::::0;::::1;8102:21:1::0;8159:2;8139:18;;;8132:30;8198:31;8178:18;;;8171:59;8247:18;;31220:78:0::1;7918:353:1::0;30225:95:0;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;30295:8:::1;:17:::0;30225:95::o;22371:244::-;21638:6;;-1:-1:-1;;;;;21638:6:0;323:10;21638:22;21630:67;;;;-1:-1:-1;;;21630:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22460:22:0;::::1;22452:73;;;::::0;-1:-1:-1;;;22452:73:0;;8478:2:1;22452:73:0::1;::::0;::::1;8460:21:1::0;8517:2;8497:18;;;8490:30;8556:34;8536:18;;;8529:62;-1:-1:-1;;;8607:18:1;;;8600:36;8653:19;;22452:73:0::1;8276:402:1::0;22452:73:0::1;22562:6;::::0;22541:38:::1;::::0;-1:-1:-1;;;;;22541:38:0;;::::1;::::0;22562:6:::1;::::0;22541:38:::1;::::0;22562:6:::1;::::0;22541:38:::1;22590:6;:17:::0;;-1:-1:-1;;;;;;22590:17:0::1;-1:-1:-1::0;;;;;22590:17:0;;;::::1;::::0;;;::::1;::::0;;22371:244::o;30328:159::-;30436:16;;30428:51;;30396:21;;-1:-1:-1;;;;;30436:16:0;;30428:51;;;;;30396:21;;30370:23;30428:51;30370:23;30428:51;30396:21;30436:16;30428:51;;;;;;;;;;;;;;;;;;;16474:181;16532:7;;16564:5;16568:1;16564;:5;:::i;:::-;16552:17;;16593:1;16588;:6;;16580:46;;;;-1:-1:-1;;;16580:46:0;;8885:2:1;16580:46:0;;;8867:21:1;8924:2;8904:18;;;8897:30;8963:29;8943:18;;;8936:57;9010:18;;16580:46:0;8683:351:1;16580:46:0;16646:1;16474:181;-1:-1:-1;;;16474:181:0:o;15096:380::-;-1:-1:-1;;;;;15232:19:0;;15224:68;;;;-1:-1:-1;;;15224:68:0;;9241:2:1;15224:68:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:34;9414:19;;15224:68:0;9039:400:1;15224:68:0;-1:-1:-1;;;;;15311:21:0;;15303:68;;;;-1:-1:-1;;;15303:68:0;;9646:2:1;15303:68:0;;;9628:21:1;9685:2;9665:18;;;9658:30;9724:34;9704:18;;;9697:62;-1:-1:-1;;;9775:18:1;;;9768:32;9817:19;;15303:68:0;9444:398:1;15303:68:0;-1:-1:-1;;;;;15384:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15436:32;;1693:25:1;;;15436:32:0;;1666:18:1;15436:32:0;;;;;;;;15096:380;;;:::o;29755:229::-;29855:3;29834:18;;29825:6;;:27;;;;:::i;:::-;:33;;;;:::i;:::-;29798:24;:60;29890:6;;:13;;29899:4;;29890:13;:::i;:::-;29869:18;:34;29961:9;;29952:6;;29973:3;;29952:18;;;:::i;:::-;:24;;;;:::i;:::-;29935:14;:41;29755:229::o;32447:4149::-;-1:-1:-1;;;;;32579:18:0;;32571:68;;;;-1:-1:-1;;;32571:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32658:16:0;;32650:64;;;;-1:-1:-1;;;32650:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32734:10:0;;;;;;:4;:10;;;;;;;;32733:11;:24;;;;-1:-1:-1;;;;;;32749:8:0;;;;;;:4;:8;;;;;;;;32748:9;32733:24;32725:60;;;;-1:-1:-1;;;32725:60:0;;10859:2:1;32725:60:0;;;10841:21:1;10898:2;10878:18;;;10871:30;10937:25;10917:18;;;10910:53;10980:18;;32725:60:0;10657:347:1;32725:60:0;32802:6;32812:1;32802:11;32799:92;;32830:28;32846:4;32852:2;32856:1;32830:15;:28::i;32799:92::-;32906:14;;-1:-1:-1;;;32906:14:0;;;;32903:1464;;;21491:6;;-1:-1:-1;;;;;32958:15:0;;;21491:6;;32958:15;;;;:49;;-1:-1:-1;21491:6:0;;-1:-1:-1;;;;;32994:13:0;;;21491:6;;32994:13;;32958:49;:86;;;;-1:-1:-1;;;;;;33028:16:0;;;;32958:86;:128;;;;-1:-1:-1;;;;;;33065:21:0;;33079:6;33065:21;;32958:128;:158;;;;-1:-1:-1;33108:8:0;;-1:-1:-1;;;33108:8:0;;;;33107:9;32958:158;32936:1420;;;33154:13;;-1:-1:-1;;;33154:13:0;;;;33150:148;;-1:-1:-1;;;;;33199:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33228:23:0;;;;;;:19;:23;;;;;;;;33199:52;33191:87;;;;-1:-1:-1;;;33191:87:0;;11211:2:1;33191:87:0;;;11193:21:1;11250:2;11230:18;;;11223:30;-1:-1:-1;;;11269:18:1;;;11262:52;11331:18;;33191:87:0;11009:346:1;33191:87:0;33442:9;33413:39;;;;:28;:39;;;;;;;;;33455:15;33413:57;;;;33494:61;;1693:25:1;;;33494:61:0;;1666:18:1;33494:61:0;;;;;;;-1:-1:-1;;;;;33608:31:0;;;;;;:25;:31;;;;;;;;:75;;;;-1:-1:-1;;;;;;33644:39:0;;;;;;:35;:39;;;;;;;;33643:40;33608:75;:109;;;;-1:-1:-1;;;;;;33688:29:0;;;;;;:25;:29;;;;;;;;33687:30;33608:109;33604:737;;;33779:14;;-1:-1:-1;;;;;8999:18:0;;8972:7;8999:18;;;;;;;;;;;33753:22;;:6;:22;:::i;:::-;:40;;33745:72;;;;-1:-1:-1;;;33745:72:0;;11562:2:1;33745:72:0;;;11544:21:1;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:49;11679:18;;33745:72:0;11360:343:1;33745:72:0;33604:737;;;-1:-1:-1;;;;;33895:29:0;;;;;;:25;:29;;;;;;;;:75;;;;-1:-1:-1;;;;;;33929:41:0;;;;;;:35;:41;;;;;;;;33928:42;33895:75;:111;;;;-1:-1:-1;;;;;;33975:31:0;;;;;;:25;:31;;;;;;;;33974:32;33895:111;33891:450;;;34052:24;;34042:6;:34;;34034:105;;;;-1:-1:-1;;;34034:105:0;;11910:2:1;34034:105:0;;;11892:21:1;11949:2;11929:18;;;11922:30;11988:34;11968:18;;;11961:62;12059:28;12039:18;;;12032:56;12105:19;;34034:105:0;11708:422:1;33891:450:0;-1:-1:-1;;;;;34186:39:0;;;;;;:35;:39;;;;;;;;34182:159;;34283:14;;-1:-1:-1;;;;;8999:18:0;;8972:7;8999:18;;;;;;;;;;;34257:22;;:6;:22;:::i;:::-;:40;;34249:72;;;;-1:-1:-1;;;34249:72:0;;11562:2:1;34249:72:0;;;11544:21:1;11601:2;11581:18;;;11574:30;-1:-1:-1;;;11620:18:1;;;11613:49;11679:18;;34249:72:0;11360:343:1;34249:72:0;34426:4;34377:28;8999:18;;;;;;;;;;;34484;;34460:42;;;;;;;34532:33;;-1:-1:-1;34557:8:0;;-1:-1:-1;;;34557:8:0;;;;34556:9;34532:33;:61;;;;-1:-1:-1;34582:11:0;;-1:-1:-1;;;34582:11:0;;;;34532:61;:110;;;;-1:-1:-1;;;;;;34611:31:0;;;;;;:25;:31;;;;;;;;34610:32;34532:110;:153;;;;-1:-1:-1;;;;;;34660:25:0;;;;;;:19;:25;;;;;;;;34659:26;34532:153;:194;;;;-1:-1:-1;;;;;;34703:23:0;;;;;;:19;:23;;;;;;;;34702:24;34532:194;34515:325;;;34753:8;:15;;-1:-1:-1;;;;34753:15:0;-1:-1:-1;;;34753:15:0;;;34785:10;:8;:10::i;:::-;34812:8;:16;;-1:-1:-1;;;;34812:16:0;;;34515:325;34868:8;;-1:-1:-1;;;;;34892:25:0;;34852:12;34892:25;;;:19;:25;;;;;;34868:8;-1:-1:-1;;;34868:8:0;;;;;34867:9;;34892:25;;:52;;-1:-1:-1;;;;;;34921:23:0;;;;;;:19;:23;;;;;;;;34892:52;34889:99;;;-1:-1:-1;34971:5:0;34889:99;35000:12;35032:7;35029:1512;;;-1:-1:-1;;;;;35083:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;35132:1;35116:13;;:17;35083:50;35079:896;;;35160:39;35190:8;;35160:25;35171:13;;35160:6;:10;;:25;;;;:::i;:::-;:29;;:39::i;:::-;35153:46;;35256:13;;35242:11;;35235:4;:18;;;;:::i;:::-;:34;;;;:::i;:::-;35218:13;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;35336:13:0;;35317:16;;35310:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;35288:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;35372:18:0;;-1:-1:-1;;;35372:18:0;;;;35368:128;;;35463:13;;35444:16;;35437:23;;:4;:23;:::i;:::-;:39;;;;:::i;:::-;35415:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;35368:128:0;35079:896;;;-1:-1:-1;;;;;35558:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;35608:1;35593:12;;:16;35558:51;35555:420;;;35634:38;35663:8;;35634:24;35645:12;;35634:6;:10;;:24;;;;:::i;:38::-;35627:45;;35725:12;;35712:10;;35705:4;:17;;;;:::i;:::-;:32;;;;:::i;:::-;35688:13;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;35803:12:0;;35785:15;;35778:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;35756:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;35838:18:0;;-1:-1:-1;;;35838:18:0;;;;35834:126;;;35928:12;;35910:15;;35903:22;;:4;:22;:::i;:::-;:37;;;;:::i;:::-;35881:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;35834:126:0;35994:8;;35991:330;;36022:42;36038:4;36052;36059;36022:15;:42::i;:::-;36087:13;;:17;36083:223;;36129:35;36143:4;36150:13;;36129:5;:35::i;:::-;8815:12;;36187:6;:22;36232:14;:12;:14::i;:::-;36285:1;36269:13;:17;36083:223;36339:18;;:22;36335:169;;36382:65;36406:4;36413:13;36428:18;;36382:15;:65::i;:::-;36487:1;36466:18;:22;36335:169;36515:14;36525:4;36515:14;;:::i;:::-;;;35029:1512;36553:33;36569:4;36575:2;36579:6;36553:15;:33::i;:::-;32560:4036;;;;32447:4149;;;:::o;17377:192::-;17463:7;17499:12;17491:6;;;;17483:29;;;;-1:-1:-1;;;17483:29:0;;;;;;;;:::i;:::-;-1:-1:-1;17523:9:0;17535:5;17539:1;17535;:5;:::i;:::-;17523:17;17377:192;-1:-1:-1;;;;;17377:192:0:o;32118:188::-;-1:-1:-1;;;;;32201:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;32201:39:0;;;;;;;;;;32258:40;;32201:39;;:31;32258:40;;;32118:188;;:::o;12669:573::-;-1:-1:-1;;;;;12809:20:0;;12801:70;;;;-1:-1:-1;;;12801:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12890:23:0;;12882:71;;;;-1:-1:-1;;;12882:71:0;;;;;;;:::i;:::-;13046;13068:6;13046:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13046:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;13026:17:0;;;:9;:17;;;;;;;;;;;:91;;;;13151:20;;;;;;;:32;;13176:6;13151:24;:32::i;:::-;-1:-1:-1;;;;;13128:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;13199:35;1693:25:1;;;13128:20:0;;13199:35;;;;;;1666:18:1;13199:35:0;1547:177:1;37203:512:0;37286:4;37242:23;8999:18;;;;;;;;;;;;37331:20;;;37328:34;;37354:7;;37203:512::o;37328:34::-;37395:18;;:22;;37416:1;37395:22;:::i;:::-;37377:15;:40;37374:109;;;37449:18;;:22;;37470:1;37449:22;:::i;:::-;37431:40;;37374:109;37495:33;37512:15;37495:16;:33::i;:::-;37562:1;37541:18;:22;37602:17;37578:21;:41;37574:133;;;37651:16;;37643:64;;-1:-1:-1;;;;;37651:16:0;;;;37681:21;;37643:64;;;;37681:21;37651:16;37643:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37203:512:0:o;17828:471::-;17886:7;18131:1;18136;18131:6;18127:47;;-1:-1:-1;18161:1:0;18154:8;;18127:47;18186:9;18198:5;18202:1;18198;:5;:::i;:::-;18186:17;-1:-1:-1;18231:1:0;18222:5;18226:1;18186:17;18222:5;:::i;:::-;:10;18214:56;;;;-1:-1:-1;;;18214:56:0;;12680:2:1;18214:56:0;;;12662:21:1;12719:2;12699:18;;;12692:30;12758:34;12738:18;;;12731:62;-1:-1:-1;;;12809:18:1;;;12802:31;12850:19;;18214:56:0;12478:397:1;18775:132:0;18833:7;18860:39;18864:1;18867;18860:39;;;;;;;;;;;;;;;;;:3;:39::i;14240:418::-;-1:-1:-1;;;;;14324:21:0;;14316:67;;;;-1:-1:-1;;;14316:67:0;;13082:2:1;14316:67:0;;;13064:21:1;13121:2;13101:18;;;13094:30;13160:34;13140:18;;;13133:62;-1:-1:-1;;;13211:18:1;;;13204:31;13252:19;;14316:67:0;12880:397:1;14316:67:0;14479:68;14502:6;14479:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14479:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;14458:18:0;;:9;:18;;;;;;;;;;:89;14573:12;;:24;;14590:6;14573:16;:24::i;:::-;14558:12;:39;14613:37;;1693:25:1;;;14639:1:0;;-1:-1:-1;;;;;14613:37:0;;;;;1681:2:1;1666:18;14613:37:0;;;;;;;14240:418;;:::o;36604:591::-;36754:16;;;36768:1;36754:16;;;;;;;;36730:21;;36754:16;;;;;;;;;;-1:-1:-1;36754:16:0;36730:40;;36799:4;36781;36786:1;36781:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36781:23:0;;;-1:-1:-1;;;;;36781:23:0;;;;;36825:15;-1:-1:-1;;;;;36825:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36815:4;36820:1;36815:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;36815:32:0;;;-1:-1:-1;;;;;36815:32:0;;;;;36860:62;36877:4;36892:15;36910:11;36860:8;:62::i;:::-;36961:224;;-1:-1:-1;;;36961:224:0;;-1:-1:-1;;;;;36961:15:0;:66;;;;:224;;37042:11;;37068:1;;37112:4;;37139;;37159:15;;36961:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36659:536;36604:591;:::o;19403:278::-;19489:7;19524:12;19517:5;19509:28;;;;-1:-1:-1;;;19509:28:0;;;;;;;;:::i;:::-;-1:-1:-1;19548:9:0;19560:5;19564:1;19560;:5;:::i;16938:136::-;16996:7;17023:43;17027:1;17030;17023:43;;;;;;;;;;;;;;;;;:3;:43::i;14:127:1:-;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:131;-1:-1:-1;;;;;221:31:1;;211:42;;201:70;;267:1;264;257:12;282:134;350:20;;379:31;350:20;379:31;:::i;:::-;282:134;;;:::o;421:1121::-;505:6;536:2;579;567:9;558:7;554:23;550:32;547:52;;;595:1;592;585:12;547:52;635:9;622:23;664:18;705:2;697:6;694:14;691:34;;;721:1;718;711:12;691:34;759:6;748:9;744:22;734:32;;804:7;797:4;793:2;789:13;785:27;775:55;;826:1;823;816:12;775:55;862:2;849:16;884:2;880;877:10;874:36;;;890:18;;:::i;:::-;936:2;933:1;929:10;968:2;962:9;1031:2;1027:7;1022:2;1018;1014:11;1010:25;1002:6;998:38;1086:6;1074:10;1071:22;1066:2;1054:10;1051:18;1048:46;1045:72;;;1097:18;;:::i;:::-;1133:2;1126:22;1183:18;;;1217:15;;;;-1:-1:-1;1259:11:1;;;1255:20;;;1287:19;;;1284:39;;;1319:1;1316;1309:12;1284:39;1343:11;;;;1363:148;1379:6;1374:3;1371:15;1363:148;;;1445:23;1464:3;1445:23;:::i;:::-;1433:36;;1396:12;;;;1489;;;;1363:148;;;1530:6;421:1121;-1:-1:-1;;;;;;;;421:1121:1:o;1921:548::-;2033:4;2062:2;2091;2080:9;2073:21;2123:6;2117:13;2166:6;2161:2;2150:9;2146:18;2139:34;2191:1;2201:140;2215:6;2212:1;2209:13;2201:140;;;2310:14;;;2306:23;;2300:30;2276:17;;;2295:2;2272:26;2265:66;2230:10;;2201:140;;;2205:3;2390:1;2385:2;2376:6;2365:9;2361:22;2357:31;2350:42;2460:2;2453;2449:7;2444:2;2436:6;2432:15;2428:29;2417:9;2413:45;2409:54;2401:62;;;;1921:548;;;;:::o;2474:247::-;2533:6;2586:2;2574:9;2565:7;2561:23;2557:32;2554:52;;;2602:1;2599;2592:12;2554:52;2641:9;2628:23;2660:31;2685:5;2660:31;:::i;2726:315::-;2794:6;2802;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2910:9;2897:23;2929:31;2954:5;2929:31;:::i;:::-;2979:5;3031:2;3016:18;;;;3003:32;;-1:-1:-1;;;2726:315:1:o;3281:180::-;3340:6;3393:2;3381:9;3372:7;3368:23;3364:32;3361:52;;;3409:1;3406;3399:12;3361:52;-1:-1:-1;3432:23:1;;3281:180;-1:-1:-1;3281:180:1:o;3466:456::-;3543:6;3551;3559;3612:2;3600:9;3591:7;3587:23;3583:32;3580:52;;;3628:1;3625;3618:12;3580:52;3667:9;3654:23;3686:31;3711:5;3686:31;:::i;:::-;3736:5;-1:-1:-1;3793:2:1;3778:18;;3765:32;3806:33;3765:32;3806:33;:::i;:::-;3466:456;;3858:7;;-1:-1:-1;;;3912:2:1;3897:18;;;;3884:32;;3466:456::o;4324:316::-;4401:6;4409;4417;4470:2;4458:9;4449:7;4445:23;4441:32;4438:52;;;4486:1;4483;4476:12;4438:52;-1:-1:-1;;4509:23:1;;;4579:2;4564:18;;4551:32;;-1:-1:-1;4630:2:1;4615:18;;;4602:32;;4324:316;-1:-1:-1;4324:316:1:o;4645:416::-;4710:6;4718;4771:2;4759:9;4750:7;4746:23;4742:32;4739:52;;;4787:1;4784;4777:12;4739:52;4826:9;4813:23;4845:31;4870:5;4845:31;:::i;:::-;4895:5;-1:-1:-1;4952:2:1;4937:18;;4924:32;4994:15;;4987:23;4975:36;;4965:64;;5025:1;5022;5015:12;4965:64;5048:7;5038:17;;;4645:416;;;;;:::o;5066:388::-;5134:6;5142;5195:2;5183:9;5174:7;5170:23;5166:32;5163:52;;;5211:1;5208;5201:12;5163:52;5250:9;5237:23;5269:31;5294:5;5269:31;:::i;:::-;5319:5;-1:-1:-1;5376:2:1;5361:18;;5348:32;5389:33;5348:32;5389:33;:::i;5459:356::-;5661:2;5643:21;;;5680:18;;;5673:30;5739:34;5734:2;5719:18;;5712:62;5806:2;5791:18;;5459:356::o;5820:127::-;5881:10;5876:3;5872:20;5869:1;5862:31;5912:4;5909:1;5902:15;5936:4;5933:1;5926:15;5952:127;6013:10;6008:3;6004:20;6001:1;5994:31;6044:4;6041:1;6034:15;6068:4;6065:1;6058:15;6084:135;6123:3;6144:17;;;6141:43;;6164:18;;:::i;:::-;-1:-1:-1;6211:1:1;6200:13;;6084:135::o;6224:380::-;6303:1;6299:12;;;;6346;;;6367:61;;6421:4;6413:6;6409:17;6399:27;;6367:61;6474:2;6466:6;6463:14;6443:18;6440:38;6437:161;;6520:10;6515:3;6511:20;6508:1;6501:31;6555:4;6552:1;6545:15;6583:4;6580:1;6573:15;6437:161;;6224:380;;;:::o;6609:125::-;6674:9;;;6695:10;;;6692:36;;;6708:18;;:::i;6739:168::-;6779:7;6845:1;6841;6837:6;6833:14;6830:1;6827:21;6822:1;6815:9;6808:17;6804:45;6801:71;;;6852:18;;:::i;:::-;-1:-1:-1;6892:9:1;;6739:168::o;6912:217::-;6952:1;6978;6968:132;;7022:10;7017:3;7013:20;7010:1;7003:31;7057:4;7054:1;7047:15;7085:4;7082:1;7075:15;6968:132;-1:-1:-1;7114:9:1;;6912:217::o;9847:401::-;10049:2;10031:21;;;10088:2;10068:18;;;10061:30;10127:34;10122:2;10107:18;;10100:62;-1:-1:-1;;;10193:2:1;10178:18;;10171:35;10238:3;10223:19;;9847:401::o;10253:399::-;10455:2;10437:21;;;10494:2;10474:18;;;10467:30;10533:34;10528:2;10513:18;;10506:62;-1:-1:-1;;;10599:2:1;10584:18;;10577:33;10642:3;10627:19;;10253:399::o;12135:128::-;12202:9;;;12223:11;;;12220:37;;;12237:18;;:::i;13282:251::-;13352:6;13405:2;13393:9;13384:7;13380:23;13376:32;13373:52;;;13421:1;13418;13411:12;13373:52;13453:9;13447:16;13472:31;13497:5;13472:31;:::i;13538:980::-;13800:4;13848:3;13837:9;13833:19;13879:6;13868:9;13861:25;13905:2;13943:6;13938:2;13927:9;13923:18;13916:34;13986:3;13981:2;13970:9;13966:18;13959:31;14010:6;14045;14039:13;14076:6;14068;14061:22;14114:3;14103:9;14099:19;14092:26;;14153:2;14145:6;14141:15;14127:29;;14174:1;14184:195;14198:6;14195:1;14192:13;14184:195;;;14263:13;;-1:-1:-1;;;;;14259:39:1;14247:52;;14354:15;;;;14319:12;;;;14295:1;14213:9;14184:195;;;-1:-1:-1;;;;;;;14435:32:1;;;;14430:2;14415:18;;14408:60;-1:-1:-1;;;14499:3:1;14484:19;14477:35;14396:3;13538:980;-1:-1:-1;;;13538:980:1:o

Swarm Source

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