ETH Price: $2,499.75 (+1.26%)

Token

ETERNALAPES ($EAPES)
 

Overview

Max Total Supply

100,000,000 $EAPES

Holders

122

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
10,038.071491184 $EAPES

Value
$0.00
0x5666ba60d132edf7341166edb2e733d79b4bcde2
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:
ETERNALAPES

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-12
*/

/*
Telegram: T.me/EternalApesPortal
Website: www.eternal-apes.com
Brought to you by @EthereumCalls launching thursday 20H UTC.
*/

// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.10;

interface IERC20 {
    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.
     *
     * 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
    );
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

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) {

        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.
     *
     * 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;
    }
}

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

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            codehash := extcodehash(account)
        }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(
        address target,
        bytes memory data,
        uint256 weiValue,
        string memory errorMessage
    ) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{value: weiValue}(
            data
        );
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;
    address private _previousOwner;


    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;
    }

}

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 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 (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

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

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ETERNALAPES is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcludedFromFee;

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

    mapping(address => bool) private _isExcludedFromLimit;

    uint256 private constant MAX = ~uint256(0);
    uint256 private _tTotal = 100000000 * 10**9;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    address payable public _marketingAddress = payable(address(0x041fcE15B28d36C528856a311b105ff53Fd925aB));

    string private _name = "ETERNALAPES";
    string private _symbol = "$EAPES";
    uint8 private _decimals = 9;

    struct BuyFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    struct SellFee {
        uint8 reflection;
        uint8 liquidity;
        uint8 marketing;
    }

    BuyFee public buyFee;
    SellFee public sellFee;

    uint8 private _reflectionFee;
    uint8 private _liquidityFee;
    uint8 private _marketingFee;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = _tTotal.div(1000).mul(15); //1.5%
    uint256 private numTokensSellToAddToLiquidity = _tTotal.div(1000).mul(3); //0.3%
    uint256 public _maxWalletSize = _tTotal.div(1000).mul(15); // 1.5%

    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    uint256 public deadBlocks = 2;
    uint256 public launchedAt = 0;
    bool tradingOpen = false;

    mapping (address => uint256) public _lastTrade;

    constructor() {
        _rOwned[_msgSender()] = _rTotal;

        buyFee.reflection = 1;
        buyFee.liquidity = 1;
        buyFee.marketing = 1;

        sellFee.reflection = 2;
        sellFee.liquidity = 2;
        sellFee.marketing = 2;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D  );
        // Create a uniswap pair for this new token
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        // exclude owner, and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingAddress] = true;

        _isExcludedFromLimit[_marketingAddress] = true;
        _isExcludedFromLimit[owner()] = true;
        _isExcludedFromLimit[address(this)] = true;

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

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

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

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

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

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

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

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

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

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

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    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;
    }


    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function deliver(uint256 tAmount) public {
        address sender = _msgSender();
        require(
            !_isExcluded[sender],
            "Excluded addresses cannot call this function"
        );

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, , ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee)
        public
        view
        returns (uint256)
    {
        require(tAmount <= _tTotal, "Amount must be less than supply");

        (
            ,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, ) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        if (!deductTransferFee) {
            return rAmount;
        } else {
            return rTransferAmount;
        }
    }

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


    function updateMarketingWallet(address payable newAddress) external onlyOwner {
        _marketingAddress = newAddress;
    }

    function excludeFromReward(address account) public onlyOwner {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeInReward(address account) external onlyOwner {
        require(_isExcluded[account], "Account is not excluded");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function excludeFromLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = true;
    }

    function includeInLimit(address account) public onlyOwner {
        _isExcludedFromLimit[account] = false;
    }

    function setSellFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        sellFee.reflection = reflection;
        sellFee.marketing = marketing;
        sellFee.liquidity = liquidity;
    }

    function setBuyFee(
        uint8 reflection,
        uint8 liquidity,
        uint8 marketing
    ) external onlyOwner {
        buyFee.reflection = reflection;
        buyFee.marketing = marketing;
        buyFee.liquidity = liquidity;
    }

    function setBothFees(
        uint8 buy_reflection,
        uint8 buy_liquidity,
        uint8 buy_marketing,
        uint8 sell_reflection,
        uint8 sell_liquidity,
        uint8 sell_marketing

    ) external onlyOwner {
        buyFee.reflection = buy_reflection;
        buyFee.marketing = buy_marketing;
        buyFee.liquidity = buy_liquidity;

        sellFee.reflection = sell_reflection;
        sellFee.marketing = sell_marketing;
        sellFee.liquidity = sell_liquidity;
    }

    function setNumTokensSellToAddToLiquidity(uint256 numTokens) external onlyOwner {
        numTokensSellToAddToLiquidity = numTokens;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner {
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**3);
    }

    function _setMaxWalletSizePercent(uint256 maxWalletSize)
        external
        onlyOwner
    {
        _maxWalletSize = _tTotal.mul(maxWalletSize).div(10**3);
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    //to recieve ETH from uniswapV2Router when swapping
    receive() external payable {}

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

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateReflectionFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tWallet = calculateMarketingFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        tTransferAmount = tTransferAmount.sub(tWallet);

        return (tTransferAmount, tFee, tLiquidity, tWallet);
    }

    function _getRValues(
        uint256 tAmount,
        uint256 tFee,
        uint256 tLiquidity,
        uint256 tWallet,
        uint256 currentRate
    )
        private
        pure
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        uint256 rWallet = tWallet.mul(currentRate);
        uint256 rTransferAmount = rAmount
            .sub(rFee)
            .sub(rLiquidity)
            .sub(rWallet);
        return (rAmount, rTransferAmount, rFee);
    }

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

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (
                _rOwned[_excluded[i]] > rSupply ||
                _tOwned[_excluded[i]] > tSupply
            ) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _takeLiquidity(uint256 tLiquidity) private {
        uint256 currentRate = _getRate();
        uint256 rLiquidity = tLiquidity.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity);
    }

    function _takeWalletFee(uint256 tWallet) private {
        uint256 currentRate = _getRate();
        uint256 rWallet = tWallet.mul(currentRate);
        _rOwned[address(this)] = _rOwned[address(this)].add(rWallet);
        if (_isExcluded[address(this)])
            _tOwned[address(this)] = _tOwned[address(this)].add(tWallet);
    }

    function calculateReflectionFee(uint256 _amount) private view returns (uint256) {
        return _amount.mul(_reflectionFee).div(10**2);
    }

    function calculateLiquidityFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_liquidityFee).div(10**2);
    }

    function calculateMarketingFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        return _amount.mul(_marketingFee).div(10**2);
    }

   
    function removeAllFee() private {
        _reflectionFee = 0;
        _liquidityFee = 0;
        _marketingFee = 0;
     
    }

    function setBuy() private {
        _reflectionFee = buyFee.reflection;
        _liquidityFee = buyFee.liquidity;
        _marketingFee = buyFee.marketing;
      
    }

    function setSell() private {
        _reflectionFee = sellFee.reflection;
        _liquidityFee = sellFee.liquidity;
        _marketingFee = sellFee.marketing;
      
    }


    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
        if ( from != owner() && to != owner() ) require(tradingOpen, "Trading not yet enabled."); //transfers disabled before openTrading

        // is the token balance of this contract address over the min number of
        // tokens that we need to initiate a swap + liquidity lock?
        // also, don't get caught in a circular liquidity event.
        // also, don't swap & liquify if sender is uniswap pair.
        uint256 contractTokenBalance = balanceOf(address(this));

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

        bool overMinTokenBalance = contractTokenBalance >=
            numTokensSellToAddToLiquidity;
        if (
            overMinTokenBalance &&
            !inSwapAndLiquify &&
            from != uniswapV2Pair &&
            swapAndLiquifyEnabled
        ) {
            contractTokenBalance = numTokensSellToAddToLiquidity;
            //add liquidity
            swapAndLiquify(contractTokenBalance);
        }

        //indicates if fee should be deducted from transfer
        bool takeFee = true;

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (takeFee) {
            if (!_isExcludedFromLimit[from] && !_isExcludedFromLimit[to]) {
                require(
                    amount <= _maxTxAmount,
                    "Transfer amount exceeds the maxTxAmount."
                );
                if (to != uniswapV2Pair) {
                    require(
                        amount + balanceOf(to) <= _maxWalletSize,
                        "Recipient exceeds max wallet size."
                    );
                }

              
            }
        }

        //transfer amount, it will take reflection, liquidity fee
        _tokenTransfer(from, to, amount, takeFee);
    }

    function swapAndLiquify(uint256 tokens) private lockTheSwap {
        // Split the contract balance into halves
        uint256 denominator = (buyFee.liquidity + sellFee.liquidity + buyFee.marketing + sellFee.marketing) * 2;
        uint256 tokensToAddLiquidityWith = (tokens * (buyFee.liquidity + sellFee.liquidity)) / denominator;
        uint256 toSwap = tokens - tokensToAddLiquidityWith;

        uint256 initialBalance = address(this).balance;

        swapTokensForEth(toSwap);

        uint256 deltaBalance = address(this).balance - initialBalance;
        uint256 unitBalance = deltaBalance / (denominator - (buyFee.liquidity + sellFee.liquidity));
        uint256 ethToAddLiquidityWith = unitBalance * (buyFee.liquidity + sellFee.liquidity);

        if (ethToAddLiquidityWith > 0) {
            // Add liquidity to uniswap
            addLiquidity(tokensToAddLiquidityWith, ethToAddLiquidityWith);
        }

        // Send ETH to marketing
        uint256 marketingAmt = unitBalance * 2 * (buyFee.marketing + sellFee.marketing);
       

        if (marketingAmt > 0) {
            payable(_marketingAddress).transfer(marketingAmt);
        }

    
    }

    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 addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee
    ) private {
        if (takeFee) {
            removeAllFee();
            if (sender == uniswapV2Pair) {
                setBuy();
            }
            if (recipient == uniswapV2Pair) {
                setSell();
            }
        }

        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
        removeAllFee();
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }


    function _transferToExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity,
            uint256 tWallet
        ) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(
            tAmount,
            tFee,
            tLiquidity,
            tWallet,
            _getRate()
        );

        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _takeWalletFee(tWallet);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function openTrading(bool _status,uint256 _deadBlocks) external onlyOwner() {
        tradingOpen = _status;
        excludeFromReward(address(this));
        excludeFromReward(uniswapV2Pair);
        if(tradingOpen && launchedAt == 0){
            launchedAt = block.number;
            deadBlocks = _deadBlocks;
        }
    }
}

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":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","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":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":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_lastTrade","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"_setMaxWalletSizePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","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":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"},{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"buy_reflection","type":"uint8"},{"internalType":"uint8","name":"buy_liquidity","type":"uint8"},{"internalType":"uint8","name":"buy_marketing","type":"uint8"},{"internalType":"uint8","name":"sell_reflection","type":"uint8"},{"internalType":"uint8","name":"sell_liquidity","type":"uint8"},{"internalType":"uint8","name":"sell_marketing","type":"uint8"}],"name":"setBothFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"setNumTokensSellToAddToLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"reflection","type":"uint8"},{"internalType":"uint8","name":"liquidity","type":"uint8"},{"internalType":"uint8","name":"marketing","type":"uint8"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","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":"address payable","name":"newAddress","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c060405267016345785d8a000060098190556200002090600019620005dd565b6200002e906000196200060a565b600a55600c80546001600160a01b03191673041fce15b28d36c528856a311b105ff53fd925ab17905560408051808201909152600b81526a455445524e414c4150455360a81b6020820152600d90620000889082620006c9565b5060408051808201909152600681526524454150455360d01b6020820152600e90620000b59082620006c9565b50600f805460ff1916600990811782556012805460ff60201b191664010000000017905554620001119190620000fd906103e8620015bf620004aa602090811b91909117901c565b620004fd60201b620016011790919060201c565b601355620001386003620000fd6103e8600954620004aa60201b620015bf1790919060201c565b6014556200015f600f620000fd6103e8600954620004aa60201b620015bf1790919060201c565b601555600260165560006017556018805460ff191690553480156200018357600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a5433600090815260026020908152604091829020929092556010805462ffffff1990811662010101179091556011805490911662020202179055805163c45a015560e01b81529051737a250d5630b4cf539739df2c5dacb4c659f2488d92839263c45a015592600480830193928290030181865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000274919062000795565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e8919062000795565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000336573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200035c919062000795565b6001600160a01b0390811660a0528116608052600160056000620003886000546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff1996871617905530815260058452828120805486166001908117909155600c8054841683528483208054881683179055549092168152600893849052918220805490941681179093556200040b6000546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008909252902080549091166001179055620004533390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040516200049b91815260200190565b60405180910390a35062000851565b6000620004f483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200058b60201b60201c565b90505b92915050565b6000826000036200051157506000620004f7565b60006200051f8385620007c0565b9050826200052e8583620007e2565b14620004f45760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b60008183620005af5760405162461bcd60e51b8152600401620005829190620007f9565b506000620005be8486620007e2565b95945050505050565b634e487b7160e01b600052601260045260246000fd5b600082620005ef57620005ef620005c7565b500690565b634e487b7160e01b600052601160045260246000fd5b6000828210156200061f576200061f620005f4565b500390565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200064f57607f821691505b6020821081036200067057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006c457600081815260208120601f850160051c810160208610156200069f5750805b601f850160051c820191505b81811015620006c057828155600101620006ab565b5050505b505050565b81516001600160401b03811115620006e557620006e562000624565b620006fd81620006f684546200063a565b8462000676565b602080601f8311600181146200073557600084156200071c5750858301515b600019600386901b1c1916600185901b178555620006c0565b600085815260208120601f198616915b82811015620007665788860151825594840194600190910190840162000745565b5085821015620007855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007a857600080fd5b81516001600160a01b0381168114620004f457600080fd5b6000816000190483118215151615620007dd57620007dd620005f4565b500290565b600082620007f457620007f4620005c7565b500490565b600060208083528351808285015260005b8181101562000828578581018301518582016040015282016200080a565b818111156200083b576000604083870101525b50601f01601f1916929092016040019392505050565b60805160a051612f33620008bd6000396000818161054601528181610a8c0152818161199401528181611aef01528181611f9301526120090152600081816103450152818161241d015281816124d6015281816125120152818161258401526125e00152612f336000f3fe60806040526004361061026b5760003560e01c8063715018a611610144578063af2ce614116100b6578063d543dbeb1161007a578063d543dbeb146107a1578063dd62ed3e146107c1578063ea2f0b3714610807578063f0f165af14610827578063f2fde38b14610847578063fabb0b4f1461086757600080fd5b8063af2ce6141461070b578063b27bcfba1461072b578063bf56b3711461074b578063c49b9a8014610761578063caac79341461078157600080fd5b8063954c6d3f11610108578063954c6d3f1461064957806395d89b4114610669578063a457c2d71461067e578063a87859f61461069e578063a9059cbb146106cb578063aacebbe3146106eb57600080fd5b8063715018a6146105ca5780637d1db4a5146105df5780638da5cb5b146105f55780638f9a55c01461061357806391d919a91461062957600080fd5b8063313ce567116101dd5780634549b039116101a15780634549b039146104e7578063470624021461050757806349bd5a5e146105345780634a74bb021461056857806352390c021461058a57806370a08231146105aa57600080fd5b8063313ce567146104455780633685d4191461046757806339509351146104875780633bd5d173146104a7578063437823ec146104c757600080fd5b80631694505e1161022f5780631694505e1461033357806318160ddd1461037f57806323b872dd146103945780632b14ca56146103b45780632d4103d6146104055780632d8381191461042557600080fd5b806306fdde0314610277578063095ea7b3146102a25780630bd3a7f9146102d25780630c2536d7146102f457806313114a9d1461031457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c61087d565b60405161029991906129e3565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004612a50565b61090f565b6040519015158152602001610299565b3480156102de57600080fd5b506102f26102ed366004612a7c565b610926565b005b34801561030057600080fd5b506102f261030f366004612aaf565b61097d565b34801561032057600080fd5b50600b545b604051908152602001610299565b34801561033f57600080fd5b506103677f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561038b57600080fd5b50600954610325565b3480156103a057600080fd5b506102c26103af366004612af2565b6109dd565b3480156103c057600080fd5b506011546103e19060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610299565b34801561041157600080fd5b506102f2610420366004612b43565b610a46565b34801561043157600080fd5b50610325610440366004612b5f565b610ad5565b34801561045157600080fd5b50600f5460405160ff9091168152602001610299565b34801561047357600080fd5b506102f2610482366004612a7c565b610b59565b34801561049357600080fd5b506102c26104a2366004612a50565b610d0b565b3480156104b357600080fd5b506102f26104c2366004612b5f565b610d41565b3480156104d357600080fd5b506102f26104e2366004612a7c565b610e4a565b3480156104f357600080fd5b50610325610502366004612b78565b610e98565b34801561051357600080fd5b506010546103e19060ff808216916101008104821691620100009091041683565b34801561054057600080fd5b506103677f000000000000000000000000000000000000000000000000000000000000000081565b34801561057457600080fd5b506012546102c290640100000000900460ff1681565b34801561059657600080fd5b506102f26105a5366004612a7c565b610f35565b3480156105b657600080fd5b506103256105c5366004612a7c565b611088565b3480156105d657600080fd5b506102f26110e7565b3480156105eb57600080fd5b5061032560135481565b34801561060157600080fd5b506000546001600160a01b0316610367565b34801561061f57600080fd5b5061032560155481565b34801561063557600080fd5b506102f2610644366004612a7c565b61115b565b34801561065557600080fd5b506102f2610664366004612aaf565b6111a6565b34801561067557600080fd5b5061028c611206565b34801561068a57600080fd5b506102c2610699366004612a50565b611215565b3480156106aa57600080fd5b506103256106b9366004612a7c565b60196020526000908152604090205481565b3480156106d757600080fd5b506102c26106e6366004612a50565b611264565b3480156106f757600080fd5b506102f2610706366004612a7c565b611271565b34801561071757600080fd5b506102f2610726366004612b5f565b6112bd565b34801561073757600080fd5b506102f2610746366004612ba4565b61130e565b34801561075757600080fd5b5061032560175481565b34801561076d57600080fd5b506102f261077c366004612c18565b61138c565b34801561078d57600080fd5b50600c54610367906001600160a01b031681565b3480156107ad57600080fd5b506102f26107bc366004612b5f565b611410565b3480156107cd57600080fd5b506103256107dc366004612c33565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561081357600080fd5b506102f2610822366004612a7c565b61145b565b34801561083357600080fd5b506102f2610842366004612b5f565b6114a6565b34801561085357600080fd5b506102f2610862366004612a7c565b6114d5565b34801561087357600080fd5b5061032560165481565b6060600d805461088c90612c6c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612c6c565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091c338484611683565b5060015b92915050565b6000546001600160a01b031633146109595760405162461bcd60e51b815260040161095090612ca6565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146109a75760405162461bcd60e51b815260040161095090612ca6565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b60006109ea8484846117a7565b610a3c8433610a3785604051806060016040528060288152602001612eb1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611ba9565b611683565b5060019392505050565b6000546001600160a01b03163314610a705760405162461bcd60e51b815260040161095090612ca6565b6018805460ff1916831515179055610a8730610f35565b610ab07f0000000000000000000000000000000000000000000000000000000000000000610f35565b60185460ff168015610ac25750601754155b15610ad1574360175560168190555b5050565b6000600a54821115610b3c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610950565b6000610b46611be3565b9050610b5283826115bf565b9392505050565b6000546001600160a01b03163314610b835760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03811660009081526006602052604090205460ff16610beb5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610950565b60005b600754811015610ad157816001600160a01b031660078281548110610c1557610c15612cdb565b6000918252602090912001546001600160a01b031603610cf95760078054610c3f90600190612d07565b81548110610c4f57610c4f612cdb565b600091825260209091200154600780546001600160a01b039092169183908110610c7b57610c7b612cdb565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610cd357610cd3612d1e565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610d0381612d34565b915050610bee565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161091c918590610a379086611c06565b3360008181526006602052604090205460ff1615610db65760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610950565b6000806000610dc485611c65565b935093509350506000610de186858585610ddc611be3565b611cc4565b50506001600160a01b038616600090815260026020526040902054909150610e099082611d26565b6001600160a01b038616600090815260026020526040902055600a54610e2f9082611d26565b600a55600b54610e3f9087611c06565b600b55505050505050565b6000546001600160a01b03163314610e745760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610eec5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610950565b6000806000610efa86611c65565b93509350935050600080610f1388868686610ddc611be3565b509150915086610f295750935061092092505050565b94506109209350505050565b6000546001600160a01b03163314610f5f5760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03811660009081526006602052604090205460ff1615610fc85760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610950565b6001600160a01b03811660009081526002602052604090205415611022576001600160a01b03811660009081526002602052604090205461100890610ad5565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156110c557506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461092090610ad5565b6000546001600160a01b031633146111115760405162461bcd60e51b815260040161095090612ca6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146111855760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b031633146111d05760405162461bcd60e51b815260040161095090612ca6565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461088c90612c6c565b600061091c3384610a3785604051806060016040528060258152602001612ed9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611ba9565b600061091c3384846117a7565b6000546001600160a01b0316331461129b5760405162461bcd60e51b815260040161095090612ca6565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112e75760405162461bcd60e51b815260040161095090612ca6565b6113086103e86113028360095461160190919063ffffffff16565b906115bf565b60155550565b6000546001600160a01b031633146113385760405162461bcd60e51b815260040161095090612ca6565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146113b65760405162461bcd60e51b815260040161095090612ca6565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061140590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461143a5760405162461bcd60e51b815260040161095090612ca6565b6114556103e86113028360095461160190919063ffffffff16565b60135550565b6000546001600160a01b031633146114855760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146114d05760405162461bcd60e51b815260040161095090612ca6565b601455565b6000546001600160a01b031633146114ff5760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b0381166115645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d68565b60008260000361161357506000610920565b600061161f8385612d4d565b90508261162c8583612d6c565b14610b525760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610950565b6001600160a01b0383166116e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6001600160a01b0382166117465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610950565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610950565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610950565b600081116118cf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610950565b6000546001600160a01b038481169116148015906118fb57506000546001600160a01b03838116911614155b156119525760185460ff166119525760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610950565b600061195d30611088565b9050601354811061196d57506013545b6014548110801590819061198b57506012546301000000900460ff16155b80156119c957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156119df5750601254640100000000900460ff165b156119f25760145491506119f282611d96565b6001600160a01b03851660009081526005602052604090205460019060ff1680611a3457506001600160a01b03851660009081526005602052604090205460ff165b15611a3d575060005b8015611b95576001600160a01b03861660009081526008602052604090205460ff16158015611a8557506001600160a01b03851660009081526008602052604090205460ff16155b15611b9557601354841115611aed5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610950565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614611b9557601554611b3286611088565b611b3c9086612d8e565b1115611b955760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610950565b611ba186868684611f7a565b505050505050565b60008184841115611bcd5760405162461bcd60e51b815260040161095091906129e3565b506000611bda8486612d07565b95945050505050565b6000806000611bf06121e8565b9092509050611bff82826115bf565b9250505090565b600080611c138385612d8e565b905083811015610b525760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610950565b6000806000806000611c768661236a565b90506000611c8387612385565b90506000611c90886123a5565b90506000611ca883611ca28b87611d26565b90611d26565b9050611cb48183611d26565b9993985091965094509092505050565b6000808080611cd38986611601565b90506000611ce18987611601565b90506000611cef8988611601565b90506000611cfd8989611601565b90506000611d1182611ca285818989611d26565b949d949c50929a509298505050505050505050565b6000610b5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ba9565b60008183611d895760405162461bcd60e51b815260040161095091906129e3565b506000611bda8486612d6c565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ddc926101009182900483169291900416612da6565b611de69190612da6565b611df09190612da6565b611dfb906002612dcb565b60115460105460ff92831693506000928492611e24926101009182900483169291900416612da6565b611e319060ff1685612d4d565b611e3b9190612d6c565b90506000611e498285612d07565b905047611e55826123c6565b6000611e618247612d07565b601154601054919250600091611e879160ff610100918290048116929190910416612da6565b611e949060ff1687612d07565b611e9e9083612d6c565b601154601054919250600091611ec49160ff610100918290048116929190910416612da6565b611ed19060ff1683612d4d565b90508015611ee357611ee3868261257e565b601154601054600091611f069160ff620100009283900481169290910416612da6565b60ff16611f14846002612d4d565b611f1e9190612d4d565b90508015611f6257600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f60573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561207d57611f916012805462ffffff19169055565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603612007576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03160361207d576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156120be57506001600160a01b03831660009081526006602052604090205460ff16155b156120d3576120ce84848461265e565b6121d1565b6001600160a01b03841660009081526006602052604090205460ff1615801561211457506001600160a01b03831660009081526006602052604090205460ff165b15612124576120ce8484846127a0565b6001600160a01b03841660009081526006602052604090205460ff1615801561216657506001600160a01b03831660009081526006602052604090205460ff16155b15612176576120ce84848461285b565b6001600160a01b03841660009081526006602052604090205460ff1680156121b657506001600160a01b03831660009081526006602052604090205460ff165b156121c6576120ce8484846128b1565b6121d184848461285b565b6121e26012805462ffffff19169055565b50505050565b600a546009546000918291825b60075481101561233a5782600260006007848154811061221757612217612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612282575081600360006007848154811061225b5761225b612cdb565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561229857600a54600954945094505050509091565b6122de60026000600784815481106122b2576122b2612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d26565b925061232660036000600784815481106122fa576122fa612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d26565b91508061233281612d34565b9150506121f5565b50600954600a5461234a916115bf565b82101561236157600a546009549350935050509091565b90939092509050565b6012546000906109209060649061130290859060ff16611601565b60125460009061092090606490611302908590610100900460ff16611601565b6012546000906109209060649061130290859062010000900460ff16611601565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123fb576123fb612cdb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249d9190612df4565b816001815181106124b0576124b0612cdb565b60200260200101906001600160a01b031690816001600160a01b0316815250506124fb307f000000000000000000000000000000000000000000000000000000000000000084611683565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612550908590600090869030904290600401612e11565b600060405180830381600087803b15801561256a57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b6125a9307f000000000000000000000000000000000000000000000000000000000000000084611683565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612632573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126579190612e82565b5050505050565b60008060008061266d85611c65565b9350935093509350600080600061268988878787610ddc611be3565b6001600160a01b038d1660009081526003602052604090205492955090935091506126b49089611d26565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546126e39084611d26565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127129083611c06565b6001600160a01b038a1660009081526002602052604090205561273485612936565b61273d84612936565b61274781876129bf565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161278c91815260200190565b60405180910390a350505050505050505050565b6000806000806127af85611c65565b935093509350935060008060006127cb88878787610ddc611be3565b6001600160a01b038d1660009081526002602052604090205492955090935091506127f69084611d26565b6001600160a01b03808c16600090815260026020908152604080832094909455918c1681526003909152205461282c9088611c06565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127129083611c06565b60008060008061286a85611c65565b9350935093509350600080600061288688878787610ddc611be3565b6001600160a01b038d1660009081526002602052604090205492955090935091506126e39084611d26565b6000806000806128c085611c65565b935093509350935060008060006128dc88878787610ddc611be3565b6001600160a01b038d1660009081526003602052604090205492955090935091506129079089611d26565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127f69084611d26565b6000612940611be3565b9050600061294e8383611601565b3060009081526002602052604090205490915061296b9082611c06565b3060009081526002602090815260408083209390935560069052205460ff16156129ba57306000908152600360205260409020546129a99084611c06565b306000908152600360205260409020555b505050565b600a546129cc9083611d26565b600a55600b546129dc9082611c06565b600b555050565b600060208083528351808285015260005b81811015612a10578581018301518582016040015282016129f4565b81811115612a22576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612a4d57600080fd5b50565b60008060408385031215612a6357600080fd5b8235612a6e81612a38565b946020939093013593505050565b600060208284031215612a8e57600080fd5b8135610b5281612a38565b803560ff81168114612aaa57600080fd5b919050565b600080600060608486031215612ac457600080fd5b612acd84612a99565b9250612adb60208501612a99565b9150612ae960408501612a99565b90509250925092565b600080600060608486031215612b0757600080fd5b8335612b1281612a38565b92506020840135612b2281612a38565b929592945050506040919091013590565b80358015158114612aaa57600080fd5b60008060408385031215612b5657600080fd5b612a6e83612b33565b600060208284031215612b7157600080fd5b5035919050565b60008060408385031215612b8b57600080fd5b82359150612b9b60208401612b33565b90509250929050565b60008060008060008060c08789031215612bbd57600080fd5b612bc687612a99565b9550612bd460208801612a99565b9450612be260408801612a99565b9350612bf060608801612a99565b9250612bfe60808801612a99565b9150612c0c60a08801612a99565b90509295509295509295565b600060208284031215612c2a57600080fd5b610b5282612b33565b60008060408385031215612c4657600080fd5b8235612c5181612a38565b91506020830135612c6181612a38565b809150509250929050565b600181811c90821680612c8057607f821691505b602082108103612ca057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612d1957612d19612cf1565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201612d4657612d46612cf1565b5060010190565b6000816000190483118215151615612d6757612d67612cf1565b500290565b600082612d8957634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612da157612da1612cf1565b500190565b600060ff821660ff84168060ff03821115612dc357612dc3612cf1565b019392505050565b600060ff821660ff84168160ff0481118215151615612dec57612dec612cf1565b029392505050565b600060208284031215612e0657600080fd5b8151610b5281612a38565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e615784516001600160a01b031683529383019391830191600101612e3c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e9757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220325e5ec9aa4c1df587a868f2ba96bdb07a5e1757f7862d588800720c20efb64264736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c8063715018a611610144578063af2ce614116100b6578063d543dbeb1161007a578063d543dbeb146107a1578063dd62ed3e146107c1578063ea2f0b3714610807578063f0f165af14610827578063f2fde38b14610847578063fabb0b4f1461086757600080fd5b8063af2ce6141461070b578063b27bcfba1461072b578063bf56b3711461074b578063c49b9a8014610761578063caac79341461078157600080fd5b8063954c6d3f11610108578063954c6d3f1461064957806395d89b4114610669578063a457c2d71461067e578063a87859f61461069e578063a9059cbb146106cb578063aacebbe3146106eb57600080fd5b8063715018a6146105ca5780637d1db4a5146105df5780638da5cb5b146105f55780638f9a55c01461061357806391d919a91461062957600080fd5b8063313ce567116101dd5780634549b039116101a15780634549b039146104e7578063470624021461050757806349bd5a5e146105345780634a74bb021461056857806352390c021461058a57806370a08231146105aa57600080fd5b8063313ce567146104455780633685d4191461046757806339509351146104875780633bd5d173146104a7578063437823ec146104c757600080fd5b80631694505e1161022f5780631694505e1461033357806318160ddd1461037f57806323b872dd146103945780632b14ca56146103b45780632d4103d6146104055780632d8381191461042557600080fd5b806306fdde0314610277578063095ea7b3146102a25780630bd3a7f9146102d25780630c2536d7146102f457806313114a9d1461031457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c61087d565b60405161029991906129e3565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004612a50565b61090f565b6040519015158152602001610299565b3480156102de57600080fd5b506102f26102ed366004612a7c565b610926565b005b34801561030057600080fd5b506102f261030f366004612aaf565b61097d565b34801561032057600080fd5b50600b545b604051908152602001610299565b34801561033f57600080fd5b506103677f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561038b57600080fd5b50600954610325565b3480156103a057600080fd5b506102c26103af366004612af2565b6109dd565b3480156103c057600080fd5b506011546103e19060ff808216916101008104821691620100009091041683565b6040805160ff94851681529284166020840152921691810191909152606001610299565b34801561041157600080fd5b506102f2610420366004612b43565b610a46565b34801561043157600080fd5b50610325610440366004612b5f565b610ad5565b34801561045157600080fd5b50600f5460405160ff9091168152602001610299565b34801561047357600080fd5b506102f2610482366004612a7c565b610b59565b34801561049357600080fd5b506102c26104a2366004612a50565b610d0b565b3480156104b357600080fd5b506102f26104c2366004612b5f565b610d41565b3480156104d357600080fd5b506102f26104e2366004612a7c565b610e4a565b3480156104f357600080fd5b50610325610502366004612b78565b610e98565b34801561051357600080fd5b506010546103e19060ff808216916101008104821691620100009091041683565b34801561054057600080fd5b506103677f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a81565b34801561057457600080fd5b506012546102c290640100000000900460ff1681565b34801561059657600080fd5b506102f26105a5366004612a7c565b610f35565b3480156105b657600080fd5b506103256105c5366004612a7c565b611088565b3480156105d657600080fd5b506102f26110e7565b3480156105eb57600080fd5b5061032560135481565b34801561060157600080fd5b506000546001600160a01b0316610367565b34801561061f57600080fd5b5061032560155481565b34801561063557600080fd5b506102f2610644366004612a7c565b61115b565b34801561065557600080fd5b506102f2610664366004612aaf565b6111a6565b34801561067557600080fd5b5061028c611206565b34801561068a57600080fd5b506102c2610699366004612a50565b611215565b3480156106aa57600080fd5b506103256106b9366004612a7c565b60196020526000908152604090205481565b3480156106d757600080fd5b506102c26106e6366004612a50565b611264565b3480156106f757600080fd5b506102f2610706366004612a7c565b611271565b34801561071757600080fd5b506102f2610726366004612b5f565b6112bd565b34801561073757600080fd5b506102f2610746366004612ba4565b61130e565b34801561075757600080fd5b5061032560175481565b34801561076d57600080fd5b506102f261077c366004612c18565b61138c565b34801561078d57600080fd5b50600c54610367906001600160a01b031681565b3480156107ad57600080fd5b506102f26107bc366004612b5f565b611410565b3480156107cd57600080fd5b506103256107dc366004612c33565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561081357600080fd5b506102f2610822366004612a7c565b61145b565b34801561083357600080fd5b506102f2610842366004612b5f565b6114a6565b34801561085357600080fd5b506102f2610862366004612a7c565b6114d5565b34801561087357600080fd5b5061032560165481565b6060600d805461088c90612c6c565b80601f01602080910402602001604051908101604052809291908181526020018280546108b890612c6c565b80156109055780601f106108da57610100808354040283529160200191610905565b820191906000526020600020905b8154815290600101906020018083116108e857829003601f168201915b5050505050905090565b600061091c338484611683565b5060015b92915050565b6000546001600160a01b031633146109595760405162461bcd60e51b815260040161095090612ca6565b60405180910390fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146109a75760405162461bcd60e51b815260040161095090612ca6565b6011805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b60006109ea8484846117a7565b610a3c8433610a3785604051806060016040528060288152602001612eb1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611ba9565b611683565b5060019392505050565b6000546001600160a01b03163314610a705760405162461bcd60e51b815260040161095090612ca6565b6018805460ff1916831515179055610a8730610f35565b610ab07f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a610f35565b60185460ff168015610ac25750601754155b15610ad1574360175560168190555b5050565b6000600a54821115610b3c5760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610950565b6000610b46611be3565b9050610b5283826115bf565b9392505050565b6000546001600160a01b03163314610b835760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03811660009081526006602052604090205460ff16610beb5760405162461bcd60e51b815260206004820152601760248201527f4163636f756e74206973206e6f74206578636c756465640000000000000000006044820152606401610950565b60005b600754811015610ad157816001600160a01b031660078281548110610c1557610c15612cdb565b6000918252602090912001546001600160a01b031603610cf95760078054610c3f90600190612d07565b81548110610c4f57610c4f612cdb565b600091825260209091200154600780546001600160a01b039092169183908110610c7b57610c7b612cdb565b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600382526040808220829055600690925220805460ff191690556007805480610cd357610cd3612d1e565b600082815260209020810160001990810180546001600160a01b03191690550190555050565b80610d0381612d34565b915050610bee565b3360008181526004602090815260408083206001600160a01b0387168452909152812054909161091c918590610a379086611c06565b3360008181526006602052604090205460ff1615610db65760405162461bcd60e51b815260206004820152602c60248201527f4578636c75646564206164647265737365732063616e6e6f742063616c6c207460448201526b3434b990333ab731ba34b7b760a11b6064820152608401610950565b6000806000610dc485611c65565b935093509350506000610de186858585610ddc611be3565b611cc4565b50506001600160a01b038616600090815260026020526040902054909150610e099082611d26565b6001600160a01b038616600090815260026020526040902055600a54610e2f9082611d26565b600a55600b54610e3f9087611c06565b600b55505050505050565b6000546001600160a01b03163314610e745760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600560205260409020805460ff19166001179055565b6000600954831115610eec5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610950565b6000806000610efa86611c65565b93509350935050600080610f1388868686610ddc611be3565b509150915086610f295750935061092092505050565b94506109209350505050565b6000546001600160a01b03163314610f5f5760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03811660009081526006602052604090205460ff1615610fc85760405162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c7564656400000000006044820152606401610950565b6001600160a01b03811660009081526002602052604090205415611022576001600160a01b03811660009081526002602052604090205461100890610ad5565b6001600160a01b0382166000908152600360205260409020555b6001600160a01b03166000818152600660205260408120805460ff191660019081179091556007805491820181559091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319169091179055565b6001600160a01b03811660009081526006602052604081205460ff16156110c557506001600160a01b031660009081526003602052604090205490565b6001600160a01b03821660009081526002602052604090205461092090610ad5565b6000546001600160a01b031633146111115760405162461bcd60e51b815260040161095090612ca6565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031633146111855760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6000546001600160a01b031633146111d05760405162461bcd60e51b815260040161095090612ca6565b6010805460ff9384166101000261ff0019938516620100000262ff00ff1990921694909516939093179290921716919091179055565b6060600e805461088c90612c6c565b600061091c3384610a3785604051806060016040528060258152602001612ed9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611ba9565b600061091c3384846117a7565b6000546001600160a01b0316331461129b5760405162461bcd60e51b815260040161095090612ca6565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146112e75760405162461bcd60e51b815260040161095090612ca6565b6113086103e86113028360095461160190919063ffffffff16565b906115bf565b60155550565b6000546001600160a01b031633146113385760405162461bcd60e51b815260040161095090612ca6565b6010805460ff97881662ff00ff19918216176201000096891687021761ff0019908116610100988a168902179092556011805495891695909116949094179187169094021790921691909316909102179055565b6000546001600160a01b031633146113b65760405162461bcd60e51b815260040161095090612ca6565b601280548215156401000000000264ff00000000199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599061140590831515815260200190565b60405180910390a150565b6000546001600160a01b0316331461143a5760405162461bcd60e51b815260040161095090612ca6565b6114556103e86113028360095461160190919063ffffffff16565b60135550565b6000546001600160a01b031633146114855760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b03166000908152600560205260409020805460ff19169055565b6000546001600160a01b031633146114d05760405162461bcd60e51b815260040161095090612ca6565b601455565b6000546001600160a01b031633146114ff5760405162461bcd60e51b815260040161095090612ca6565b6001600160a01b0381166115645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610950565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000610b5283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611d68565b60008260000361161357506000610920565b600061161f8385612d4d565b90508261162c8583612d6c565b14610b525760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610950565b6001600160a01b0383166116e55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610950565b6001600160a01b0382166117465760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610950565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661180b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610950565b6001600160a01b03821661186d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610950565b600081116118cf5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610950565b6000546001600160a01b038481169116148015906118fb57506000546001600160a01b03838116911614155b156119525760185460ff166119525760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642e00000000000000006044820152606401610950565b600061195d30611088565b9050601354811061196d57506013545b6014548110801590819061198b57506012546301000000900460ff16155b80156119c957507f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a6001600160a01b0316856001600160a01b031614155b80156119df5750601254640100000000900460ff165b156119f25760145491506119f282611d96565b6001600160a01b03851660009081526005602052604090205460019060ff1680611a3457506001600160a01b03851660009081526005602052604090205460ff165b15611a3d575060005b8015611b95576001600160a01b03861660009081526008602052604090205460ff16158015611a8557506001600160a01b03851660009081526008602052604090205460ff16155b15611b9557601354841115611aed5760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610950565b7f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a6001600160a01b0316856001600160a01b031614611b9557601554611b3286611088565b611b3c9086612d8e565b1115611b955760405162461bcd60e51b815260206004820152602260248201527f526563697069656e742065786365656473206d61782077616c6c65742073697a604482015261329760f11b6064820152608401610950565b611ba186868684611f7a565b505050505050565b60008184841115611bcd5760405162461bcd60e51b815260040161095091906129e3565b506000611bda8486612d07565b95945050505050565b6000806000611bf06121e8565b9092509050611bff82826115bf565b9250505090565b600080611c138385612d8e565b905083811015610b525760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610950565b6000806000806000611c768661236a565b90506000611c8387612385565b90506000611c90886123a5565b90506000611ca883611ca28b87611d26565b90611d26565b9050611cb48183611d26565b9993985091965094509092505050565b6000808080611cd38986611601565b90506000611ce18987611601565b90506000611cef8988611601565b90506000611cfd8989611601565b90506000611d1182611ca285818989611d26565b949d949c50929a509298505050505050505050565b6000610b5283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ba9565b60008183611d895760405162461bcd60e51b815260040161095091906129e3565b506000611bda8486612d6c565b6012805463ff000000191663010000001790556011546010546000916201000080820460ff90811693918204811692611ddc926101009182900483169291900416612da6565b611de69190612da6565b611df09190612da6565b611dfb906002612dcb565b60115460105460ff92831693506000928492611e24926101009182900483169291900416612da6565b611e319060ff1685612d4d565b611e3b9190612d6c565b90506000611e498285612d07565b905047611e55826123c6565b6000611e618247612d07565b601154601054919250600091611e879160ff610100918290048116929190910416612da6565b611e949060ff1687612d07565b611e9e9083612d6c565b601154601054919250600091611ec49160ff610100918290048116929190910416612da6565b611ed19060ff1683612d4d565b90508015611ee357611ee3868261257e565b601154601054600091611f069160ff620100009283900481169290910416612da6565b60ff16611f14846002612d4d565b611f1e9190612d4d565b90508015611f6257600c546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015611f60573d6000803e3d6000fd5b505b50506012805463ff0000001916905550505050505050565b801561207d57611f916012805462ffffff19169055565b7f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a6001600160a01b0316846001600160a01b031603612007576010546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b7f000000000000000000000000043a962d7b5a6fa339f23261d29890e3881a415a6001600160a01b0316836001600160a01b03160361207d576011546012805460ff80841661ffff19909216919091176101008085048316021762ff000019166201000093849004919091169092029190911790555b6001600160a01b03841660009081526006602052604090205460ff1680156120be57506001600160a01b03831660009081526006602052604090205460ff16155b156120d3576120ce84848461265e565b6121d1565b6001600160a01b03841660009081526006602052604090205460ff1615801561211457506001600160a01b03831660009081526006602052604090205460ff165b15612124576120ce8484846127a0565b6001600160a01b03841660009081526006602052604090205460ff1615801561216657506001600160a01b03831660009081526006602052604090205460ff16155b15612176576120ce84848461285b565b6001600160a01b03841660009081526006602052604090205460ff1680156121b657506001600160a01b03831660009081526006602052604090205460ff165b156121c6576120ce8484846128b1565b6121d184848461285b565b6121e26012805462ffffff19169055565b50505050565b600a546009546000918291825b60075481101561233a5782600260006007848154811061221757612217612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612282575081600360006007848154811061225b5761225b612cdb565b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561229857600a54600954945094505050509091565b6122de60026000600784815481106122b2576122b2612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d26565b925061232660036000600784815481106122fa576122fa612cdb565b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d26565b91508061233281612d34565b9150506121f5565b50600954600a5461234a916115bf565b82101561236157600a546009549350935050509091565b90939092509050565b6012546000906109209060649061130290859060ff16611601565b60125460009061092090606490611302908590610100900460ff16611601565b6012546000906109209060649061130290859062010000900460ff16611601565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106123fb576123fb612cdb565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612479573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061249d9190612df4565b816001815181106124b0576124b0612cdb565b60200260200101906001600160a01b031690816001600160a01b0316815250506124fb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611683565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612550908590600090869030904290600401612e11565b600060405180830381600087803b15801561256a57600080fd5b505af1158015611ba1573d6000803e3d6000fd5b6125a9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611683565b60405163f305d71960e01b8152306004820181905260248201849052600060448301819052606483015260848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612632573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906126579190612e82565b5050505050565b60008060008061266d85611c65565b9350935093509350600080600061268988878787610ddc611be3565b6001600160a01b038d1660009081526003602052604090205492955090935091506126b49089611d26565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546126e39084611d26565b6001600160a01b03808c1660009081526002602052604080822093909355908b16815220546127129083611c06565b6001600160a01b038a1660009081526002602052604090205561273485612936565b61273d84612936565b61274781876129bf565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8960405161278c91815260200190565b60405180910390a350505050505050505050565b6000806000806127af85611c65565b935093509350935060008060006127cb88878787610ddc611be3565b6001600160a01b038d1660009081526002602052604090205492955090935091506127f69084611d26565b6001600160a01b03808c16600090815260026020908152604080832094909455918c1681526003909152205461282c9088611c06565b6001600160a01b038a166000908152600360209081526040808320939093556002905220546127129083611c06565b60008060008061286a85611c65565b9350935093509350600080600061288688878787610ddc611be3565b6001600160a01b038d1660009081526002602052604090205492955090935091506126e39084611d26565b6000806000806128c085611c65565b935093509350935060008060006128dc88878787610ddc611be3565b6001600160a01b038d1660009081526003602052604090205492955090935091506129079089611d26565b6001600160a01b038b166000908152600360209081526040808320939093556002905220546127f69084611d26565b6000612940611be3565b9050600061294e8383611601565b3060009081526002602052604090205490915061296b9082611c06565b3060009081526002602090815260408083209390935560069052205460ff16156129ba57306000908152600360205260409020546129a99084611c06565b306000908152600360205260409020555b505050565b600a546129cc9083611d26565b600a55600b546129dc9082611c06565b600b555050565b600060208083528351808285015260005b81811015612a10578581018301518582016040015282016129f4565b81811115612a22576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114612a4d57600080fd5b50565b60008060408385031215612a6357600080fd5b8235612a6e81612a38565b946020939093013593505050565b600060208284031215612a8e57600080fd5b8135610b5281612a38565b803560ff81168114612aaa57600080fd5b919050565b600080600060608486031215612ac457600080fd5b612acd84612a99565b9250612adb60208501612a99565b9150612ae960408501612a99565b90509250925092565b600080600060608486031215612b0757600080fd5b8335612b1281612a38565b92506020840135612b2281612a38565b929592945050506040919091013590565b80358015158114612aaa57600080fd5b60008060408385031215612b5657600080fd5b612a6e83612b33565b600060208284031215612b7157600080fd5b5035919050565b60008060408385031215612b8b57600080fd5b82359150612b9b60208401612b33565b90509250929050565b60008060008060008060c08789031215612bbd57600080fd5b612bc687612a99565b9550612bd460208801612a99565b9450612be260408801612a99565b9350612bf060608801612a99565b9250612bfe60808801612a99565b9150612c0c60a08801612a99565b90509295509295509295565b600060208284031215612c2a57600080fd5b610b5282612b33565b60008060408385031215612c4657600080fd5b8235612c5181612a38565b91506020830135612c6181612a38565b809150509250929050565b600181811c90821680612c8057607f821691505b602082108103612ca057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082821015612d1957612d19612cf1565b500390565b634e487b7160e01b600052603160045260246000fd5b600060018201612d4657612d46612cf1565b5060010190565b6000816000190483118215151615612d6757612d67612cf1565b500290565b600082612d8957634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115612da157612da1612cf1565b500190565b600060ff821660ff84168060ff03821115612dc357612dc3612cf1565b019392505050565b600060ff821660ff84168160ff0481118215151615612dec57612dec612cf1565b029392505050565b600060208284031215612e0657600080fd5b8151610b5281612a38565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e615784516001600160a01b031683529383019391830191600101612e3c565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e9757600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220325e5ec9aa4c1df587a868f2ba96bdb07a5e1757f7862d588800720c20efb64264736f6c634300080f0033

Deployed Bytecode Sourcemap

25265:24703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28609:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29594:193;;;;;;;;;;-1:-1:-1;29594:193:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;29594:193:0;1072:187:1;33976:115:0;;;;;;;;;;-1:-1:-1;33976:115:0;;;;;:::i;:::-;;:::i;:::-;;34221:255;;;;;;;;;;-1:-1:-1;34221:255:0;;;;;:::i;:::-;;:::i;30967:87::-;;;;;;;;;;-1:-1:-1;31036:10:0;;30967:87;;;2150:25:1;;;2138:2;2123:18;30967:87:0;2004:177:1;26576:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2377:32:1;;;2359:51;;2347:2;2332:18;26576:51:0;2186:230:1;28886:95:0;;;;;;;;;;-1:-1:-1;28966:7:0;;28886:95;;29795:446;;;;;;;;;;-1:-1:-1;29795:446:0;;;;;:::i;:::-;;:::i;26440:22::-;;;;;;;;;;-1:-1:-1;26440:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;3102:4:1;3090:17;;;3072:36;;3144:17;;;3139:2;3124:18;;3117:45;3198:17;;3178:18;;;3171:45;;;;3060:2;3045:18;26440:22:0;2882:340:1;49628:337:0;;;;;;;;;;-1:-1:-1;49628:337:0;;;;;:::i;:::-;;:::i;32451:322::-;;;;;;;;;;-1:-1:-1;32451:322:0;;;;;:::i;:::-;;:::i;28795:83::-;;;;;;;;;;-1:-1:-1;28861:9:0;;28795:83;;28861:9;;;;3972:36:1;;3960:2;3945:18;28795:83:0;3830:184:1;33258:473:0;;;;;;;;;;-1:-1:-1;33258:473:0;;;;;:::i;:::-;;:::i;30249:300::-;;;;;;;;;;-1:-1:-1;30249:300:0;;;;;:::i;:::-;;:::i;31062:683::-;;;;;;;;;;-1:-1:-1;31062:683:0;;;;;:::i;:::-;;:::i;33739:111::-;;;;;;;;;;-1:-1:-1;33739:111:0;;;;;:::i;:::-;;:::i;31753:690::-;;;;;;;;;;-1:-1:-1;31753:690:0;;;;;:::i;:::-;;:::i;26413:20::-;;;;;;;;;;-1:-1:-1;26413:20:0;;;;;;;;;;;;;;;;;;;;;;26634:38;;;;;;;;;;;;;;;26709:40;;;;;;;;;;-1:-1:-1;26709:40:0;;;;;;;;;;;32918:332;;;;;;;;;;-1:-1:-1;32918:332:0;;;;;:::i;:::-;;:::i;28989:198::-;;;;;;;;;;-1:-1:-1;28989:198:0;;;;;:::i;:::-;;:::i;15329:148::-;;;;;;;;;;;;;:::i;26758:55::-;;;;;;;;;;;;;;;;14687:79;;;;;;;;;;-1:-1:-1;14725:7:0;14752:6;-1:-1:-1;;;;;14752:6:0;14687:79;;26913:57;;;;;;;;;;;;;;;;34099:114;;;;;;;;;;-1:-1:-1;34099:114:0;;;;;:::i;:::-;;:::i;34484:251::-;;;;;;;;;;-1:-1:-1;34484:251:0;;;;;:::i;:::-;;:::i;28700:87::-;;;;;;;;;;;;;:::i;30557:400::-;;;;;;;;;;-1:-1:-1;30557:400:0;;;;;:::i;:::-;;:::i;27470:46::-;;;;;;;;;;-1:-1:-1;27470:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;29195:199;;;;;;;;;;-1:-1:-1;29195:199:0;;;;;:::i;:::-;;:::i;32783:127::-;;;;;;;;;;-1:-1:-1;32783:127:0;;;;;:::i;:::-;;:::i;35555:172::-;;;;;;;;;;-1:-1:-1;35555:172:0;;;;;:::i;:::-;;:::i;34743:512::-;;;;;;;;;;-1:-1:-1;34743:512:0;;;;;:::i;:::-;;:::i;27401:29::-;;;;;;;;;;;;;;;;35735:171;;;;;;;;;;-1:-1:-1;35735:171:0;;;;;:::i;:::-;;:::i;25963:103::-;;;;;;;;;;-1:-1:-1;25963:103:0;;;;-1:-1:-1;;;;;25963:103:0;;;35411:136;;;;;;;;;;-1:-1:-1;35411:136:0;;;;;:::i;:::-;;:::i;29402:184::-;;;;;;;;;;-1:-1:-1;29402:184:0;;;;;:::i;:::-;-1:-1:-1;;;;;29551:18:0;;;29519:7;29551:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29402:184;33858:110;;;;;;;;;;-1:-1:-1;33858:110:0;;;;;:::i;:::-;;:::i;35263:140::-;;;;;;;;;;-1:-1:-1;35263:140:0;;;;;:::i;:::-;;:::i;15632:281::-;;;;;;;;;;-1:-1:-1;15632:281:0;;;;;:::i;:::-;;:::i;27365:29::-;;;;;;;;;;;;;;;;28609:83;28646:13;28679:5;28672:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28609:83;:::o;29594:193::-;29696:4;29718:39;7531:10;29741:7;29750:6;29718:8;:39::i;:::-;-1:-1:-1;29775:4:0;29594:193;;;;;:::o;33976:115::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;34047:29:0::1;;::::0;;;:20:::1;:29;::::0;;;;:36;;-1:-1:-1;;34047:36:0::1;34079:4;34047:36;::::0;;33976:115::o;34221:255::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;34357:7:::1;:31:::0;;::::1;34439:29:::0;;::::1;34357:31;34439:29;-1:-1:-1::0;;34399:29:0;;::::1;::::0;::::1;-1:-1:-1::0;;34399:29:0;;;34357:31;;;::::1;34399:29:::0;;;;;;;::::1;34439;::::0;;;::::1;::::0;;34221:255::o;29795:446::-;29927:4;29944:36;29954:6;29962:9;29973:6;29944:9;:36::i;:::-;29991:220;30014:6;7531:10;30062:138;30118:6;30062:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30062:19:0;;;;;;:11;:19;;;;;;;;7531:10;30062:33;;;;;;;;;;:37;:138::i;:::-;29991:8;:220::i;:::-;-1:-1:-1;30229:4:0;29795:446;;;;;:::o;49628:337::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;49715:11:::1;:21:::0;;-1:-1:-1;;49715:21:0::1;::::0;::::1;;;::::0;;49747:32:::1;49773:4;49747:17;:32::i;:::-;49790;49808:13;49790:17;:32::i;:::-;49836:11;::::0;::::1;;:30:::0;::::1;;;-1:-1:-1::0;49851:10:0::1;::::0;:15;49836:30:::1;49833:125;;;49895:12;49882:10;:25:::0;49922:10:::1;:24:::0;;;49833:125:::1;49628:337:::0;;:::o;32451:322::-;32545:7;32603;;32592;:18;;32570:110;;;;-1:-1:-1;;;32570:110:0;;7030:2:1;32570:110:0;;;7012:21:1;7069:2;7049:18;;;7042:30;7108:34;7088:18;;;7081:62;-1:-1:-1;;;7159:18:1;;;7152:40;7209:19;;32570:110:0;6828:406:1;32570:110:0;32691:19;32713:10;:8;:10::i;:::-;32691:32;-1:-1:-1;32741:24:0;:7;32691:32;32741:11;:24::i;:::-;32734:31;32451:322;-1:-1:-1;;;32451:322:0:o;33258:473::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33338:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;33330:56;;;::::0;-1:-1:-1;;;33330:56:0;;7441:2:1;33330:56:0::1;::::0;::::1;7423:21:1::0;7480:2;7460:18;;;7453:30;7519:25;7499:18;;;7492:53;7562:18;;33330:56:0::1;7239:347:1::0;33330:56:0::1;33402:9;33397:327;33421:9;:16:::0;33417:20;::::1;33397:327;;;33479:7;-1:-1:-1::0;;;;;33463:23:0::1;:9;33473:1;33463:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;33463:12:0::1;:23:::0;33459:254:::1;;33522:9;33532:16:::0;;:20:::1;::::0;33551:1:::1;::::0;33532:20:::1;:::i;:::-;33522:31;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;33507:9:::1;:12:::0;;-1:-1:-1;;;;;33522:31:0;;::::1;::::0;33517:1;;33507:12;::::1;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;33507:46:0::1;-1:-1:-1::0;;;;;33507:46:0;;::::1;;::::0;;33572:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;33611:11:::1;:20:::0;;;;:28;;-1:-1:-1;;33611:28:0::1;::::0;;33658:9:::1;:15:::0;;;::::1;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;33658:15:0;;;;;-1:-1:-1;;;;;;33658:15:0::1;::::0;;;;;49628:337;;:::o;33459:254::-:1;33439:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33397:327;;30249:300:::0;7531:10;30364:4;30458:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30458:34:0;;;;;;;;;;30364:4;;30386:133;;30436:7;;30458:50;;30497:10;30458:38;:50::i;31062:683::-;7531:10;31114:14;31177:19;;;:11;:19;;;;;;;;31176:20;31154:114;;;;-1:-1:-1;;;31154:114:0;;8459:2:1;31154:114:0;;;8441:21:1;8498:2;8478:18;;;8471:30;8537:34;8517:18;;;8510:62;-1:-1:-1;;;8588:18:1;;;8581:42;8640:19;;31154:114:0;8257:408:1;31154:114:0;31311:12;31338:18;31371:15;31400:20;31412:7;31400:11;:20::i;:::-;31281:139;;;;;;;31432:15;31455:135;31481:7;31503:4;31522:10;31547:7;31569:10;:8;:10::i;:::-;31455:11;:135::i;:::-;-1:-1:-1;;;;;;;31621:15:0;;;;;;:7;:15;;;;;;31431:159;;-1:-1:-1;31621:28:0;;31431:159;31621:19;:28::i;:::-;-1:-1:-1;;;;;31603:15:0;;;;;;:7;:15;;;;;:46;31670:7;;:20;;31682:7;31670:11;:20::i;:::-;31660:7;:30;31714:10;;:23;;31729:7;31714:14;:23::i;:::-;31701:10;:36;-1:-1:-1;;;;;;31062:683:0:o;33739:111::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33808:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33808:34:0::1;33838:4;33808:34;::::0;;33739:111::o;31753:690::-;31871:7;31915;;31904;:18;;31896:62;;;;-1:-1:-1;;;31896:62:0;;8872:2:1;31896:62:0;;;8854:21:1;8911:2;8891:18;;;8884:30;8950:33;8930:18;;;8923:61;9001:18;;31896:62:0;8670:355:1;31896:62:0;32001:12;32028:18;32061:15;32090:20;32102:7;32090:11;:20::i;:::-;31971:139;;;;;;;32122:15;32139:23;32168:135;32194:7;32216:4;32235:10;32260:7;32282:10;:8;:10::i;32168:135::-;32121:182;;;;;32321:17;32316:120;;-1:-1:-1;32362:7:0;-1:-1:-1;32355:14:0;;-1:-1:-1;;;32355:14:0;32316:120;32409:15;-1:-1:-1;32402:22:0;;-1:-1:-1;;;;32402:22:0;32918:332;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32999:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32998:21;32990:61;;;::::0;-1:-1:-1;;;32990:61:0;;9232:2:1;32990:61:0::1;::::0;::::1;9214:21:1::0;9271:2;9251:18;;;9244:30;9310:29;9290:18;;;9283:57;9357:18;;32990:61:0::1;9030:351:1::0;32990:61:0::1;-1:-1:-1::0;;;;;33066:16:0;::::1;33085:1;33066:16:::0;;;:7:::1;:16;::::0;;;;;:20;33062:109:::1;;-1:-1:-1::0;;;;;33142:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;33122:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;33103:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;33062:109:::1;-1:-1:-1::0;;;;;33181:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;33181:27:0::1;33204:4;33181:27:::0;;::::1;::::0;;;33219:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;33219:23:0::1;::::0;;::::1;::::0;;32918:332::o;28989:198::-;-1:-1:-1;;;;;29079:20:0;;29055:7;29079:20;;;:11;:20;;;;;;;;29075:49;;;-1:-1:-1;;;;;;29108:16:0;;;;;:7;:16;;;;;;;28989:198::o;29075:49::-;-1:-1:-1;;;;;29162:16:0;;;;;;:7;:16;;;;;;29142:37;;:19;:37::i;15329:148::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;15436:1:::1;15420:6:::0;;15399:40:::1;::::0;-1:-1:-1;;;;;15420:6:0;;::::1;::::0;15399:40:::1;::::0;15436:1;;15399:40:::1;15467:1;15450:19:::0;;-1:-1:-1;;;;;;15450:19:0::1;::::0;;15329:148::o;34099:114::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34168:29:0::1;34200:5;34168:29:::0;;;:20:::1;:29;::::0;;;;:37;;-1:-1:-1;;34168:37:0::1;::::0;;34099:114::o;34484:251::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;34619:6:::1;:30:::0;;::::1;34699:28:::0;;::::1;34619:30;34699:28;-1:-1:-1::0;;34660:28:0;;::::1;::::0;::::1;-1:-1:-1::0;;34660:28:0;;;34619:30;;;::::1;34660:28:::0;;;;;;;::::1;34699;::::0;;;::::1;::::0;;34484:251::o;28700:87::-;28739:13;28772:7;28765:14;;;;;:::i;30557:400::-;30677:4;30699:228;7531:10;30749:7;30771:145;30828:15;30771:145;;;;;;;;;;;;;;;;;7531:10;30771:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30771:34:0;;;;;;;;;;;;:38;:145::i;29195:199::-;29300:4;29322:42;7531:10;29346:9;29357:6;29322:9;:42::i;32783:127::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;32872:17:::1;:30:::0;;-1:-1:-1;;;;;;32872:30:0::1;-1:-1:-1::0;;;;;32872:30:0;;;::::1;::::0;;;::::1;::::0;;32783:127::o;35555:172::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;35682:37:::1;35713:5;35682:26;35694:13;35682:7;;:11;;:26;;;;:::i;:::-;:30:::0;::::1;:37::i;:::-;35665:14;:54:::0;-1:-1:-1;35555:172:0:o;34743:512::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;34988:6:::1;:34:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;35033:32:0;;;;;;;::::1;::::0;::::1;;-1:-1:-1::0;;35076:32:0;;::::1;34988:34;35076:32:::0;;::::1;::::0;::::1;;::::0;;;35121:7:::1;:36:::0;;;;::::1;35168:34:::0;;;;;;;;;;::::1;::::0;;::::1;;35213::::0;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;;34743:512::o;35735:171::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;35812:21:::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;35812:32:0;;::::1;;::::0;;35860:38:::1;::::0;::::1;::::0;::::1;::::0;35836:8;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;35860:38:0::1;;;;;;;;35735:171:::0;:::o;35411:136::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;35503:36:::1;35533:5;35503:25;35515:12;35503:7;;:11;;:25;;;;:::i;:36::-;35488:12;:51:::0;-1:-1:-1;35411:136:0:o;33858:110::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33925:27:0::1;33955:5;33925:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33925:35:0::1;::::0;;33858:110::o;35263:140::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;35354:29:::1;:41:::0;35263:140::o;15632:281::-;14899:6;;-1:-1:-1;;;;;14899:6:0;7531:10;14899:22;14891:67;;;;-1:-1:-1;;;14891:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15735:22:0;::::1;15713:110;;;::::0;-1:-1:-1;;;15713:110:0;;9588:2:1;15713:110:0::1;::::0;::::1;9570:21:1::0;9627:2;9607:18;;;9600:30;9666:34;9646:18;;;9639:62;-1:-1:-1;;;9717:18:1;;;9710:36;9763:19;;15713:110:0::1;9386:402:1::0;15713:110:0::1;15860:6;::::0;;15839:38:::1;::::0;-1:-1:-1;;;;;15839:38:0;;::::1;::::0;15860:6;::::1;::::0;15839:38:::1;::::0;::::1;15888:6;:17:::0;;-1:-1:-1;;;;;;15888:17:0::1;-1:-1:-1::0;;;;;15888:17:0;;;::::1;::::0;;;::::1;::::0;;15632:281::o;5175:132::-;5233:7;5260:39;5264:1;5267;5260:39;;;;;;;;;;;;;;;;;:3;:39::i;4680:252::-;4738:7;4764:1;4769;4764:6;4760:47;;-1:-1:-1;4794:1:0;4787:8;;4760:47;4819:9;4831:5;4835:1;4831;:5;:::i;:::-;4819:17;-1:-1:-1;4864:1:0;4855:5;4859:1;4819:17;4855:5;:::i;:::-;:10;4847:56;;;;-1:-1:-1;;;4847:56:0;;10390:2:1;4847:56:0;;;10372:21:1;10429:2;10409:18;;;10402:30;10468:34;10448:18;;;10441:62;-1:-1:-1;;;10519:18:1;;;10512:31;10560:19;;4847:56:0;10188:397:1;39960:371:0;-1:-1:-1;;;;;40087:19:0;;40079:68;;;;-1:-1:-1;;;40079:68:0;;10792:2:1;40079:68:0;;;10774:21:1;10831:2;10811:18;;;10804:30;10870:34;10850:18;;;10843:62;-1:-1:-1;;;10921:18:1;;;10914:34;10965:19;;40079:68:0;10590:400:1;40079:68:0;-1:-1:-1;;;;;40166:21:0;;40158:68;;;;-1:-1:-1;;;40158:68:0;;11197:2:1;40158:68:0;;;11179:21:1;11236:2;11216:18;;;11209:30;11275:34;11255:18;;;11248:62;-1:-1:-1;;;11326:18:1;;;11319:32;11368:19;;40158:68:0;10995:398:1;40158:68:0;-1:-1:-1;;;;;40239:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40291:32;;2150:25:1;;;40291:32:0;;2123:18:1;40291:32:0;;;;;;;39960:371;;;:::o;40339:2343::-;-1:-1:-1;;;;;40461:18:0;;40453:68;;;;-1:-1:-1;;;40453:68:0;;11600:2:1;40453:68:0;;;11582:21:1;11639:2;11619:18;;;11612:30;11678:34;11658:18;;;11651:62;-1:-1:-1;;;11729:18:1;;;11722:35;11774:19;;40453:68:0;11398:401:1;40453:68:0;-1:-1:-1;;;;;40540:16:0;;40532:64;;;;-1:-1:-1;;;40532:64:0;;12006:2:1;40532:64:0;;;11988:21:1;12045:2;12025:18;;;12018:30;12084:34;12064:18;;;12057:62;-1:-1:-1;;;12135:18:1;;;12128:33;12178:19;;40532:64:0;11804:399:1;40532:64:0;40624:1;40615:6;:10;40607:64;;;;-1:-1:-1;;;40607:64:0;;12410:2:1;40607:64:0;;;12392:21:1;12449:2;12429:18;;;12422:30;12488:34;12468:18;;;12461:62;-1:-1:-1;;;12539:18:1;;;12532:39;12588:19;;40607:64:0;12208:405:1;40607:64:0;14725:7;14752:6;-1:-1:-1;;;;;40697:15:0;;;14752:6;;40697:15;;;;:32;;-1:-1:-1;14725:7:0;14752:6;-1:-1:-1;;;;;40716:13:0;;;14752:6;;40716:13;;40697:32;40692:88;;;40740:11;;;;40732:48;;;;-1:-1:-1;;;40732:48:0;;12820:2:1;40732:48:0;;;12802:21:1;12859:2;12839:18;;;12832:30;12898:26;12878:18;;;12871:54;12942:18;;40732:48:0;12618:348:1;40732:48:0;41115:28;41146:24;41164:4;41146:9;:24::i;:::-;41115:55;;41211:12;;41187:20;:36;41183:104;;-1:-1:-1;41263:12:0;;41183:104;41363:29;;41326:66;;;;;;;41421:53;;-1:-1:-1;41458:16:0;;;;;;;41457:17;41421:53;:91;;;;;41499:13;-1:-1:-1;;;;;41491:21:0;:4;-1:-1:-1;;;;;41491:21:0;;;41421:91;:129;;;;-1:-1:-1;41529:21:0;;;;;;;41421:129;41403:318;;;41600:29;;41577:52;;41673:36;41688:20;41673:14;:36::i;:::-;-1:-1:-1;;;;;41914:24:0;;41794:12;41914:24;;;:18;:24;;;;;;41809:4;;41914:24;;;:50;;-1:-1:-1;;;;;;41942:22:0;;;;;;:18;:22;;;;;;;;41914:50;41910:98;;;-1:-1:-1;41991:5:0;41910:98;42022:7;42018:536;;;-1:-1:-1;;;;;42051:26:0;;;;;;:20;:26;;;;;;;;42050:27;:56;;;;-1:-1:-1;;;;;;42082:24:0;;;;;;:20;:24;;;;;;;;42081:25;42050:56;42046:497;;;42167:12;;42157:6;:22;;42127:136;;;;-1:-1:-1;;;42127:136:0;;13173:2:1;42127:136:0;;;13155:21:1;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:1;;;13295:38;13350:19;;42127:136:0;12971:404:1;42127:136:0;42292:13;-1:-1:-1;;;;;42286:19:0;:2;-1:-1:-1;;;;;42286:19:0;;42282:228;;42390:14;;42373:13;42383:2;42373:9;:13::i;:::-;42364:22;;:6;:22;:::i;:::-;:40;;42330:160;;;;-1:-1:-1;;;42330:160:0;;13715:2:1;42330:160:0;;;13697:21:1;13754:2;13734:18;;;13727:30;13793:34;13773:18;;;13766:62;-1:-1:-1;;;13844:18:1;;;13837:32;13886:19;;42330:160:0;13513:398:1;42330:160:0;42633:41;42648:4;42654:2;42658:6;42666:7;42633:14;:41::i;:::-;40442:2240;;;40339:2343;;;:::o;4195:226::-;4315:7;4351:12;4343:6;;;;4335:29;;;;-1:-1:-1;;;4335:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4375:9:0;4387:5;4391:1;4387;:5;:::i;:::-;4375:17;4195:226;-1:-1:-1;;;;;4195:226:0:o;37435:164::-;37477:7;37498:15;37515;37534:19;:17;:19::i;:::-;37497:56;;-1:-1:-1;37497:56:0;-1:-1:-1;37571:20:0;37497:56;;37571:11;:20::i;:::-;37564:27;;;;37435:164;:::o;3292:181::-;3350:7;;3382:5;3386:1;3382;:5;:::i;:::-;3370:17;;3411:1;3406;:6;;3398:46;;;;-1:-1:-1;;;3398:46:0;;14118:2:1;3398:46:0;;;14100:21:1;14157:2;14137:18;;;14130:30;14196:29;14176:18;;;14169:57;14243:18;;3398:46:0;13916:351:1;36163:568:0;36264:7;36286;36308;36330;36365:12;36380:31;36403:7;36380:22;:31::i;:::-;36365:46;;36422:18;36443:30;36465:7;36443:21;:30::i;:::-;36422:51;;36484:15;36502:30;36524:7;36502:21;:30::i;:::-;36484:48;-1:-1:-1;36543:23:0;36569:33;36591:10;36569:17;:7;36581:4;36569:11;:17::i;:::-;:21;;:33::i;:::-;36543:59;-1:-1:-1;36631:28:0;36543:59;36651:7;36631:19;:28::i;:::-;36613:46;36697:4;;-1:-1:-1;36703:10:0;;-1:-1:-1;36703:10:0;-1:-1:-1;36163:568:0;;-1:-1:-1;;;36163:568:0:o;36739:688::-;36964:7;;;;37061:24;:7;37073:11;37061;:24::i;:::-;37043:42;-1:-1:-1;37096:12:0;37111:21;:4;37120:11;37111:8;:21::i;:::-;37096:36;-1:-1:-1;37143:18:0;37164:27;:10;37179:11;37164:14;:27::i;:::-;37143:48;-1:-1:-1;37202:15:0;37220:24;:7;37232:11;37220;:24::i;:::-;37202:42;-1:-1:-1;37255:23:0;37281:88;37202:42;37281:61;37331:10;37281:61;:7;37307:4;37281:25;:31::i;:88::-;37388:7;;;;-1:-1:-1;37414:4:0;;-1:-1:-1;36739:688:0;;-1:-1:-1;;;;;;;;;36739:688:0:o;3756:136::-;3814:7;3841:43;3845:1;3848;3841:43;;;;;;;;;;;;;;;;;:3;:43::i;5803:312::-;5923:7;5958:12;5951:5;5943:28;;;;-1:-1:-1;;;5943:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5982:9:0;5994:5;5998:1;5994;:5;:::i;42690:1195::-;27279:16;:23;;-1:-1:-1;;27279:23:0;;;;;42893:7:::1;:17:::0;42874:6:::1;:16:::0;27279:23;;42893:17;;;::::1;27279:23:::0;42893:17;;::::1;::::0;42874:16;;::::1;::::0;::::1;::::0;42835:36:::1;::::0;27279:23;42854:17;;;::::1;::::0;::::1;::::0;42835:16;;::::1;;:36;:::i;:::-;:55;;;;:::i;:::-;:75;;;;:::i;:::-;42834:81;::::0;42914:1:::1;42834:81;:::i;:::-;42991:7;:17:::0;42972:6:::1;:16:::0;42812:103:::1;::::0;;::::1;::::0;-1:-1:-1;42926:32:0::1;::::0;42812:103;;42972:36:::1;::::0;42991:17:::1;::::0;;;::::1;::::0;::::1;::::0;42972:16;;::::1;;:36;:::i;:::-;42962:47;::::0;::::1;;:6:::0;:47:::1;:::i;:::-;42961:63;;;;:::i;:::-;42926:98:::0;-1:-1:-1;43035:14:0::1;43052:33;42926:98:::0;43052:6;:33:::1;:::i;:::-;43035:50:::0;-1:-1:-1;43123:21:0::1;43157:24;43035:50:::0;43157:16:::1;:24::i;:::-;43194:20;43217:38;43241:14:::0;43217:21:::1;:38;:::i;:::-;43338:7;:17:::0;43319:6:::1;:16:::0;43194:61;;-1:-1:-1;43266:19:0::1;::::0;43319:36:::1;::::0;43338:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43319:16;;;::::1;;:36;:::i;:::-;43304:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43288:69;::::0;:12;:69:::1;:::i;:::-;43434:7;:17:::0;43415:6:::1;:16:::0;43266:91;;-1:-1:-1;43368:29:0::1;::::0;43415:36:::1;::::0;43434:17:::1;;::::0;;;::::1;::::0;::::1;::::0;43415:16;;;::::1;;:36;:::i;:::-;43400:52;::::0;::::1;;:11:::0;:52:::1;:::i;:::-;43368:84:::0;-1:-1:-1;43469:25:0;;43465:160:::1;;43552:61;43565:24;43591:21;43552:12;:61::i;:::-;43732:7;:17:::0;43713:6:::1;:16:::0;43671:20:::1;::::0;43713:36:::1;::::0;43732:17:::1;::::0;;;;::::1;::::0;::::1;::::0;43713:16;;::::1;;:36;:::i;:::-;43694:56;;:15;:11:::0;43708:1:::1;43694:15;:::i;:::-;:56;;;;:::i;:::-;43671:79:::0;-1:-1:-1;43776:16:0;;43772:98:::1;;43817:17;::::0;43809:49:::1;::::0;-1:-1:-1;;;;;43817:17:0;;::::1;::::0;43809:49;::::1;;;::::0;43845:12;;43817:17:::1;43809:49:::0;43817:17;43809:49;43845:12;43817:17;43809:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43772:98;-1:-1:-1::0;;27325:16:0;:24;;-1:-1:-1;;27325:24:0;;;-1:-1:-1;;;;;;;42690:1195:0:o;45090:1022::-;45245:7;45241:230;;;45269:14;39495;:18;;-1:-1:-1;;39552:17:0;;;39452:132;45269:14;45312:13;-1:-1:-1;;;;;45302:23:0;:6;-1:-1:-1;;;;;45302:23:0;;45298:72;;39646:6;:17;39629:14;:34;;39646:17;;;;-1:-1:-1;;39674:32:0;;;;;;;39646:17;39690:16;;;;;39674:32;;-1:-1:-1;;39717:32:0;39733:16;;;;;;;;;39717:32;;;;;;;;;45346:8;45401:13;-1:-1:-1;;;;;45388:26:0;:9;-1:-1:-1;;;;;45388:26:0;;45384:76;;39828:7;:18;39811:14;:35;;39828:18;;;;-1:-1:-1;;39857:33:0;;;;;;;39828:18;39873:17;;;;;39857:33;;-1:-1:-1;;39901:33:0;39917:17;;;;;;;;;39901:33;;;;;;;;;45435:9;-1:-1:-1;;;;;45487:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;45511:22:0;;;;;;:11;:22;;;;;;;;45510:23;45487:46;45483:597;;;45550:48;45572:6;45580:9;45591:6;45550:21;:48::i;:::-;45483:597;;;-1:-1:-1;;;;;45621:19:0;;;;;;:11;:19;;;;;;;;45620:20;:46;;;;-1:-1:-1;;;;;;45644:22:0;;;;;;:11;:22;;;;;;;;45620:46;45616:464;;;45683:46;45703:6;45711:9;45722:6;45683:19;:46::i;45616:464::-;-1:-1:-1;;;;;45752:19:0;;;;;;:11;:19;;;;;;;;45751:20;:47;;;;-1:-1:-1;;;;;;45776:22:0;;;;;;:11;:22;;;;;;;;45775:23;45751:47;45747:333;;;45815:44;45833:6;45841:9;45852:6;45815:17;:44::i;45747:333::-;-1:-1:-1;;;;;45881:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;45904:22:0;;;;;;:11;:22;;;;;;;;45881:45;45877:203;;;45943:48;45965:6;45973:9;45984:6;45943:21;:48::i;45877:203::-;46024:44;46042:6;46050:9;46061:6;46024:17;:44::i;:::-;46090:14;39495;:18;;-1:-1:-1;;39552:17:0;;;39452:132;46090:14;45090:1022;;;;:::o;37607:605::-;37705:7;;37741;;37658;;;;;37759:338;37783:9;:16;37779:20;;37759:338;;;37867:7;37843;:21;37851:9;37861:1;37851:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37851:12:0;37843:21;;;;;;;;;;;;;:31;;:83;;;37919:7;37895;:21;37903:9;37913:1;37903:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;37903:12:0;37895:21;;;;;;;;;;;;;:31;37843:83;37821:146;;;37950:7;;37959;;37942:25;;;;;;;37607:605;;:::o;37821:146::-;37992:34;38004:7;:21;38012:9;38022:1;38012:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38012:12:0;38004:21;;;;;;;;;;;;;37992:7;;:11;:34::i;:::-;37982:44;;38051:34;38063:7;:21;38071:9;38081:1;38071:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;38071:12:0;38063:21;;;;;;;;;;;;;38051:7;;:11;:34::i;:::-;38041:44;-1:-1:-1;37801:3:0;;;;:::i;:::-;;;;37759:338;;;-1:-1:-1;38133:7:0;;38121;;:20;;:11;:20::i;:::-;38111:7;:30;38107:61;;;38151:7;;38160;;38143:25;;;;;;37607:605;;:::o;38107:61::-;38187:7;;38196;;-1:-1:-1;37607:605:0;-1:-1:-1;37607:605:0:o;38931:144::-;39041:14;;39002:7;;39029:38;;39061:5;;39029:27;;:7;;39041:14;;39029:11;:27::i;39083:174::-;39224:13;;39180:7;;39212:37;;39243:5;;39212:26;;:7;;39224:13;;;;;39212:11;:26::i;39265:174::-;39406:13;;39362:7;;39394:37;;39425:5;;39394:26;;:7;;39406:13;;;;;39394:11;:26::i;43893:589::-;44043:16;;;44057:1;44043:16;;;;;;;;44019:21;;44043:16;;;;;;;;;;-1:-1:-1;44043:16:0;44019:40;;44088:4;44070;44075:1;44070:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44070:23:0;;;-1:-1:-1;;;;;44070:23:0;;;;;44114:15;-1:-1:-1;;;;;44114:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44104:4;44109:1;44104:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44104:32:0;;;-1:-1:-1;;;;;44104:32:0;;;;;44149:62;44166:4;44181:15;44199:11;44149:8;:62::i;:::-;44250:224;;-1:-1:-1;;;44250:224:0;;-1:-1:-1;;;;;44250:15:0;:66;;;;:224;;44331:11;;44357:1;;44401:4;;44428;;44448:15;;44250:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44490:519;44638:62;44655:4;44670:15;44688:11;44638:8;:62::i;:::-;44743:258;;-1:-1:-1;;;44743:258:0;;44815:4;44743:258;;;16438:34:1;;;16488:18;;;16481:34;;;44861:1:0;16531:18:1;;;16524:34;;;16574:18;;;16567:34;16617:19;;;16610:44;44975:15:0;16670:19:1;;;16663:35;44743:15:0;-1:-1:-1;;;;;44743:31:0;;;;44782:9;;16372:19:1;;44743:258:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44490:519;;:::o;47815:863::-;47966:23;48004:12;48031:18;48064:15;48093:20;48105:7;48093:11;:20::i;:::-;47951:162;;;;;;;;48125:15;48142:23;48167:12;48183:135;48209:7;48231:4;48250:10;48275:7;48297:10;:8;:10::i;48183:135::-;-1:-1:-1;;;;;48349:15:0;;;;;;:7;:15;;;;;;48124:194;;-1:-1:-1;48124:194:0;;-1:-1:-1;48124:194:0;-1:-1:-1;48349:28:0;;48369:7;48349:19;:28::i;:::-;-1:-1:-1;;;;;48331:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48406:7;:15;;;;:28;;48426:7;48406:19;:28::i;:::-;-1:-1:-1;;;;;48388:15:0;;;;;;;:7;:15;;;;;;:46;;;;48466:18;;;;;;;:39;;48489:15;48466:22;:39::i;:::-;-1:-1:-1;;;;;48445:18:0;;;;;;:7;:18;;;;;:60;48516:26;48531:10;48516:14;:26::i;:::-;48553:23;48568:7;48553:14;:23::i;:::-;48587;48599:4;48605;48587:11;:23::i;:::-;48643:9;-1:-1:-1;;;;;48626:44:0;48635:6;-1:-1:-1;;;;;48626:44:0;;48654:15;48626:44;;;;2150:25:1;;2138:2;2123:18;;2004:177;48626:44:0;;;;;;;;47940:738;;;;;;;47815:863;;;:::o;46932:875::-;47081:23;47119:12;47146:18;47179:15;47208:20;47220:7;47208:11;:20::i;:::-;47066:162;;;;;;;;47240:15;47257:23;47282:12;47298:135;47324:7;47346:4;47365:10;47390:7;47412:10;:8;:10::i;47298:135::-;-1:-1:-1;;;;;47464:15:0;;;;;;:7;:15;;;;;;47239:194;;-1:-1:-1;47239:194:0;;-1:-1:-1;47239:194:0;-1:-1:-1;47464:28:0;;47239:194;47464:19;:28::i;:::-;-1:-1:-1;;;;;47446:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47524:18;;;;;:7;:18;;;;;:39;;47547:15;47524:22;:39::i;:::-;-1:-1:-1;;;;;47503:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47595:7;:18;;;;:39;;47618:15;47595:22;:39::i;46120:802::-;46267:23;46305:12;46332:18;46365:15;46394:20;46406:7;46394:11;:20::i;:::-;46252:162;;;;;;;;46426:15;46443:23;46468:12;46484:135;46510:7;46532:4;46551:10;46576:7;46598:10;:8;:10::i;46484:135::-;-1:-1:-1;;;;;46650:15:0;;;;;;:7;:15;;;;;;46425:194;;-1:-1:-1;46425:194:0;;-1:-1:-1;46425:194:0;-1:-1:-1;46650:28:0;;46425:194;46650:19;:28::i;48686:934::-;48837:23;48875:12;48902:18;48935:15;48964:20;48976:7;48964:11;:20::i;:::-;48822:162;;;;;;;;48996:15;49013:23;49038:12;49054:135;49080:7;49102:4;49121:10;49146:7;49168:10;:8;:10::i;49054:135::-;-1:-1:-1;;;;;49220:15:0;;;;;;:7;:15;;;;;;48995:194;;-1:-1:-1;48995:194:0;;-1:-1:-1;48995:194:0;-1:-1:-1;49220:28:0;;49240:7;49220:19;:28::i;:::-;-1:-1:-1;;;;;49202:15:0;;;;;;:7;:15;;;;;;;;:46;;;;49277:7;:15;;;;:28;;49297:7;49277:19;:28::i;38220:355::-;38283:19;38305:10;:8;:10::i;:::-;38283:32;-1:-1:-1;38326:18:0;38347:27;:10;38283:32;38347:14;:27::i;:::-;38426:4;38410:22;;;;:7;:22;;;;;;38326:48;;-1:-1:-1;38410:38:0;;38326:48;38410:26;:38::i;:::-;38401:4;38385:22;;;;:7;:22;;;;;;;;:63;;;;38463:11;:26;;;;;;38459:108;;;38545:4;38529:22;;;;:7;:22;;;;;;:38;;38556:10;38529:26;:38::i;:::-;38520:4;38504:22;;;;:7;:22;;;;;:63;38459:108;38272:303;;38220:355;:::o;36008:147::-;36086:7;;:17;;36098:4;36086:11;:17::i;:::-;36076:7;:27;36127:10;;:20;;36142:4;36127:14;:20::i;:::-;36114:10;:33;-1:-1:-1;;36008:147:0:o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1516:156::-;1582:20;;1642:4;1631:16;;1621:27;;1611:55;;1662:1;1659;1652:12;1611:55;1516:156;;;:::o;1677:322::-;1748:6;1756;1764;1817:2;1805:9;1796:7;1792:23;1788:32;1785:52;;;1833:1;1830;1823:12;1785:52;1856:27;1873:9;1856:27;:::i;:::-;1846:37;;1902:36;1934:2;1923:9;1919:18;1902:36;:::i;:::-;1892:46;;1957:36;1989:2;1978:9;1974:18;1957:36;:::i;:::-;1947:46;;1677:322;;;;;:::o;2421:456::-;2498:6;2506;2514;2567:2;2555:9;2546:7;2542:23;2538:32;2535:52;;;2583:1;2580;2573:12;2535:52;2622:9;2609:23;2641:31;2666:5;2641:31;:::i;:::-;2691:5;-1:-1:-1;2748:2:1;2733:18;;2720:32;2761:33;2720:32;2761:33;:::i;:::-;2421:456;;2813:7;;-1:-1:-1;;;2867:2:1;2852:18;;;;2839:32;;2421:456::o;3227:160::-;3292:20;;3348:13;;3341:21;3331:32;;3321:60;;3377:1;3374;3367:12;3392:248;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3557:26;3573:9;3557:26;:::i;3645:180::-;3704:6;3757:2;3745:9;3736:7;3732:23;3728:32;3725:52;;;3773:1;3770;3763:12;3725:52;-1:-1:-1;3796:23:1;;3645:180;-1:-1:-1;3645:180:1:o;4019:248::-;4084:6;4092;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4197:9;4184:23;4174:33;;4226:35;4257:2;4246:9;4242:18;4226:35;:::i;:::-;4216:45;;4019:248;;;;;:::o;4740:535::-;4832:6;4840;4848;4856;4864;4872;4925:3;4913:9;4904:7;4900:23;4896:33;4893:53;;;4942:1;4939;4932:12;4893:53;4965:27;4982:9;4965:27;:::i;:::-;4955:37;;5011:36;5043:2;5032:9;5028:18;5011:36;:::i;:::-;5001:46;;5066:36;5098:2;5087:9;5083:18;5066:36;:::i;:::-;5056:46;;5121:36;5153:2;5142:9;5138:18;5121:36;:::i;:::-;5111:46;;5176:37;5208:3;5197:9;5193:19;5176:37;:::i;:::-;5166:47;;5232:37;5264:3;5253:9;5249:19;5232:37;:::i;:::-;5222:47;;4740:535;;;;;;;;:::o;5280:180::-;5336:6;5389:2;5377:9;5368:7;5364:23;5360:32;5357:52;;;5405:1;5402;5395:12;5357:52;5428:26;5444:9;5428:26;:::i;5689:388::-;5757:6;5765;5818:2;5806:9;5797:7;5793:23;5789:32;5786:52;;;5834:1;5831;5824:12;5786:52;5873:9;5860:23;5892:31;5917:5;5892:31;:::i;:::-;5942:5;-1:-1:-1;5999:2:1;5984:18;;5971:32;6012:33;5971:32;6012:33;:::i;:::-;6064:7;6054:17;;;5689:388;;;;;:::o;6082:380::-;6161:1;6157:12;;;;6204;;;6225:61;;6279:4;6271:6;6267:17;6257:27;;6225:61;6332:2;6324:6;6321:14;6301:18;6298:38;6295:161;;6378:10;6373:3;6369:20;6366:1;6359:31;6413:4;6410:1;6403:15;6441:4;6438:1;6431:15;6295:161;;6082:380;;;:::o;6467:356::-;6669:2;6651:21;;;6688:18;;;6681:30;6747:34;6742:2;6727:18;;6720:62;6814:2;6799:18;;6467:356::o;7591:127::-;7652:10;7647:3;7643:20;7640:1;7633:31;7683:4;7680:1;7673:15;7707:4;7704:1;7697:15;7723:127;7784:10;7779:3;7775:20;7772:1;7765:31;7815:4;7812:1;7805:15;7839:4;7836:1;7829:15;7855:125;7895:4;7923:1;7920;7917:8;7914:34;;;7928:18;;:::i;:::-;-1:-1:-1;7965:9:1;;7855:125::o;7985:127::-;8046:10;8041:3;8037:20;8034:1;8027:31;8077:4;8074:1;8067:15;8101:4;8098:1;8091:15;8117:135;8156:3;8177:17;;;8174:43;;8197:18;;:::i;:::-;-1:-1:-1;8244:1:1;8233:13;;8117:135::o;9793:168::-;9833:7;9899:1;9895;9891:6;9887:14;9884:1;9881:21;9876:1;9869:9;9862:17;9858:45;9855:71;;;9906:18;;:::i;:::-;-1:-1:-1;9946:9:1;;9793:168::o;9966:217::-;10006:1;10032;10022:132;;10076:10;10071:3;10067:20;10064:1;10057:31;10111:4;10108:1;10101:15;10139:4;10136:1;10129:15;10022:132;-1:-1:-1;10168:9:1;;9966:217::o;13380:128::-;13420:3;13451:1;13447:6;13444:1;13441:13;13438:39;;;13457:18;;:::i;:::-;-1:-1:-1;13493:9:1;;13380:128::o;14272:204::-;14310:3;14346:4;14343:1;14339:12;14378:4;14375:1;14371:12;14413:3;14407:4;14403:14;14398:3;14395:23;14392:49;;;14421:18;;:::i;:::-;14457:13;;14272:204;-1:-1:-1;;;14272:204:1:o;14481:238::-;14519:7;14559:4;14556:1;14552:12;14591:4;14588:1;14584:12;14651:3;14645:4;14641:14;14636:3;14633:23;14626:3;14619:11;14612:19;14608:49;14605:75;;;14660:18;;:::i;:::-;14700:13;;14481:238;-1:-1:-1;;;14481:238:1:o;14856:251::-;14926:6;14979:2;14967:9;14958:7;14954:23;14950:32;14947:52;;;14995:1;14992;14985:12;14947:52;15027:9;15021:16;15046:31;15071:5;15046:31;:::i;15112:980::-;15374:4;15422:3;15411:9;15407:19;15453:6;15442:9;15435:25;15479:2;15517:6;15512:2;15501:9;15497:18;15490:34;15560:3;15555:2;15544:9;15540:18;15533:31;15584:6;15619;15613:13;15650:6;15642;15635:22;15688:3;15677:9;15673:19;15666:26;;15727:2;15719:6;15715:15;15701:29;;15748:1;15758:195;15772:6;15769:1;15766:13;15758:195;;;15837:13;;-1:-1:-1;;;;;15833:39:1;15821:52;;15928:15;;;;15893:12;;;;15869:1;15787:9;15758:195;;;-1:-1:-1;;;;;;;16009:32:1;;;;16004:2;15989:18;;15982:60;-1:-1:-1;;;16073:3:1;16058:19;16051:35;15970:3;15112:980;-1:-1:-1;;;15112:980:1:o;16709:306::-;16797:6;16805;16813;16866:2;16854:9;16845:7;16841:23;16837:32;16834:52;;;16882:1;16879;16872:12;16834:52;16911:9;16905:16;16895:26;;16961:2;16950:9;16946:18;16940:25;16930:35;;17005:2;16994:9;16990:18;16984:25;16974:35;;16709:306;;;;;:::o

Swarm Source

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