ETH Price: $3,397.80 (-1.12%)
Gas: 2 Gwei

Token

Shuna Inuverse (SHUNAV)
 

Overview

Max Total Supply

100,000,000,000,000 SHUNAV

Holders

1,150

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Filtered by Token Holder
Bulksender.app
Balance
4,498,032,681.152214865 SHUNAV

Value
$0.00
0xd1917932a7db6af687b523d5db5d7f5c2734763f
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:
ShunaInuverse

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 12 of 12: ShunaInuverse.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: Apache-2.0

import "./SafeMath.sol";
import "./Address.sol";
import "./RewardsToken.sol";
import "./IUniswapV2Factory.sol";
import "./IUniswapV2Router.sol";
import "./IRewardsTracker.sol";

contract ShunaInuverse is RewardsToken {
    using SafeMath for uint256;
    using Address for address;
    
    // Supply, limits and fees
    uint256 private constant REWARDS_TRACKER_IDENTIFIER = 1;
    uint256 private constant TOTAL_SUPPLY = 100000000000000 * (10**9);
    uint256 private constant PLATFORM_FEE = 75; //  0.75%

    uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); // 2%

    uint256 public devFee = 700; // 7%
    uint256 private _previousDevFee = devFee;
    
    uint256 public rewardsFee = 300; // 3%
    uint256 private _previousRewardsFee = rewardsFee;

    uint256 public launchSellFee = 925; // 9.25%
    uint256 private _previousLaunchSellFee = launchSellFee;

    address payable private _platformWalletAddress =
        payable(0x037c98c77B450412cDB11EA2996630618224D018);
    address payable private _devWalletAddress =
        payable(0xb45989b2dCAb629C2e00ffAF8117243F17cFF8aB);

    uint256 public launchSellFeeDeadline = 0;

    IRewardsTracker private _rewardsTracker;
    
    // Exclusions
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;
    
    // Token -> ETH swap support
    IUniswapV2Router public uniswapV2Router;
    address public uniswapV2Pair;

    bool currentlySwapping;
    bool public swapAndRedirectEthFeesEnabled = true;

    uint256 private minTokensBeforeSwap = 100000000000 * 10**9;

    // Events and modifiers
    event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
    event SwapAndRedirectEthFeesUpdated(bool enabled);
    event OnSwapAndRedirectEthFees(
        uint256 tokensSwapped,
        uint256 ethToDevWallet
    );
    event MaxTxAmountUpdated(uint256 maxTxAmount);
    event ExcludeFromFees(address wallet);
    event IncludeInFees(address wallet);
    event DevWalletUpdated(address newDevWallet);
    event RewardsTrackerUpdated(address newRewardsTracker);
    event RouterUpdated(address newRouterAddress);
    event FeesChanged(uint256 newDevFee, uint256 newRewardsFee);
    event LaunchFeeUpdated(uint256 newLaunchSellFee);

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

    constructor() ERC20("Shuna Inuverse", "SHUNAV") {
        IUniswapV2Router _uniswapV2Router = IUniswapV2Router(
            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;
        
        // mint supply
        _mint(owner(), TOTAL_SUPPLY);

        // exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        
        // internal exclude from max tx
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        
        // exclude from rewards
        excludeFromRewards(address(this));
        excludeFromRewards(address(0xdead));
        excludeFromRewards(uniswapV2Pair);

        // sell penalty for the first 24 hours
        launchSellFeeDeadline = block.timestamp + 1 days;

        emit Transfer(address(0), _msgSender(), TOTAL_SUPPLY);
    }
    
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        if (
            !_isExcludedFromMaxTx[from] &&
            !_isExcludedFromMaxTx[to] // by default false
        ) {
            require(
                amount <= maxTxAmount,
                "Transfer amount exceeds the maxTxAmount"
            );
        }

        // sell penalty
        uint256 baseDevFee = devFee;
        if (launchSellFeeDeadline >= block.timestamp && to == uniswapV2Pair) {
            devFee = devFee.add(launchSellFee);
        }

        // start swap to ETH
        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap;
        if (
            overMinTokenBalance &&
            !currentlySwapping &&
            from != uniswapV2Pair &&
            swapAndRedirectEthFeesEnabled
        ) {
            // add dev fee
            swapAndRedirectEthFees(contractTokenBalance);
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            removeAllFee();
        }

        (uint256 tTransferAmount, uint256 tFee) = _getValues(amount);
        _balances[from] = _balances[from].sub(amount);
        _balances[to] = _balances[to].add(tTransferAmount);

        _takeFee(tFee);

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            restoreAllFee();
        }

        // restore dev fee
        devFee = baseDevFee;

        emit Transfer(from, to, tTransferAmount);
    }

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

    function _getValues(uint256 tAmount)
        private
        view
        returns (uint256, uint256)
    {
        uint256 tFee = calculateFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee);
        return (tTransferAmount, tFee);
    }

    function _takeFee(uint256 fee) private {
        _balances[address(this)] = _balances[address(this)].add(fee);
    }

    function calculateFee(uint256 _amount)
        private
        view
        returns (uint256)
    {
        uint256 totalFee = devFee.add(rewardsFee).add(PLATFORM_FEE);
        return _amount.mul(totalFee).div(10000);
    }

    function removeAllFee() private {
        if (devFee == 0 || rewardsFee == 0) return;

        _previousDevFee = devFee;
        _previousRewardsFee = rewardsFee;

        devFee = 0;
        rewardsFee = 0;
    }

    function restoreAllFee() private {
        devFee = _previousDevFee;
        rewardsFee = _previousRewardsFee;
    }

    function swapAndRedirectEthFees(uint256 contractTokenBalance)
        private
        lockTheSwap
    {
        uint256 totalRedirectFee = devFee.add(rewardsFee).add(PLATFORM_FEE);
        if (totalRedirectFee == 0) return;
        
        // capture the contract's current ETH balance.
        // this is so that we can capture exactly the amount of ETH that the
        // swap creates, and not make the fee events include any ETH that
        // has been manually sent to the contract
        uint256 initialBalance = address(this).balance;

        // swap tokens for ETH
        swapTokensForEth(contractTokenBalance);

        uint256 newBalance = address(this).balance.sub(initialBalance);

        if (newBalance > 0) {
            // send to platform wallet
            uint256 platformBalance = newBalance.mul(PLATFORM_FEE).div(totalRedirectFee);
            sendEthToWallet(_platformWalletAddress, platformBalance);

            //
            // send to rewards wallet
            //
            uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee);
            if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) {
                try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {}
            }
            
            //
            // send to dev wallet
            //
            uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee);
            sendEthToWallet(_devWalletAddress, devBalance);

            emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance);
        }
    }

    function sendEthToWallet(address wallet, uint256 amount) private {
        if (amount > 0) {
            payable(wallet).transfer(amount);
        }
    }

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    // for 0.5% input 5, for 1% input 10
    function setMaxTxPercent(uint256 newMaxTx) public onlyOwner {
        require(newMaxTx >= 5, "Max TX should be above 0.5%");
        maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000);
        emit MaxTxAmountUpdated(maxTxAmount);
    }
    
    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function excludeFromFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = true;
        emit ExcludeFromFees(account);
    }

    function includeInFee(address account) external onlyOwner {
        _isExcludedFromFee[account] = false;
        emit IncludeInFees(account);
    }

    function setFees(uint256 newDevFee, uint256 newRewardsFee) external onlyOwner {
        require(newDevFee <= 10 && newRewardsFee <= 10, "Fees exceed maximum allowed value");
        devFee = newDevFee;
        rewardsFee = newRewardsFee;
        emit FeesChanged(newDevFee, newRewardsFee);
    }

    function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner {
        require(newLaunchSellFee <= 25, "Maximum launch sell fee is 25%");
        launchSellFee = newLaunchSellFee;
        emit LaunchFeeUpdated(newLaunchSellFee);
    }

    function _setDevWallet(address payable newDevWallet)
        external
        onlyOwner
    {
        _devWalletAddress = newDevWallet;
        emit DevWalletUpdated(newDevWallet);
    }
    
    function _setRewardsTracker(address payable newRewardsTracker)
        external
        onlyOwner
    {
        _rewardsTracker = IRewardsTracker(newRewardsTracker);
        emit RewardsTrackerUpdated(newRewardsTracker);
    }

    function setRouterAddress(address newRouter) external onlyOwner {
        IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter);
        uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory())
            .createPair(address(this), _newUniswapRouter.WETH());
        uniswapV2Router = _newUniswapRouter;
        emit RouterUpdated(newRouter);
    }

    function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner {
        swapAndRedirectEthFeesEnabled = enabled;
        emit SwapAndRedirectEthFeesUpdated(enabled);
    }

    function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner {
        minTokensBeforeSwap = minTokens * 10**9;
        emit MinTokensBeforeSwapUpdated(minTokens);
    }
    
    // emergency claim functions
    function manualSwap() external onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function manualSend() external onlyOwner {
        uint256 contractEthBalance = address(this).balance;
        sendEthToWallet(_devWalletAddress, contractEthBalance);
    }
}

File 1 of 12: Address.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

/**
 * @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.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    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);
            }
        }
    }
}

File 2 of 12: Context.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return 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;
    }
}

File 3 of 12: ERC20.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";
import "./SafeMath.sol";
import "./Address.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    using Address for address;

    mapping(address => uint256) internal _balances;

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

    uint256 internal _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

File 4 of 12: IERC20.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

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

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

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

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

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

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

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

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

File 5 of 12: IERC20Metadata.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

import "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 6 of 12: IRewardsTracker.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: Apache-2.0

interface IRewardsTracker {
    
    function addAllocation(uint identifier) external payable;
}

File 7 of 12: IUniswapV2Factory.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

interface IUniswapV2Factory {

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

File 8 of 12: IUniswapV2Router.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

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

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

File 9 of 12: Ownable.sol
pragma solidity 0.8.4;

// SPDX-License-Identifier: MIT

import "./Context.sol";

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

    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

File 10 of 12: RewardsToken.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: Apache-2.0

import "./ERC20.sol";
import "./Ownable.sol";

abstract contract RewardsToken is ERC20, Ownable {

    address[] private excludedFromRewards;
    mapping(address => bool) private isAddressExcluded;
    
    event ExcludeFromRewards(address wallet);
    event IncludeInRewards(address wallet);
    
    function deleteExcluded(uint index) internal {
        require(index < excludedFromRewards.length, "Index is greater than array length");
        excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1];
        excludedFromRewards.pop();
    }
    
    function getExcludedBalances() internal view returns (uint256) {
        uint256 totalExcludedHoldings = 0;
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            totalExcludedHoldings += balanceOf(excludedFromRewards[i]);
        }
        return totalExcludedHoldings;
    }
    
    function excludeFromRewards(address wallet) public onlyOwner {
        require(!isAddressExcluded[wallet], "Address is already excluded from rewards");
        excludedFromRewards.push(wallet);
        isAddressExcluded[wallet] = true;
        emit ExcludeFromRewards(wallet);
    }
    
    function includeInRewards(address wallet) external onlyOwner {
        require(isAddressExcluded[wallet], "Address is not excluded from rewards");
        for (uint i = 0; i < excludedFromRewards.length; i++) {
            if (excludedFromRewards[i] == wallet) {
                isAddressExcluded[wallet] = false;
                deleteExcluded(i);
                break;
            }
        }
        emit IncludeInRewards(wallet);
    }
    
    function isExcludedFromRewards(address wallet) external view returns (bool) {
        return isAddressExcluded[wallet];
    }
    
    function getAllExcludedFromRewards() external view returns (address[] memory) {
        return excludedFromRewards;
    }
    
    function getRewardsSupply() public view returns (uint256) {
        return _totalSupply - getExcludedBalances();
    }
}

File 11 of 12: SafeMath.sol
pragma solidity ^0.8.4;

// SPDX-License-Identifier: MIT

/**
 * @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) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

Contract 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":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","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":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","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 payable","name":"newDevWallet","type":"address"}],"name":"_setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"_setRewardsTracker","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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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 IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052620000446103e862000030600269152d02c7e14af6800000620004b860201b6200156e1790919060201c565b6200054c60201b620015f41790919060201c565b6008556102bc6009819055600a5561012c600b819055600c5561039d600d819055600e55600f80546001600160a01b031990811673037c98c77b450412cdb11ea2996630618224d018179091556010805490911673b45989b2dcab629c2e00ffaf8117243f17cff8ab17905560006011556016805460ff60a81b1916600160a81b17905568056bc75e2d63100000601755348015620000e257600080fd5b50604080518082018252600e81526d5368756e6120496e75766572736560901b60208083019182528351808501909452600684526529a42aa720ab60d11b908401528151919291620001379160039162000896565b5080516200014d90600490602084019062000896565b5050506000620001626200059660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020357600080fd5b505afa15801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e91906200093c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028757600080fd5b505afa1580156200029c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c291906200093c565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200030b57600080fd5b505af115801562000320573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034691906200093c565b601680546001600160a01b03199081166001600160a01b0393841617909155601580549091168383161790556005546200038c911669152d02c7e14af68000006200059a565b600160136000620003a56005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526013909252812080549092166001908117909255601490620003fe6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553080825260149093522080549092166001179091556200044a9062000685565b6200045761dead62000685565b6016546200046e906001600160a01b031662000685565b6200047d4262015180620009bb565b60115560405169152d02c7e14af68000008152339060009060008051602062002f398339815191529060200160405180910390a35062000a6c565b600082620004c95750600062000546565b6000620004d78385620009f7565b905082620004e68583620009d6565b14620005435760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200054383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007f760201b60201c565b3390565b6001600160a01b038216620005f25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200053a565b6200060e816002546200083360201b620016361790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620006419183906200163662000833821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062002f39833981519152910160405180910390a35050565b6005546001600160a01b03163314620006e15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200053a565b6001600160a01b03811660009081526007602052604090205460ff16156200075d5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016200053a565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b600081836200081b5760405162461bcd60e51b81526004016200053a919062000965565b5060006200082a8486620009d6565b95945050505050565b600080620008428385620009bb565b905083811015620005435760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200053a565b828054620008a49062000a19565b90600052602060002090601f016020900481019282620008c8576000855562000913565b82601f10620008e357805160ff191683800117855562000913565b8280016001018555821562000913579182015b8281111562000913578251825591602001919060010190620008f6565b506200092192915062000925565b5090565b5b8082111562000921576000815560010162000926565b6000602082840312156200094e578081fd5b81516001600160a01b038116811462000543578182fd5b6000602080835283518082850152825b81811015620009935785810183015185820160400152820162000975565b81811115620009a55783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115620009d157620009d162000a56565b500190565b600082620009f257634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000a145762000a1462000a56565b500290565b600181811c9082168062000a2e57607f821691505b6020821081141562000a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6124bd8062000a7c6000396000f3fe60806040526004361061023f5760003560e01c8063549593631161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106d1578063ea2f0b3714610717578063f2fde38b14610737578063f429389014610757578063fffa1dd91461076c57600080fd5b8063a9059cbb14610639578063ada46d0a14610659578063af01f2b21461067b578063b609995e14610691578063d543dbeb146106b157600080fd5b80638421b507116100f25780638421b507146105b05780638c0b5e22146105d05780638da5cb5b146105e657806395d89b4114610604578063a457c2d71461061957600080fd5b806354959363146105195780635c7b22581461052f5780636827e7641461054f57806370a0823114610565578063715018a61461059b57600080fd5b806326b6308d116101bc578063437823ec11610180578063437823ec1461046b57806348a464731461048b57806349bd5a5e146104ab57806351bc3c85146104cb5780635342acb4146104e057600080fd5b806326b6308d146103d95780632bb14e1d146103f9578063313ce5671461040f578063395093511461042b57806341cb87fc1461044b57600080fd5b8063111e037611610203578063111e037614610321578063113201fa146103415780631694505e1461036257806318160ddd1461039a57806323b872dd146103b957600080fd5b806306fdde031461024b578063095ea7b3146102765780630a1f8ea8146102a65780630b78f9c0146102c85780630e832273146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610781565b60405161026d919061228d565b60405180910390f35b34801561028257600080fd5b506102966102913660046121b3565b610813565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c1366004612103565b61082a565b005b3480156102d457600080fd5b506102c66102e3366004612216565b6108b2565b3480156102f457600080fd5b50610296610303366004612103565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032d57600080fd5b506102c661033c366004612103565b61098c565b34801561034d57600080fd5b5060165461029690600160a81b900460ff1681565b34801561036e57600080fd5b50601554610382906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156103a657600080fd5b506002545b60405190815260200161026d565b3480156103c557600080fd5b506102966103d4366004612173565b610ac4565b3480156103e557600080fd5b506102c66103f43660046121de565b610b2d565b34801561040557600080fd5b506103ab600b5481565b34801561041b57600080fd5b506040516009815260200161026d565b34801561043757600080fd5b506102966104463660046121b3565b610ba4565b34801561045757600080fd5b506102c6610466366004612103565b610bda565b34801561047757600080fd5b506102c6610486366004612103565b610dd8565b34801561049757600080fd5b506102c66104a63660046121fe565b610e56565b3480156104b757600080fd5b50601654610382906001600160a01b031681565b3480156104d757600080fd5b506102c6610ec1565b3480156104ec57600080fd5b506102966104fb366004612103565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561052557600080fd5b506103ab600d5481565b34801561053b57600080fd5b506102c661054a366004612103565b610f07565b34801561055b57600080fd5b506103ab60095481565b34801561057157600080fd5b506103ab610580366004612103565b6001600160a01b031660009081526020819052604090205490565b3480156105a757600080fd5b506102c6610f7f565b3480156105bc57600080fd5b506102c66105cb3660046121fe565b610ff3565b3480156105dc57600080fd5b506103ab60085481565b3480156105f257600080fd5b506005546001600160a01b0316610382565b34801561061057600080fd5b506102606110a3565b34801561062557600080fd5b506102966106343660046121b3565b6110b2565b34801561064557600080fd5b506102966106543660046121b3565b611101565b34801561066557600080fd5b5061066e61110e565b60405161026d919061227a565b34801561068757600080fd5b506103ab60115481565b34801561069d57600080fd5b506102c66106ac366004612103565b61116f565b3480156106bd57600080fd5b506102c66106cc3660046121fe565b6112da565b3480156106dd57600080fd5b506103ab6106ec36600461213b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072357600080fd5b506102c6610732366004612103565b6113aa565b34801561074357600080fd5b506102c6610752366004612103565b611425565b34801561076357600080fd5b506102c6611510565b34801561077857600080fd5b506103ab611552565b606060038054610790906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc906123bf565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b6000610820338484611695565b5060015b92915050565b6005546001600160a01b0316331461085d5760405162461bcd60e51b8152600401610854906122e0565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb906020015b60405180910390a150565b6005546001600160a01b031633146108dc5760405162461bcd60e51b8152600401610854906122e0565b600a82111580156108ee5750600a8111155b6109445760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610854565b6009829055600b81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109b65760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b03811660009081526007602052604090205460ff1615610a305760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610854565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691016108a7565b6000610ad18484846117b9565b610b238433610b1e8560405180606001604052806028815260200161243b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611a8b565b611695565b5060019392505050565b6005546001600160a01b03163314610b575760405162461bcd60e51b8152600401610854906122e0565b60168054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9906108a790831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610820918590610b1e9086611636565b6005546001600160a01b03163314610c045760405162461bcd60e51b8152600401610854906122e0565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a919061211f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610cc257600080fd5b505afa158015610cd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfa919061211f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610d4257600080fd5b505af1158015610d56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7a919061211f565b601680546001600160a01b03199081166001600160a01b03938416179091556015805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8090602001610980565b6005546001600160a01b03163314610e025760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b038116600081815260136020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d93691016108a7565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610854906122e0565b610e8e81633b9aca00612389565b6017556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00906020016108a7565b6005546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610854906122e0565b30600090815260208190526040902054610f0481611ac5565b50565b6005546001600160a01b03163314610f315760405162461bcd60e51b8152600401610854906122e0565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a906020016108a7565b6005546001600160a01b03163314610fa95760405162461bcd60e51b8152600401610854906122e0565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610854906122e0565b601981111561106e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610854565b600d8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c5906020016108a7565b606060048054610790906123bf565b60006108203384610b1e85604051806060016040528060258152602001612463602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611a8b565b60006108203384846117b9565b6060600680548060200260200160405190810160405280929190818152602001828054801561080957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611148575050505050905090565b6005546001600160a01b031633146111995760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b03811660009081526007602052604090205460ff1661120d5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610854565b60005b6006548110156112a057816001600160a01b03166006828154811061124557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561128e576001600160a01b0382166000908152600760205260409020805460ff1916905561128981611c4a565b6112a0565b80611298816123f4565b915050611210565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d589594334906020016108a7565b6005546001600160a01b031633146113045760405162461bcd60e51b8152600401610854906122e0565b60058110156113555760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610854565b6113756103e861136f69152d02c7e14af68000008461156e565b906115f4565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf906020016108a7565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d91016108a7565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610854906122e0565b6010544790610f04906001600160a01b031682611d80565b600061155c611dc2565b60025461156991906123a8565b905090565b60008261157d57506000610824565b60006115898385612389565b9050826115968583612369565b146115ed5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610854565b9392505050565b60006115ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e3d565b6000806116438385612351565b9050838110156115ed5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610854565b6001600160a01b0383166116f75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610854565b6001600160a01b0382166117585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610854565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526014602052604090205460ff161580156117fb57506001600160a01b03821660009081526014602052604090205460ff16155b15611862576008548111156118625760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610854565b600954601154421180159061188457506016546001600160a01b038481169116145b1561189c57600d5460095461189891611636565b6009555b30600090815260208190526040902054601754811080159081906118ca5750601654600160a01b900460ff16155b80156118e457506016546001600160a01b03878116911614155b80156118f95750601654600160a81b900460ff165b156119075761190782611e6b565b6001600160a01b03861660009081526013602052604090205460ff168061194657506001600160a01b03851660009081526013602052604090205460ff165b156119535761195361200f565b60008061195f8661203c565b6001600160a01b038a1660009081526020819052604090205491935091506119879087612063565b6001600160a01b03808a1660009081526020819052604080822093909355908916815220546119b69083611636565b6001600160a01b0388166000908152602081905260409020556119d8816120a5565b6001600160a01b03881660009081526013602052604090205460ff1680611a1757506001600160a01b03871660009081526013602052604090205460ff165b15611a2d57611a2d600a54600955600c54600b55565b84600981905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7991815260200190565b60405180910390a35050505050505050565b60008184841115611aaf5760405162461bcd60e51b8152600401610854919061228d565b506000611abc84866123a8565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611b5c57600080fd5b505afa158015611b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b94919061211f565b81600181518110611bb557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601554611bdb9130911684611695565b60155460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c14908590600090869030904290600401612315565b600060405180830381600087803b158015611c2e57600080fd5b505af1158015611c42573d6000803e3d6000fd5b505050505050565b6006548110611ca65760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610854565b60068054611cb6906001906123a8565b81548110611cd457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611d0e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611d5b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015611dbe576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611dbc573d6000803e3d6000fd5b505b5050565b600080805b600654811015611e3757611e1960068281548110611df557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b611e239083612351565b915080611e2f816123f4565b915050611dc7565b50919050565b60008183611e5e5760405162461bcd60e51b8152600401610854919061228d565b506000611abc8486612369565b6016805460ff60a01b1916600160a01b179055600b54600954600091611e9e91604b91611e989190611636565b90611636565b905080611eab5750611fff565b47611eb583611ac5565b6000611ec14783612063565b90508015611ffb576000611eda8461136f84604b61156e565b600f54909150611ef3906001600160a01b031682611d80565b6000611f0e8561136f600b548661156e90919063ffffffff16565b9050600081118015611f2a57506012546001600160a01b031615155b15611f8a5760125460405163febd221b60e01b8152600160048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b158015611f7657600080fd5b505af193505050508015611f88575060015b505b6000611fa58661136f6009548761156e90919063ffffffff16565b601054909150611fbe906001600160a01b031682611d80565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506016805460ff60a01b19169055565b600954158061201e5750600b54155b1561202557565b60098054600a55600b8054600c5560009182905555565b600080600061204a846120d2565b905060006120588583612063565b959194509092505050565b60006115ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a8b565b306000908152602081905260409020546120bf9082611636565b3060009081526020819052604090205550565b6000806120f1604b611e98600b5460095461163690919063ffffffff16565b90506115ed61271061136f858461156e565b600060208284031215612114578081fd5b81356115ed81612425565b600060208284031215612130578081fd5b81516115ed81612425565b6000806040838503121561214d578081fd5b823561215881612425565b9150602083013561216881612425565b809150509250929050565b600080600060608486031215612187578081fd5b833561219281612425565b925060208401356121a281612425565b929592945050506040919091013590565b600080604083850312156121c5578182fd5b82356121d081612425565b946020939093013593505050565b6000602082840312156121ef578081fd5b813580151581146115ed578182fd5b60006020828403121561220f578081fd5b5035919050565b60008060408385031215612228578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b8381101561226f5781516001600160a01b03168752958201959082019060010161224a565b509495945050505050565b6020815260006115ed6020830184612237565b6000602080835283518082850152825b818110156122b95785810183015185820160400152820161229d565b818111156122ca5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a06040820152600061233460a0830186612237565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123645761236461240f565b500190565b60008261238457634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156123a3576123a361240f565b500290565b6000828210156123ba576123ba61240f565b500390565b600181811c908216806123d357607f821691505b60208210811415611e3757634e487b7160e01b600052602260045260246000fd5b60006000198214156124085761240861240f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f0457600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f81afa5701cee2f7bdcc0444a8050c1dbe400002f1bfda813f36ec1747ced95764736f6c63430008040033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061023f5760003560e01c8063549593631161012e578063a9059cbb116100ab578063dd62ed3e1161006f578063dd62ed3e146106d1578063ea2f0b3714610717578063f2fde38b14610737578063f429389014610757578063fffa1dd91461076c57600080fd5b8063a9059cbb14610639578063ada46d0a14610659578063af01f2b21461067b578063b609995e14610691578063d543dbeb146106b157600080fd5b80638421b507116100f25780638421b507146105b05780638c0b5e22146105d05780638da5cb5b146105e657806395d89b4114610604578063a457c2d71461061957600080fd5b806354959363146105195780635c7b22581461052f5780636827e7641461054f57806370a0823114610565578063715018a61461059b57600080fd5b806326b6308d116101bc578063437823ec11610180578063437823ec1461046b57806348a464731461048b57806349bd5a5e146104ab57806351bc3c85146104cb5780635342acb4146104e057600080fd5b806326b6308d146103d95780632bb14e1d146103f9578063313ce5671461040f578063395093511461042b57806341cb87fc1461044b57600080fd5b8063111e037611610203578063111e037614610321578063113201fa146103415780631694505e1461036257806318160ddd1461039a57806323b872dd146103b957600080fd5b806306fdde031461024b578063095ea7b3146102765780630a1f8ea8146102a65780630b78f9c0146102c85780630e832273146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610781565b60405161026d919061228d565b60405180910390f35b34801561028257600080fd5b506102966102913660046121b3565b610813565b604051901515815260200161026d565b3480156102b257600080fd5b506102c66102c1366004612103565b61082a565b005b3480156102d457600080fd5b506102c66102e3366004612216565b6108b2565b3480156102f457600080fd5b50610296610303366004612103565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032d57600080fd5b506102c661033c366004612103565b61098c565b34801561034d57600080fd5b5060165461029690600160a81b900460ff1681565b34801561036e57600080fd5b50601554610382906001600160a01b031681565b6040516001600160a01b03909116815260200161026d565b3480156103a657600080fd5b506002545b60405190815260200161026d565b3480156103c557600080fd5b506102966103d4366004612173565b610ac4565b3480156103e557600080fd5b506102c66103f43660046121de565b610b2d565b34801561040557600080fd5b506103ab600b5481565b34801561041b57600080fd5b506040516009815260200161026d565b34801561043757600080fd5b506102966104463660046121b3565b610ba4565b34801561045757600080fd5b506102c6610466366004612103565b610bda565b34801561047757600080fd5b506102c6610486366004612103565b610dd8565b34801561049757600080fd5b506102c66104a63660046121fe565b610e56565b3480156104b757600080fd5b50601654610382906001600160a01b031681565b3480156104d757600080fd5b506102c6610ec1565b3480156104ec57600080fd5b506102966104fb366004612103565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561052557600080fd5b506103ab600d5481565b34801561053b57600080fd5b506102c661054a366004612103565b610f07565b34801561055b57600080fd5b506103ab60095481565b34801561057157600080fd5b506103ab610580366004612103565b6001600160a01b031660009081526020819052604090205490565b3480156105a757600080fd5b506102c6610f7f565b3480156105bc57600080fd5b506102c66105cb3660046121fe565b610ff3565b3480156105dc57600080fd5b506103ab60085481565b3480156105f257600080fd5b506005546001600160a01b0316610382565b34801561061057600080fd5b506102606110a3565b34801561062557600080fd5b506102966106343660046121b3565b6110b2565b34801561064557600080fd5b506102966106543660046121b3565b611101565b34801561066557600080fd5b5061066e61110e565b60405161026d919061227a565b34801561068757600080fd5b506103ab60115481565b34801561069d57600080fd5b506102c66106ac366004612103565b61116f565b3480156106bd57600080fd5b506102c66106cc3660046121fe565b6112da565b3480156106dd57600080fd5b506103ab6106ec36600461213b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072357600080fd5b506102c6610732366004612103565b6113aa565b34801561074357600080fd5b506102c6610752366004612103565b611425565b34801561076357600080fd5b506102c6611510565b34801561077857600080fd5b506103ab611552565b606060038054610790906123bf565b80601f01602080910402602001604051908101604052809291908181526020018280546107bc906123bf565b80156108095780601f106107de57610100808354040283529160200191610809565b820191906000526020600020905b8154815290600101906020018083116107ec57829003601f168201915b5050505050905090565b6000610820338484611695565b5060015b92915050565b6005546001600160a01b0316331461085d5760405162461bcd60e51b8152600401610854906122e0565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb906020015b60405180910390a150565b6005546001600160a01b031633146108dc5760405162461bcd60e51b8152600401610854906122e0565b600a82111580156108ee5750600a8111155b6109445760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b6064820152608401610854565b6009829055600b81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109b65760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b03811660009081526007602052604090205460ff1615610a305760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b6064820152608401610854565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691016108a7565b6000610ad18484846117b9565b610b238433610b1e8560405180606001604052806028815260200161243b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611a8b565b611695565b5060019392505050565b6005546001600160a01b03163314610b575760405162461bcd60e51b8152600401610854906122e0565b60168054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b9906108a790831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610820918590610b1e9086611636565b6005546001600160a01b03163314610c045760405162461bcd60e51b8152600401610854906122e0565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610c4257600080fd5b505afa158015610c56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c7a919061211f565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610cc257600080fd5b505afa158015610cd6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cfa919061211f565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610d4257600080fd5b505af1158015610d56573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d7a919061211f565b601680546001600160a01b03199081166001600160a01b03938416179091556015805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8090602001610980565b6005546001600160a01b03163314610e025760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b038116600081815260136020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d93691016108a7565b6005546001600160a01b03163314610e805760405162461bcd60e51b8152600401610854906122e0565b610e8e81633b9aca00612389565b6017556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c00906020016108a7565b6005546001600160a01b03163314610eeb5760405162461bcd60e51b8152600401610854906122e0565b30600090815260208190526040902054610f0481611ac5565b50565b6005546001600160a01b03163314610f315760405162461bcd60e51b8152600401610854906122e0565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a906020016108a7565b6005546001600160a01b03163314610fa95760405162461bcd60e51b8152600401610854906122e0565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461101d5760405162461bcd60e51b8152600401610854906122e0565b601981111561106e5760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c206665652069732032352500006044820152606401610854565b600d8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c5906020016108a7565b606060048054610790906123bf565b60006108203384610b1e85604051806060016040528060258152602001612463602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611a8b565b60006108203384846117b9565b6060600680548060200260200160405190810160405280929190818152602001828054801561080957602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611148575050505050905090565b6005546001600160a01b031633146111995760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b03811660009081526007602052604090205460ff1661120d5760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b6064820152608401610854565b60005b6006548110156112a057816001600160a01b03166006828154811061124557634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141561128e576001600160a01b0382166000908152600760205260409020805460ff1916905561128981611c4a565b6112a0565b80611298816123f4565b915050611210565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d589594334906020016108a7565b6005546001600160a01b031633146113045760405162461bcd60e51b8152600401610854906122e0565b60058110156113555760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e352500000000006044820152606401610854565b6113756103e861136f69152d02c7e14af68000008461156e565b906115f4565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf906020016108a7565b6005546001600160a01b031633146113d45760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b038116600081815260136020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d91016108a7565b6005546001600160a01b0316331461144f5760405162461bcd60e51b8152600401610854906122e0565b6001600160a01b0381166114b45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610854565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461153a5760405162461bcd60e51b8152600401610854906122e0565b6010544790610f04906001600160a01b031682611d80565b600061155c611dc2565b60025461156991906123a8565b905090565b60008261157d57506000610824565b60006115898385612389565b9050826115968583612369565b146115ed5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610854565b9392505050565b60006115ed83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e3d565b6000806116438385612351565b9050838110156115ed5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610854565b6001600160a01b0383166116f75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610854565b6001600160a01b0382166117585760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610854565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831660009081526014602052604090205460ff161580156117fb57506001600160a01b03821660009081526014602052604090205460ff16155b15611862576008548111156118625760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b6064820152608401610854565b600954601154421180159061188457506016546001600160a01b038481169116145b1561189c57600d5460095461189891611636565b6009555b30600090815260208190526040902054601754811080159081906118ca5750601654600160a01b900460ff16155b80156118e457506016546001600160a01b03878116911614155b80156118f95750601654600160a81b900460ff165b156119075761190782611e6b565b6001600160a01b03861660009081526013602052604090205460ff168061194657506001600160a01b03851660009081526013602052604090205460ff165b156119535761195361200f565b60008061195f8661203c565b6001600160a01b038a1660009081526020819052604090205491935091506119879087612063565b6001600160a01b03808a1660009081526020819052604080822093909355908916815220546119b69083611636565b6001600160a01b0388166000908152602081905260409020556119d8816120a5565b6001600160a01b03881660009081526013602052604090205460ff1680611a1757506001600160a01b03871660009081526013602052604090205460ff165b15611a2d57611a2d600a54600955600c54600b55565b84600981905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a7991815260200190565b60405180910390a35050505050505050565b60008184841115611aaf5760405162461bcd60e51b8152600401610854919061228d565b506000611abc84866123a8565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b0857634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601554604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611b5c57600080fd5b505afa158015611b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b94919061211f565b81600181518110611bb557634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601554611bdb9130911684611695565b60155460405163791ac94760e01b81526001600160a01b039091169063791ac94790611c14908590600090869030904290600401612315565b600060405180830381600087803b158015611c2e57600080fd5b505af1158015611c42573d6000803e3d6000fd5b505050505050565b6006548110611ca65760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b6064820152608401610854565b60068054611cb6906001906123a8565b81548110611cd457634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611d0e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611d5b57634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015611dbe576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611dbc573d6000803e3d6000fd5b505b5050565b600080805b600654811015611e3757611e1960068281548110611df557634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b611e239083612351565b915080611e2f816123f4565b915050611dc7565b50919050565b60008183611e5e5760405162461bcd60e51b8152600401610854919061228d565b506000611abc8486612369565b6016805460ff60a01b1916600160a01b179055600b54600954600091611e9e91604b91611e989190611636565b90611636565b905080611eab5750611fff565b47611eb583611ac5565b6000611ec14783612063565b90508015611ffb576000611eda8461136f84604b61156e565b600f54909150611ef3906001600160a01b031682611d80565b6000611f0e8561136f600b548661156e90919063ffffffff16565b9050600081118015611f2a57506012546001600160a01b031615155b15611f8a5760125460405163febd221b60e01b8152600160048201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b158015611f7657600080fd5b505af193505050508015611f88575060015b505b6000611fa58661136f6009548761156e90919063ffffffff16565b601054909150611fbe906001600160a01b031682611d80565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506016805460ff60a01b19169055565b600954158061201e5750600b54155b1561202557565b60098054600a55600b8054600c5560009182905555565b600080600061204a846120d2565b905060006120588583612063565b959194509092505050565b60006115ed83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a8b565b306000908152602081905260409020546120bf9082611636565b3060009081526020819052604090205550565b6000806120f1604b611e98600b5460095461163690919063ffffffff16565b90506115ed61271061136f858461156e565b600060208284031215612114578081fd5b81356115ed81612425565b600060208284031215612130578081fd5b81516115ed81612425565b6000806040838503121561214d578081fd5b823561215881612425565b9150602083013561216881612425565b809150509250929050565b600080600060608486031215612187578081fd5b833561219281612425565b925060208401356121a281612425565b929592945050506040919091013590565b600080604083850312156121c5578182fd5b82356121d081612425565b946020939093013593505050565b6000602082840312156121ef578081fd5b813580151581146115ed578182fd5b60006020828403121561220f578081fd5b5035919050565b60008060408385031215612228578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b8381101561226f5781516001600160a01b03168752958201959082019060010161224a565b509495945050505050565b6020815260006115ed6020830184612237565b6000602080835283518082850152825b818110156122b95785810183015185820160400152820161229d565b818111156122ca5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a06040820152600061233460a0830186612237565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123645761236461240f565b500190565b60008261238457634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156123a3576123a361240f565b500290565b6000828210156123ba576123ba61240f565b500390565b600181811c908216806123d357607f821691505b60208210811415611e3757634e487b7160e01b600052602260045260246000fd5b60006000198214156124085761240861240f565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f0457600080fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f81afa5701cee2f7bdcc0444a8050c1dbe400002f1bfda813f36ec1747ced95764736f6c63430008040033

Deployed Bytecode Sourcemap

243:11267:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4265:166;;;;;;;;;;-1:-1:-1;4265:166:2;;;;;:::i;:::-;;:::i;:::-;;;4404:14:12;;4397:22;4379:41;;4367:2;4352:18;4265:166:2;4334:92:12;9968:186:11;;;;;;;;;;-1:-1:-1;9968:186:11;;;;;:::i;:::-;;:::i;:::-;;9417:295;;;;;;;;;;-1:-1:-1;9417:295:11;;;;;:::i;:::-;;:::i;1694:125:9:-;;;;;;;;;;-1:-1:-1;1694:125:9;;;;;:::i;:::-;-1:-1:-1;;;;;1787:25:9;1764:4;1787:25;;;:17;:25;;;;;;;;;1694:125;952:282;;;;;;;;;;-1:-1:-1;952:282:9;;;;;:::i;:::-;;:::i;1548:48:11:-;;;;;;;;;;-1:-1:-1;1548:48:11;;;;-1:-1:-1;;;1548:48:11;;;;;;1440:39;;;;;;;;;;-1:-1:-1;1440:39:11;;;;-1:-1:-1;;;;;1440:39:11;;;;;;-1:-1:-1;;;;;3404:32:12;;;3386:51;;3374:2;3359:18;1440:39:11;3341:102:12;3256:106:2;;;;;;;;;;-1:-1:-1;3343:12:2;;3256:106;;;10493:25:12;;;10481:2;10466:18;3256:106:2;10448:76:12;4898:347:2;;;;;;;;;;-1:-1:-1;4898:347:2;;;;;:::i;:::-;;:::i;10768:184:11:-;;;;;;;;;;-1:-1:-1;10768:184:11;;;;;:::i;:::-;;:::i;739:31::-;;;;;;;;;;;;;;;;3636:90;;;;;;;;;;-1:-1:-1;3636:90:11;;3718:1;11511:36:12;;11499:2;11484:18;3636:90:11;11466:87:12;5640:215:2;;;;;;;;;;-1:-1:-1;5640:215:2;;;;;:::i;:::-;;:::i;10396:366:11:-;;;;;;;;;;-1:-1:-1;10396:366:11;;;;;:::i;:::-;;:::i;9108:150::-;;;;;;;;;;-1:-1:-1;9108:150:11;;;;;:::i;:::-;;:::i;10958:178::-;;;;;;;;;;-1:-1:-1;10958:178:11;;;;;:::i;:::-;;:::i;1485:28::-;;;;;;;;;;-1:-1:-1;1485:28:11;;;;-1:-1:-1;;;;;1485:28:11;;;11179:151;;;;;;;;;;;;;:::i;8978:124::-;;;;;;;;;;-1:-1:-1;8978:124:11;;;;;:::i;:::-;-1:-1:-1;;;;;9068:27:11;9045:4;9068:27;;;:18;:27;;;;;;;;;8978:124;837:34;;;;;;;;;;;;;;;;10164:226;;;;;;;;;;-1:-1:-1;10164:226:11;;;;;:::i;:::-;;:::i;649:27::-;;;;;;;;;;;;;;;;3420:125:2;;;;;;;;;;-1:-1:-1;3420:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3520:18:2;3494:7;3520:18;;;;;;;;;;;;3420:125;1696:147:8;;;;;;;;;;;;;:::i;9718:244:11:-;;;;;;;;;;-1:-1:-1;9718:244:11;;;;;:::i;:::-;;:::i;578:58::-;;;;;;;;;;;;;;;;1073:77:8;;;;;;;;;;-1:-1:-1;1137:6:8;;-1:-1:-1;;;;;1137:6:8;1073:77;;2379:102:2;;;;;;;;;;;;;:::i;6342:266::-;;;;;;;;;;-1:-1:-1;6342:266:2;;;;;:::i;:::-;;:::i;3748:172::-;;;;;;;;;;-1:-1:-1;3748:172:2;;;;;:::i;:::-;;:::i;1829:121:9:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1171:40:11:-;;;;;;;;;;;;;;;;1244:440:9;;;;;;;;;;-1:-1:-1;1244:440:9;;;;;:::i;:::-;;:::i;8732:236:11:-;;;;;;;;;;-1:-1:-1;8732:236:11;;;;;:::i;:::-;;:::i;3978:149:2:-;;;;;;;;;;-1:-1:-1;3978:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4093:18:2;;;4067:7;4093:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3978:149;9264:147:11;;;;;;;;;;-1:-1:-1;9264:147:11;;;;;:::i;:::-;;:::i;1992:276:8:-;;;;;;;;;;-1:-1:-1;1992:276:8;;;;;:::i;:::-;;:::i;11336:172:11:-;;;;;;;;;;;;;:::i;1960:118:9:-;;;;;;;;;;;;;:::i;2168:98:2:-;2222:13;2254:5;2247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98;:::o;4265:166::-;4348:4;4364:39;169:10:1;4387:7:2;4396:6;4364:8;:39::i;:::-;-1:-1:-1;4420:4:2;4265:166;;;;;:::o;9968:186:11:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;;;;;;;;;10070:17:11::1;:32:::0;;-1:-1:-1;;;;;;10070:32:11::1;-1:-1:-1::0;;;;;10070:32:11;::::1;::::0;;::::1;::::0;;;10117:30:::1;::::0;3386:51:12;;;10117:30:11::1;::::0;3374:2:12;3359:18;10117:30:11::1;;;;;;;;9968:186:::0;:::o;9417:295::-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;9526:2:11::1;9513:9;:15;;:38;;;;;9549:2;9532:13;:19;;9513:38;9505:84;;;::::0;-1:-1:-1;;;9505:84:11;;7806:2:12;9505:84:11::1;::::0;::::1;7788:21:12::0;7845:2;7825:18;;;7818:30;7884:34;7864:18;;;7857:62;-1:-1:-1;;;7935:18:12;;;7928:31;7976:19;;9505:84:11::1;7778:223:12::0;9505:84:11::1;9599:6;:18:::0;;;9627:10:::1;:26:::0;;;9668:37:::1;::::0;;11290:25:12;;;11346:2;11331:18;;11324:34;;;9668:37:11::1;::::0;11263:18:12;9668:37:11::1;;;;;;;;9417:295:::0;;:::o;952:282:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1032:25:9;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1031:26;1023:79;;;::::0;-1:-1:-1;;;1023:79:9;;8966:2:12;1023:79:9::1;::::0;::::1;8948:21:12::0;9005:2;8985:18;;;8978:30;9044:34;9024:18;;;9017:62;-1:-1:-1;;;9095:18:12;;;9088:38;9143:19;;1023:79:9::1;8938:230:12::0;1023:79:9::1;1112:19;:32:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;1112:32:9::1;-1:-1:-1::0;;;;;1112:32:9;::::1;::::0;;::::1;::::0;;;-1:-1:-1;1154:25:9;;;:17:::1;1112:32;1154:25:::0;;;;;;;;:32;;-1:-1:-1;;1154:32:9::1;::::0;;::::1;::::0;;;1201:26;3386:51:12;;;1201:26:9::1;::::0;3359:18:12;1201:26:9::1;3341:102:12::0;4898:347:2;5034:4;5050:36;5060:6;5068:9;5079:6;5050:9;:36::i;:::-;5096:121;5105:6;169:10:1;5127:89:2;5165:6;5127:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5127:19:2;;;;;;:11;:19;;;;;;;;169:10:1;5127:33:2;;;;;;;;;;:37;:89::i;:::-;5096:8;:121::i;:::-;-1:-1:-1;5234:4:2;4898:347;;;;;:::o;10768:184:11:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;10853:29:11::1;:39:::0;;;::::1;;-1:-1:-1::0;;;10853:39:11::1;-1:-1:-1::0;;;;10853:39:11;;::::1;;::::0;;10907:38:::1;::::0;::::1;::::0;::::1;::::0;10885:7;4404:14:12;4397:22;4379:41;;4367:2;4352:18;;4334:92;5640:215:2;169:10:1;5728:4:2;5776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5776:34:2;;;;;;;;;;5728:4;;5744:83;;5767:7;;5776:50;;5815:10;5776:38;:50::i;10396:366:11:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;10470:34:11::1;10524:9;10470:64;;10578:17;-1:-1:-1::0;;;;;10578:25:11::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10560:70:11::1;;10639:4;10646:17;-1:-1:-1::0;;;;;10646:22:11::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10560:111;::::0;-1:-1:-1;;;;;;10560:111:11::1;::::0;;;;;;-1:-1:-1;;;;;3894:15:12;;;10560:111:11::1;::::0;::::1;3876:34:12::0;3946:15;;3926:18;;;3919:43;3811:18;;10560:111:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;10544:13;:127:::0;;-1:-1:-1;;;;;;10544:127:11;;::::1;-1:-1:-1::0;;;;;10544:127:11;;::::1;;::::0;;;10681:15:::1;:35:::0;;;;::::1;::::0;;::::1;;::::0;;10731:24:::1;::::0;3404:32:12;;;3386:51;;10731:24:11::1;::::0;3374:2:12;3359:18;10731:24:11::1;3341:102:12::0;9108:150:11;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;9178:27:11;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;9178:34:11::1;9208:4;9178:34;::::0;;9227:24;;3386:51:12;;;9227:24:11::1;::::0;3359:18:12;9227:24:11::1;3341:102:12::0;10958:178:11;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11060:17:11::1;:9:::0;11072:5:::1;11060:17;:::i;:::-;11038:19;:39:::0;11092:37:::1;::::0;10493:25:12;;;11092:37:11::1;::::0;10481:2:12;10466:18;11092:37:11::1;10448:76:12::0;11179:151:11;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11274:4:11::1;11230:23;3520:18:2::0;;;;;;;;;;;11290:33:11::1;3520:18:2::0;11290:16:11::1;:33::i;:::-;1346:1:8;11179:151:11:o:0;10164:226::-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;10276:15:11::1;:52:::0;;-1:-1:-1;;;;;;10276:52:11::1;-1:-1:-1::0;;;;;10276:52:11;::::1;::::0;;::::1;::::0;;;10343:40:::1;::::0;3386:51:12;;;10343:40:11::1;::::0;3374:2:12;3359:18;10343:40:11::1;3341:102:12::0;1696:147:8;1277:6;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;1788:6:::1;::::0;1767:40:::1;::::0;1804:1:::1;::::0;-1:-1:-1;;;;;1788:6:8::1;::::0;1767:40:::1;::::0;1804:1;;1767:40:::1;1817:6;:19:::0;;-1:-1:-1;;;;;;1817:19:8::1;::::0;;1696:147::o;9718:244:11:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;9827:2:11::1;9807:16;:22;;9799:65;;;::::0;-1:-1:-1;;;9799:65:11;;6283:2:12;9799:65:11::1;::::0;::::1;6265:21:12::0;6322:2;6302:18;;;6295:30;6361:32;6341:18;;;6334:60;6411:18;;9799:65:11::1;6255:180:12::0;9799:65:11::1;9874:13;:32:::0;;;9921:34:::1;::::0;10493:25:12;;;9921:34:11::1;::::0;10481:2:12;10466:18;9921:34:11::1;10448:76:12::0;2379:102:2;2435:13;2467:7;2460:14;;;;;:::i;6342:266::-;6435:4;6451:129;169:10:1;6474:7:2;6483:96;6522:15;6483:96;;;;;;;;;;;;;;;;;169:10:1;6483:25:2;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6483:34:2;;;;;;;;;;;;:38;:96::i;3748:172::-;3834:4;3850:42;169:10:1;3874:9:2;3885:6;3850:9;:42::i;1829:121:9:-;1889:16;1924:19;1917:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1917:26:9;;;;;;;;;;;;;;;;;;;;;;1829:121;:::o;1244:440::-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1323:25:9;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1315:74;;;::::0;-1:-1:-1;;;1315:74:9;;7401:2:12;1315:74:9::1;::::0;::::1;7383:21:12::0;7440:2;7420:18;;;7413:30;7479:34;7459:18;;;7452:62;-1:-1:-1;;;7530:18:12;;;7523:34;7574:19;;1315:74:9::1;7373:226:12::0;1315:74:9::1;1404:6;1399:240;1420:19;:26:::0;1416:30;::::1;1399:240;;;1497:6;-1:-1:-1::0;;;;;1471:32:9::1;:19;1491:1;1471:22;;;;;;-1:-1:-1::0;;;1471:22:9::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1471:22:9::1;:32;1467:162;;;-1:-1:-1::0;;;;;1523:25:9;::::1;1551:5;1523:25:::0;;;:17:::1;:25;::::0;;;;:33;;-1:-1:-1;;1523:33:9::1;::::0;;1574:17:::1;1589:1:::0;1574:14:::1;:17::i;:::-;1609:5;;1467:162;1448:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1399:240;;;-1:-1:-1::0;1653:24:9::1;::::0;-1:-1:-1;;;;;3404:32:12;;3386:51;;1653:24:9::1;::::0;3374:2:12;3359:18;1653:24:9::1;3341:102:12::0;8732:236:11;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;8822:1:11::1;8810:8;:13;;8802:53;;;::::0;-1:-1:-1;;;8802:53:11;;8208:2:12;8802:53:11::1;::::0;::::1;8190:21:12::0;8247:2;8227:18;;;8220:30;8286:29;8266:18;;;8259:57;8333:18;;8802:53:11::1;8180:177:12::0;8802:53:11::1;8879:36;8910:4;8879:26;488:25;8896:8:::0;8879:16:::1;:26::i;:::-;:30:::0;::::1;:36::i;:::-;8865:11;:50:::0;;;8930:31:::1;::::0;10493:25:12;;;8930:31:11::1;::::0;10481:2:12;10466:18;8930:31:11::1;10448:76:12::0;9264:147:11;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;9332:27:11;::::1;9362:5;9332:27:::0;;;:18:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;9332:35:11::1;::::0;;9382:22;;3386:51:12;;;9382:22:11::1;::::0;3359:18:12;9382:22:11::1;3341:102:12::0;1992:276:8;1277:6;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;2095:22:8;::::1;2074:107;;;::::0;-1:-1:-1;;;2074:107:8;;5473:2:12;2074:107:8::1;::::0;::::1;5455:21:12::0;5512:2;5492:18;;;5485:30;5551:34;5531:18;;;5524:62;-1:-1:-1;;;5602:18:12;;;5595:36;5648:19;;2074:107:8::1;5445:228:12::0;2074:107:8::1;2217:6;::::0;2196:38:::1;::::0;-1:-1:-1;;;;;2196:38:8;;::::1;::::0;2217:6:::1;::::0;2196:38:::1;::::0;2217:6:::1;::::0;2196:38:::1;2244:6;:17:::0;;-1:-1:-1;;;;;;2244:17:8::1;-1:-1:-1::0;;;;;2244:17:8;;;::::1;::::0;;;::::1;::::0;;1992:276::o;11336:172:11:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11463:17:11::1;::::0;11416:21:::1;::::0;11447:54:::1;::::0;-1:-1:-1;;;;;11463:17:11::1;11416:21:::0;11447:15:::1;:54::i;1960:118:9:-:0;2009:7;2050:21;:19;:21::i;:::-;2035:12;;:36;;;;:::i;:::-;2028:43;;1960:118;:::o;2211:459:10:-;2269:7;2510:6;2506:45;;-1:-1:-1;2539:1:10;2532:8;;2506:45;2561:9;2573:5;2577:1;2573;:5;:::i;:::-;2561:17;-1:-1:-1;2605:1:10;2596:5;2600:1;2561:17;2596:5;:::i;:::-;:10;2588:56;;;;-1:-1:-1;;;2588:56:10;;8564:2:12;2588:56:10;;;8546:21:12;8603:2;8583:18;;;8576:30;8642:34;8622:18;;;8615:62;-1:-1:-1;;;8693:18:12;;;8686:31;8734:19;;2588:56:10;8536:223:12;2588:56:10;2662:1;2211:459;-1:-1:-1;;;2211:459:10:o;3132:130::-;3190:7;3216:39;3220:1;3223;3216:39;;;;;;;;;;;;;;;;;:3;:39::i;875:176::-;933:7;;964:5;968:1;964;:5;:::i;:::-;952:17;;992:1;987;:6;;979:46;;;;-1:-1:-1;;;979:46:10;;6642:2:12;979:46:10;;;6624:21:12;6681:2;6661:18;;;6654:30;6720:29;6700:18;;;6693:57;6767:18;;979:46:10;6614:177:12;9441:370:2;-1:-1:-1;;;;;9572:19:2;;9564:68;;;;-1:-1:-1;;;9564:68:2;;9736:2:12;9564:68:2;;;9718:21:12;9775:2;9755:18;;;9748:30;9814:34;9794:18;;;9787:62;-1:-1:-1;;;9865:18:12;;;9858:34;9909:19;;9564:68:2;9708:226:12;9564:68:2;-1:-1:-1;;;;;9650:21:2;;9642:68;;;;-1:-1:-1;;;9642:68:2;;5880:2:12;9642:68:2;;;5862:21:12;5919:2;5899:18;;;5892:30;5958:34;5938:18;;;5931:62;-1:-1:-1;;;6009:18:12;;;6002:32;6051:19;;9642:68:2;5852:224:12;9642:68:2;-1:-1:-1;;;;;9721:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9772:32;;10493:25:12;;;9772:32:2;;10466:18:12;9772:32:2;;;;;;;9441:370;;;:::o;3732:1565:11:-;-1:-1:-1;;;;;3877:26:11;;;;;;:20;:26;;;;;;;;3876:27;:68;;;;-1:-1:-1;;;;;;3920:24:11;;;;;;:20;:24;;;;;;;;3919:25;3876:68;3859:260;;;4024:11;;4014:6;:21;;3989:119;;;;-1:-1:-1;;;3989:119:11;;10141:2:12;3989:119:11;;;10123:21:12;10180:2;10160:18;;;10153:30;10219:34;10199:18;;;10192:62;-1:-1:-1;;;10270:18:12;;;10263:37;10317:19;;3989:119:11;10113:229:12;3989:119:11;4174:6;;4194:21;;4219:15;-1:-1:-1;4194:40:11;;;:63;;-1:-1:-1;4244:13:11;;-1:-1:-1;;;;;4238:19:11;;;4244:13;;4238:19;4194:63;4190:128;;;4293:13;;4282:6;;:25;;:10;:25::i;:::-;4273:6;:34;4190:128;4406:4;4357:28;3520:18:2;;;;;;;;;;;4473:19:11;;4449:43;;;;;;;4519:53;;-1:-1:-1;4555:17:11;;-1:-1:-1;;;4555:17:11;;;;4554:18;4519:53;:90;;;;-1:-1:-1;4596:13:11;;-1:-1:-1;;;;;4588:21:11;;;4596:13;;4588:21;;4519:90;:135;;;;-1:-1:-1;4625:29:11;;-1:-1:-1;;;4625:29:11;;;;4519:135;4502:259;;;4706:44;4729:20;4706:22;:44::i;:::-;-1:-1:-1;;;;;4775:24:11;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;4803:22:11;;;;;;:18;:22;;;;;;;;4775:50;4771:95;;;4841:14;:12;:14::i;:::-;4877:23;4902:12;4918:18;4929:6;4918:10;:18::i;:::-;-1:-1:-1;;;;;4964:15:11;;:9;:15;;;;;;;;;;;4876:60;;-1:-1:-1;4876:60:11;-1:-1:-1;4964:27:11;;4984:6;4964:19;:27::i;:::-;-1:-1:-1;;;;;4946:15:11;;;:9;:15;;;;;;;;;;;:45;;;;5017:13;;;;;;;:34;;5035:15;5017:17;:34::i;:::-;-1:-1:-1;;;;;5001:13:11;;:9;:13;;;;;;;;;;:50;5062:14;5071:4;5062:8;:14::i;:::-;-1:-1:-1;;;;;5091:24:11;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5119:22:11;;;;;;:18;:22;;;;;;;;5091:50;5087:96;;;5157:15;6272;;6263:6;:24;6310:19;;6297:10;:32;6220:116;5157:15;5229:10;5220:6;:19;;;;5270:2;-1:-1:-1;;;;;5255:35:11;5264:4;-1:-1:-1;;;;;5255:35:11;;5274:15;5255:35;;;;10493:25:12;;10481:2;10466:18;;10448:76;5255:35:11;;;;;;;;3732:1565;;;;;;;;:::o;1747:217:10:-;1863:7;1898:12;1890:6;;;;1882:29;;;;-1:-1:-1;;;1882:29:10;;;;;;;;:::i;:::-;-1:-1:-1;1921:9:10;1933:5;1937:1;1933;:5;:::i;:::-;1921:17;1747:217;-1:-1:-1;;;;;1747:217:10:o;8108:573:11:-;8256:16;;;8270:1;8256:16;;;;;;;;8232:21;;8256:16;;;;;;;;;;-1:-1:-1;8256:16:11;8232:40;;8300:4;8282;8287:1;8282:7;;;;;;-1:-1:-1;;;8282:7:11;;;;;;;;;-1:-1:-1;;;;;8282:23:11;;;:7;;;;;;;;;;:23;;;;8325:15;;:22;;;-1:-1:-1;;;8325:22:11;;;;:15;;;;;:20;;:22;;;;;8282:7;;8325:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8315:4;8320:1;8315:7;;;;;;-1:-1:-1;;;8315:7:11;;;;;;;;;-1:-1:-1;;;;;8315:32:11;;;:7;;;;;;;;;:32;8390:15;;8358:62;;8375:4;;8390:15;8408:11;8358:8;:62::i;:::-;8456:15;;:218;;-1:-1:-1;;;8456:218:11;;-1:-1:-1;;;;;8456:15:11;;;;:66;;:218;;8536:11;;8456:15;;8604:4;;8630;;8649:15;;8456:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8108:573;;:::o;367:268:9:-;438:19;:26;430:34;;422:81;;;;-1:-1:-1;;;422:81:9;;6998:2:12;422:81:9;;;6980:21:12;7037:2;7017:18;;;7010:30;7076:34;7056:18;;;7049:62;-1:-1:-1;;;7127:18:12;;;7120:32;7169:19;;422:81:9;6970:224:12;422:81:9;542:19;562:26;;:30;;591:1;;562:30;:::i;:::-;542:51;;;;;;-1:-1:-1;;;542:51:9;;;;;;;;;;;;;;;;;;;513:19;:26;;-1:-1:-1;;;;;542:51:9;;;;533:5;;513:26;;;;-1:-1:-1;;;513:26:9;;;;;;;;;;;;;;;;;:80;;;;;-1:-1:-1;;;;;513:80:9;;;;;-1:-1:-1;;;;;513:80:9;;;;;;603:19;:25;;;;;-1:-1:-1;;;603:25:9;;;;;;;;;;;;;;;;;;-1:-1:-1;;603:25:9;;;;;-1:-1:-1;;;;;;603:25:9;;;;;;-1:-1:-1;367:268:9:o;7948:154:11:-;8027:10;;8023:73;;8053:32;;-1:-1:-1;;;;;8053:24:11;;;:32;;;;;8078:6;;8053:32;;;;8078:6;8053:24;:32;;;;;;;;;;;;;;;;;;;;;8023:73;7948:154;;:::o;645:297:9:-;699:7;;;761:137;782:19;:26;778:30;;761:137;;;854:33;864:19;884:1;864:22;;;;;;-1:-1:-1;;;864:22:9;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;864:22:9;3520:18:2;;;;;;;;;;3420:125;854:33:9;829:58;;;;:::i;:::-;;-1:-1:-1;810:3:9;;;;:::i;:::-;;;;761:137;;;-1:-1:-1;914:21:9;645:297;-1:-1:-1;645:297:9:o;3744:302:10:-;3860:7;3894:12;3887:5;3879:28;;;;-1:-1:-1;;;3879:28:10;;;;;;;;:::i;:::-;-1:-1:-1;3917:9:10;3929:5;3933:1;3929;:5;:::i;6342:1600:11:-;2372:17;:24;;-1:-1:-1;;;;2372:24:11;-1:-1:-1;;;2372:24:11;;;6492:10:::1;::::0;6481:6:::1;::::0;2372:24;;6481:40:::1;::::0;559:2:::1;::::0;6481:22:::1;::::0;:6;:10:::1;:22::i;:::-;:26:::0;::::1;:40::i;:::-;6454:67:::0;-1:-1:-1;6535:21:11;6531:34:::1;;6558:7;;;6531:34;6864:21;6927:38;6944:20:::0;6927:16:::1;:38::i;:::-;6976:18;6997:41;:21;7023:14:::0;6997:25:::1;:41::i;:::-;6976:62:::0;-1:-1:-1;7053:14:11;;7049:887:::1;;7122:23;7148:50;7181:16:::0;7148:28:::1;:10:::0;559:2:::1;7148:14;:28::i;:50::-;7228:22;::::0;7122:76;;-1:-1:-1;7212:56:11::1;::::0;-1:-1:-1;;;;;7228:22:11::1;7122:76:::0;7212:15:::1;:56::i;:::-;7351:22;7376:48;7407:16;7376:26;7391:10;;7376;:14;;:26;;;;:::i;:48::-;7351:73;;7459:1;7442:14;:18;:60;;;;-1:-1:-1::0;7472:15:11::1;::::0;-1:-1:-1;;;;;7472:15:11::1;7464:38:::0;::::1;7442:60;7438:194;;;7526:15;::::0;:80:::1;::::0;-1:-1:-1;;;7526:80:11;;:15;:80:::1;::::0;::::1;10493:25:12::0;-1:-1:-1;;;;;7526:15:11;;::::1;::::0;:29:::1;::::0;7563:14;;10466:18:12;;7526:80:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;7522:96:::0;::::1;7722:18;7743:44;7770:16;7743:22;7758:6;;7743:10;:14;;:22;;;;:::i;:44::-;7817:17;::::0;7722:65;;-1:-1:-1;7801:46:11::1;::::0;-1:-1:-1;;;;;7817:17:11::1;7722:65:::0;7801:15:::1;:46::i;:::-;7867:58;::::0;;11290:25:12;;;11346:2;11331:18;;11324:34;;;7867:58:11::1;::::0;11263:18:12;7867:58:11::1;;;;;;;7049:887;;;;2406:1;;;;-1:-1:-1::0;2417:17:11;:25;;-1:-1:-1;;;;2417:25:11;;;6342:1600::o;6001:213::-;6047:6;;:11;;:30;;-1:-1:-1;6062:10:11;;:15;6047:30;6043:43;;;6001:213::o;6043:43::-;6114:6;;;6096:15;:24;6152:10;;;6130:19;:32;-1:-1:-1;6173:10:11;;;;6193:14;6001:213::o;5393:251::-;5476:7;5485;5508:12;5523:21;5536:7;5523:12;:21::i;:::-;5508:36;-1:-1:-1;5554:23:11;5580:17;:7;5508:36;5580:11;:17::i;:::-;5554:43;5632:4;;-1:-1:-1;5393:251:11;;-1:-1:-1;;;5393:251:11:o;1322:134:10:-;1380:7;1406:43;1410:1;1413;1406:43;;;;;;;;;;;;;;;;;:3;:43::i;5650:116:11:-;5744:4;5726:9;:24;;;;;;;;;;;:33;;5755:3;5726:28;:33::i;:::-;5717:4;5699:9;:24;;;;;;;;;;:60;-1:-1:-1;5650:116:11:o;5772:223::-;5857:7;5880:16;5899:40;559:2;5899:22;5910:10;;5899:6;;:10;;:22;;;;:::i;:40::-;5880:59;-1:-1:-1;5956:32:11;5982:5;5956:21;:7;5880:59;5956:11;:21::i;14:257:12:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:12;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:12;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:12;1656:18;;;;1643:32;;1319:362::o;1686:325::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:2;;;1836:6;1828;1821:22;1783:2;1880:9;1867:23;1899:31;1924:5;1899:31;:::i;:::-;1949:5;2001:2;1986:18;;;;1973:32;;-1:-1:-1;;;1773:238:12:o;2016:293::-;2072:6;2125:2;2113:9;2104:7;2100:23;2096:32;2093:2;;;2146:6;2138;2131:22;2093:2;2190:9;2177:23;2243:5;2236:13;2229:21;2222:5;2219:32;2209:2;;2270:6;2262;2255:22;2314:190;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:2;;;2447:6;2439;2432:22;2394:2;-1:-1:-1;2475:23:12;;2384:120;-1:-1:-1;2384:120:12:o;2509:258::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;-1:-1:-1;;2687:23:12;;;2757:2;2742:18;;;2729:32;;-1:-1:-1;2596:171:12:o;2772:463::-;2825:3;2863:5;2857:12;2890:6;2885:3;2878:19;2916:4;2945:2;2940:3;2936:12;2929:19;;2982:2;2975:5;2971:14;3003:3;3015:195;3029:6;3026:1;3023:13;3015:195;;;3094:13;;-1:-1:-1;;;;;3090:39:12;3078:52;;3150:12;;;;3185:15;;;;3126:1;3044:9;3015:195;;;-1:-1:-1;3226:3:12;;2833:402;-1:-1:-1;;;;;2833:402:12:o;3973:261::-;4152:2;4141:9;4134:21;4115:4;4172:56;4224:2;4213:9;4209:18;4201:6;4172:56;:::i;4663:603::-;4775:4;4804:2;4833;4822:9;4815:21;4865:6;4859:13;4908:6;4903:2;4892:9;4888:18;4881:34;4933:4;4946:140;4960:6;4957:1;4954:13;4946:140;;;5055:14;;;5051:23;;5045:30;5021:17;;;5040:2;5017:26;5010:66;4975:10;;4946:140;;;5104:6;5101:1;5098:13;5095:2;;;5174:4;5169:2;5160:6;5149:9;5145:22;5141:31;5134:45;5095:2;-1:-1:-1;5250:2:12;5229:15;-1:-1:-1;;5225:29:12;5210:45;;;;5257:2;5206:54;;4784:482;-1:-1:-1;;;4784:482:12:o;9173:356::-;9375:2;9357:21;;;9394:18;;;9387:30;9453:34;9448:2;9433:18;;9426:62;9520:2;9505:18;;9347:182::o;10529:582::-;10828:6;10817:9;10810:25;10871:6;10866:2;10855:9;10851:18;10844:34;10914:3;10909:2;10898:9;10894:18;10887:31;10791:4;10935:57;10987:3;10976:9;10972:19;10964:6;10935:57;:::i;:::-;-1:-1:-1;;;;;11028:32:12;;;;11023:2;11008:18;;11001:60;-1:-1:-1;11092:3:12;11077:19;11070:35;10927:65;10800:311;-1:-1:-1;;;10800:311:12:o;11558:128::-;11598:3;11629:1;11625:6;11622:1;11619:13;11616:2;;;11635:18;;:::i;:::-;-1:-1:-1;11671:9:12;;11606:80::o;11691:217::-;11731:1;11757;11747:2;;-1:-1:-1;;;11782:31:12;;11836:4;11833:1;11826:15;11864:4;11789:1;11854:15;11747:2;-1:-1:-1;11893:9:12;;11737:171::o;11913:168::-;11953:7;12019:1;12015;12011:6;12007:14;12004:1;12001:21;11996:1;11989:9;11982:17;11978:45;11975:2;;;12026:18;;:::i;:::-;-1:-1:-1;12066:9:12;;11965:116::o;12086:125::-;12126:4;12154:1;12151;12148:8;12145:2;;;12159:18;;:::i;:::-;-1:-1:-1;12196:9:12;;12135:76::o;12216:380::-;12295:1;12291:12;;;;12338;;;12359:2;;12413:4;12405:6;12401:17;12391:27;;12359:2;12466;12458:6;12455:14;12435:18;12432:38;12429:2;;;12512:10;12507:3;12503:20;12500:1;12493:31;12547:4;12544:1;12537:15;12575:4;12572:1;12565:15;12601:135;12640:3;-1:-1:-1;;12661:17:12;;12658:2;;;12681:18;;:::i;:::-;-1:-1:-1;12728:1:12;12717:13;;12648:88::o;12741:127::-;12802:10;12797:3;12793:20;12790:1;12783:31;12833:4;12830:1;12823:15;12857:4;12854:1;12847:15;12873:131;-1:-1:-1;;;;;12948:31:12;;12938:42;;12928:2;;12994:1;12991;12984:12

Swarm Source

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