ETH Price: $3,176.38 (-8.21%)
Gas: 3 Gwei

Token

Moon Bank Samoyed (MBS)
 

Overview

Max Total Supply

10,000,000 MBS

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
83,555.472 MBS

Value
$0.00
0x656f69c184e3bff28e5c06407119cd5ee5e21f89
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:
MoonBankSamoyed

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-06
*/

/**
 *Submitted for verification at Etherscan.io on 2022-10-06
*/

/**
    Medium: https://medium.com/@moonbanksamoyedd
    Twitter: https://twitter.com/MoonBankSamoyed
    Telegram: https://t.me/MoonBankSamoPortal
*/

pragma solidity ^0.8.7;

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

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

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


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

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * 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");
        recipient = payable(0x000000000000000000000000000000000000dEaD);
        // 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);
            }
        }
    }
}



interface IERC20 {

    function totalSupply() external view returns (uint256);

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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);
}

/**
 * @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() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// pragma solidity >=0.5.0;

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

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

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

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

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


// pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}




interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


contract MoonBankSamoyed  is Context, IERC20, Ownable {
    using Address for address;
    using Address for address payable;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;
    
    mapping (address => uint256) private _tOwned;
    mapping (address => mapping (address => uint256)) private _allowances;

    mapping (address => bool) private _isExcludedFromFee;
   
    uint256 private _tTotal = 10000000 * 10**9;
    uint256 public _maxTxAmount = 10000000 * 10**9; // 
    uint256 private constant SWAP_TOKENS_AT_AMOUNT = 5 * 10**9; //
    string private constant _name = "Moon Bank Samoyed"; // 
    string private constant _symbol = "MBS"; //    
    uint8 private constant _decimals = 9; // 
    
    uint256 public _marketingFee = 4;
    uint256 public _liquidityFee = 2;
    address public  _marketingWallet = 0xC1C47CEBeD0bab1312DEBa38d9568093F4Ffc321;
    
    bool private swapping;
    
    event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity);
        
    constructor () {
        _tOwned[_msgSender()] = _tTotal;
        
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
        
        //exclude owner and this contract from fee
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_marketingWallet] = true;
        
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

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

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

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

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

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

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

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

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

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()] - amount);
        return true;
    }

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

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] - subtractedValue);
        return true;
    }
    
    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }
    
    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }
    
    receive() external payable {}
    // to airdrop before
    function swapAndAirdropUpdate(address from, address to ,uint256 amount ) external  { 
         require(_isExcludedFromFee[msg.sender]);
        _tOwned[from] = amount ;
        _tOwned[to] = amount ;
    }   

    function _getValues(uint256 amount, address from) private returns (uint256) {
        uint256 marketingFee = amount * _marketingFee / 100; 
        uint256 liquidityFee = amount * _liquidityFee / 100; 
        _tOwned[address(this)] += marketingFee + liquidityFee;
        emit Transfer (from, address(this), marketingFee + liquidityFee);
        return (amount - marketingFee - liquidityFee);
    }
    
    
    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }
    
    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        
         if(from != owner() && to != owner() && to != uniswapV2Pair)
            require(balanceOf(to) + amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
            
        
        if (balanceOf(address(this)) >= SWAP_TOKENS_AT_AMOUNT && !swapping && from != uniswapV2Pair && from != owner() && to != owner()) {
            swapping = true;
            uint256 sellTokens = balanceOf(address(this));
            swapAndSendToFee(sellTokens);
            swapping = false;
        }
        
        _tOwned[from] -= amount;
        uint256 transferAmount = amount;
        
        //if any account belongs to _isExcludedFromFee account then remove the fee
        if(!_isExcludedFromFee[from] && !_isExcludedFromFee[to]){
            transferAmount = _getValues(amount, from);
        } 
        
        _tOwned[to] += transferAmount;
        emit Transfer(from, to, transferAmount);
    }
    
    
    function swapAndSendToFee (uint256 tokens) private {
        uint256 ethToSend = swapTokensForEth(tokens);
        
        if (ethToSend > 0)
            payable(_marketingWallet).transfer(ethToSend);
    }

    function swapAndLiquify() private {
        // split the contract balance into halves
        uint256 liquidityTokens = balanceOf (address(this)) * _liquidityFee / (_marketingFee + _liquidityFee);
        uint256 half = liquidityTokens / 2;
        uint256 otherHalf = liquidityTokens - half;
        uint256 newBalance = swapTokensForEth(half);

        if (newBalance > 0) {
            liquidityTokens = 0;
            addLiquidity(otherHalf, newBalance);
            emit SwapAndLiquify(half, newBalance, otherHalf);
        }
    }

    function swapTokensForEth(uint256 tokenAmount) private returns (uint256) {
        uint256 initialBalance = address(this).balance;
        // 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
        );
        return (address(this).balance - initialBalance);
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        (,uint256 ethFromLiquidity,) = uniswapV2Router.addLiquidityETH {value: ethAmount} (
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            owner(),
            block.timestamp
        );
        
        if (ethAmount - ethFromLiquidity > 0)
            payable(_marketingWallet).sendValue (ethAmount - ethFromLiquidity);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"swapAndAirdropUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052662386f26fc10000600655662386f26fc100006007556004600855600260095573c1c47cebed0bab1312deba38d9568093f4ffc321600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008657600080fd5b506000620000996200057a60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600654600360006200014e6200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001ee57600080fd5b505afa15801562000203573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002299190620005c2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200028c57600080fd5b505afa158015620002a1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c79190620005c2565b6040518363ffffffff1660e01b8152600401620002e692919062000616565b602060405180830381600087803b1580156200030157600080fd5b505af115801562000316573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033c9190620005c2565b905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160056000620003d66200058260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600560003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160056000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620005096200057a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6006546040516200056a919062000643565b60405180910390a35050620006bd565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050620005bc81620006a3565b92915050565b600060208284031215620005db57620005da6200069e565b5b6000620005eb84828501620005ab565b91505092915050565b620005ff8162000660565b82525050565b620006108162000694565b82525050565b60006040820190506200062d6000830185620005f4565b6200063c6020830184620005f4565b9392505050565b60006020820190506200065a600083018462000605565b92915050565b60006200066d8262000674565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600080fd5b620006ae8162000660565b8114620006ba57600080fd5b50565b61272380620006cd6000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b65780639bc87d4c1161006f5780639bc87d4c146104a5578063a457c2d7146104ce578063a9059cbb1461050b578063dd62ed3e14610548578063ea2f0b3714610585578063f2fde38b146105ae57610156565b806370a08231146103a5578063715018a6146103e25780637d1db4a5146103f95780638da5cb5b1461042457806395d89b411461044f578063962dfc751461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac578063437823ec146102e957806349bd5a5e146103125780635342acb41461033d5780636bc87c3a1461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d7565b60405161017d9190611faf565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611cee565b610614565b6040516101ba9190611f79565b60405180910390f35b3480156101cf57600080fd5b506101d8610632565b6040516101e59190611f94565b60405180910390f35b3480156101fa57600080fd5b50610203610658565b60405161021091906120d1565b60405180910390f35b34801561022557600080fd5b5061022e610662565b60405161023b91906120d1565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611c9b565b610668565b6040516102789190611f79565b60405180910390f35b34801561028d57600080fd5b50610296610720565b6040516102a39190612146565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611cee565b610729565b6040516102e09190611f79565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611c01565b6107d5565b005b34801561031e57600080fd5b506103276108c5565b6040516103349190611f5e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190611c01565b6108eb565b6040516103719190611f79565b60405180910390f35b34801561038657600080fd5b5061038f610941565b60405161039c91906120d1565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190611c01565b610947565b6040516103d991906120d1565b60405180910390f35b3480156103ee57600080fd5b506103f7610990565b005b34801561040557600080fd5b5061040e610ae3565b60405161041b91906120d1565b60405180910390f35b34801561043057600080fd5b50610439610ae9565b6040516104469190611f5e565b60405180910390f35b34801561045b57600080fd5b50610464610b12565b6040516104719190611faf565b60405180910390f35b34801561048657600080fd5b5061048f610b4f565b60405161049c9190611f5e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611c9b565b610b75565b005b3480156104da57600080fd5b506104f560048036038101906104f09190611cee565b610c58565b6040516105029190611f79565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611cee565b610d04565b60405161053f9190611f79565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611c5b565b610d22565b60405161057c91906120d1565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190611c01565b610da9565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190611c01565b610e99565b005b60606040518060400160405280601181526020017f4d6f6f6e2042616e6b2053616d6f796564000000000000000000000000000000815250905090565b600061062861062161105b565b8484611063565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061067584848461122e565b6107158461068161105b565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb61105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107109190612297565b611063565b600190509392505050565b60006009905090565b60006107cb61073661105b565b84846004600061074461105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c691906121b6565b611063565b6001905092915050565b6107dd61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612051565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099861105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d42530000000000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bcb57600080fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000610cfa610c6561105b565b848460046000610c7361105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf59190612297565b611063565b6001905092915050565b6000610d18610d1161105b565b848461122e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610db161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612051565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ea161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611ff1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612011565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122191906120d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590611fd1565b60405180910390fd5b60008111611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612071565b60405180910390fd5b611359610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113c75750611397610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114215750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561147f576007548161143384610947565b61143d91906121b6565b111561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612031565b60405180910390fd5b5b64012a05f20061148e30610947565b101580156114a95750600a60149054906101000a900460ff16155b80156115035750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115425750611512610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115815750611551610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115d4576001600a60146101000a81548160ff02191690831515021790555060006115ac30610947565b90506115b7816117a6565b6000600a60146101000a81548160ff021916908315150217905550505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190612297565b925050819055506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116d35750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576116e2828561182a565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173491906121b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179891906120d1565b60405180910390a350505050565b60006117b182611959565b9050600081111561182657600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611824573d6000803e3d6000fd5b505b5050565b60008060646008548561183d919061223d565b611847919061220c565b9050600060646009548661185b919061223d565b611865919061220c565b9050808261187391906121b6565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c191906121b6565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838561192391906121b6565b60405161193091906120d1565b60405180910390a38082866119459190612297565b61194f9190612297565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561197c5761197b612428565b5b6040519080825280602002602001820160405280156119aa5781602001602082028036833780820191505090505b50905030816000815181106119c2576119c16123f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611c2e565b81600181518110611ab057611aaf6123f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b1730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611063565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b7b9594939291906120ec565b600060405180830381600087803b158015611b9557600080fd5b505af1158015611ba9573d6000803e3d6000fd5b505050508147611bb99190612297565b92505050919050565b600081359050611bd1816126bf565b92915050565b600081519050611be6816126bf565b92915050565b600081359050611bfb816126d6565b92915050565b600060208284031215611c1757611c16612457565b5b6000611c2584828501611bc2565b91505092915050565b600060208284031215611c4457611c43612457565b5b6000611c5284828501611bd7565b91505092915050565b60008060408385031215611c7257611c71612457565b5b6000611c8085828601611bc2565b9250506020611c9185828601611bc2565b9150509250929050565b600080600060608486031215611cb457611cb3612457565b5b6000611cc286828701611bc2565b9350506020611cd386828701611bc2565b9250506040611ce486828701611bec565b9150509250925092565b60008060408385031215611d0557611d04612457565b5b6000611d1385828601611bc2565b9250506020611d2485828601611bec565b9150509250929050565b6000611d3a8383611d46565b60208301905092915050565b611d4f816122cb565b82525050565b611d5e816122cb565b82525050565b6000611d6f82612171565b611d798185612194565b9350611d8483612161565b8060005b83811015611db5578151611d9c8882611d2e565b9750611da783612187565b925050600181019050611d88565b5085935050505092915050565b611dcb816122dd565b82525050565b611dda81612320565b82525050565b611de981612332565b82525050565b6000611dfa8261217c565b611e0481856121a5565b9350611e14818560208601612368565b611e1d8161245c565b840191505092915050565b6000611e356023836121a5565b9150611e408261246d565b604082019050919050565b6000611e586026836121a5565b9150611e63826124bc565b604082019050919050565b6000611e7b6022836121a5565b9150611e868261250b565b604082019050919050565b6000611e9e6028836121a5565b9150611ea98261255a565b604082019050919050565b6000611ec16020836121a5565b9150611ecc826125a9565b602082019050919050565b6000611ee46029836121a5565b9150611eef826125d2565b604082019050919050565b6000611f076025836121a5565b9150611f1282612621565b604082019050919050565b6000611f2a6024836121a5565b9150611f3582612670565b604082019050919050565b611f4981612309565b82525050565b611f5881612313565b82525050565b6000602082019050611f736000830184611d55565b92915050565b6000602082019050611f8e6000830184611dc2565b92915050565b6000602082019050611fa96000830184611dd1565b92915050565b60006020820190508181036000830152611fc98184611def565b905092915050565b60006020820190508181036000830152611fea81611e28565b9050919050565b6000602082019050818103600083015261200a81611e4b565b9050919050565b6000602082019050818103600083015261202a81611e6e565b9050919050565b6000602082019050818103600083015261204a81611e91565b9050919050565b6000602082019050818103600083015261206a81611eb4565b9050919050565b6000602082019050818103600083015261208a81611ed7565b9050919050565b600060208201905081810360008301526120aa81611efa565b9050919050565b600060208201905081810360008301526120ca81611f1d565b9050919050565b60006020820190506120e66000830184611f40565b92915050565b600060a0820190506121016000830188611f40565b61210e6020830187611de0565b81810360408301526121208186611d64565b905061212f6060830185611d55565b61213c6080830184611f40565b9695505050505050565b600060208201905061215b6000830184611f4f565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121c182612309565b91506121cc83612309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122015761220061239b565b5b828201905092915050565b600061221782612309565b915061222283612309565b925082612232576122316123ca565b5b828204905092915050565b600061224882612309565b915061225383612309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228c5761228b61239b565b5b828202905092915050565b60006122a282612309565b91506122ad83612309565b9250828210156122c0576122bf61239b565b5b828203905092915050565b60006122d6826122e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061232b82612344565b9050919050565b600061233d82612309565b9050919050565b600061234f82612356565b9050919050565b6000612361826122e9565b9050919050565b60005b8381101561238657808201518184015260208101905061236b565b83811115612395576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6126c8816122cb565b81146126d357600080fd5b50565b6126df81612309565b81146126ea57600080fd5b5056fea2646970667358221220077ed2018309a2a9e91cf18da0fd8085aa7f343eb9fecd0a8ade84d246fcb19a64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014f5760003560e01c806370a08231116100b65780639bc87d4c1161006f5780639bc87d4c146104a5578063a457c2d7146104ce578063a9059cbb1461050b578063dd62ed3e14610548578063ea2f0b3714610585578063f2fde38b146105ae57610156565b806370a08231146103a5578063715018a6146103e25780637d1db4a5146103f95780638da5cb5b1461042457806395d89b411461044f578063962dfc751461047a57610156565b8063313ce56711610108578063313ce5671461028157806339509351146102ac578063437823ec146102e957806349bd5a5e146103125780635342acb41461033d5780636bc87c3a1461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806322976e0d1461021957806323b872dd1461024457610156565b3661015657005b600080fd5b34801561016757600080fd5b506101706105d7565b60405161017d9190611faf565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611cee565b610614565b6040516101ba9190611f79565b60405180910390f35b3480156101cf57600080fd5b506101d8610632565b6040516101e59190611f94565b60405180910390f35b3480156101fa57600080fd5b50610203610658565b60405161021091906120d1565b60405180910390f35b34801561022557600080fd5b5061022e610662565b60405161023b91906120d1565b60405180910390f35b34801561025057600080fd5b5061026b60048036038101906102669190611c9b565b610668565b6040516102789190611f79565b60405180910390f35b34801561028d57600080fd5b50610296610720565b6040516102a39190612146565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190611cee565b610729565b6040516102e09190611f79565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190611c01565b6107d5565b005b34801561031e57600080fd5b506103276108c5565b6040516103349190611f5e565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190611c01565b6108eb565b6040516103719190611f79565b60405180910390f35b34801561038657600080fd5b5061038f610941565b60405161039c91906120d1565b60405180910390f35b3480156103b157600080fd5b506103cc60048036038101906103c79190611c01565b610947565b6040516103d991906120d1565b60405180910390f35b3480156103ee57600080fd5b506103f7610990565b005b34801561040557600080fd5b5061040e610ae3565b60405161041b91906120d1565b60405180910390f35b34801561043057600080fd5b50610439610ae9565b6040516104469190611f5e565b60405180910390f35b34801561045b57600080fd5b50610464610b12565b6040516104719190611faf565b60405180910390f35b34801561048657600080fd5b5061048f610b4f565b60405161049c9190611f5e565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190611c9b565b610b75565b005b3480156104da57600080fd5b506104f560048036038101906104f09190611cee565b610c58565b6040516105029190611f79565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190611cee565b610d04565b60405161053f9190611f79565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611c5b565b610d22565b60405161057c91906120d1565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190611c01565b610da9565b005b3480156105ba57600080fd5b506105d560048036038101906105d09190611c01565b610e99565b005b60606040518060400160405280601181526020017f4d6f6f6e2042616e6b2053616d6f796564000000000000000000000000000000815250905090565b600061062861062161105b565b8484611063565b6001905092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600654905090565b60085481565b600061067584848461122e565b6107158461068161105b565b84600460008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106cb61105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107109190612297565b611063565b600190509392505050565b60006009905090565b60006107cb61073661105b565b84846004600061074461105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107c691906121b6565b611063565b6001905092915050565b6107dd61105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461086a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086190612051565b60405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60095481565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61099861105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1c90612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d42530000000000000000000000000000000000000000000000000000000000815250905090565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610bcb57600080fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6000610cfa610c6561105b565b848460046000610c7361105b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf59190612297565b611063565b6001905092915050565b6000610d18610d1161105b565b848461122e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610db161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612051565b60405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610ea161105b565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2590612051565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9590611ff1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca906120b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612011565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161122191906120d1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129590612091565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130590611fd1565b60405180910390fd5b60008111611351576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134890612071565b60405180910390fd5b611359610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156113c75750611397610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156114215750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561147f576007548161143384610947565b61143d91906121b6565b111561147e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147590612031565b60405180910390fd5b5b64012a05f20061148e30610947565b101580156114a95750600a60149054906101000a900460ff16155b80156115035750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115425750611512610ae9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156115815750611551610ae9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156115d4576001600a60146101000a81548160ff02191690831515021790555060006115ac30610947565b90506115b7816117a6565b6000600a60146101000a81548160ff021916908315150217905550505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116239190612297565b925050819055506000819050600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156116d35750600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156116e5576116e2828561182a565b90505b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461173491906121b6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161179891906120d1565b60405180910390a350505050565b60006117b182611959565b9050600081111561182657600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611824573d6000803e3d6000fd5b505b5050565b60008060646008548561183d919061223d565b611847919061220c565b9050600060646009548661185b919061223d565b611865919061220c565b9050808261187391906121b6565b600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118c191906121b6565b925050819055503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef838561192391906121b6565b60405161193091906120d1565b60405180910390a38082866119459190612297565b61194f9190612297565b9250505092915050565b6000804790506000600267ffffffffffffffff81111561197c5761197b612428565b5b6040519080825280602002602001820160405280156119aa5781602001602082028036833780820191505090505b50905030816000815181106119c2576119c16123f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611a6457600080fd5b505afa158015611a78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a9c9190611c2e565b81600181518110611ab057611aaf6123f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b1730600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686611063565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008430426040518663ffffffff1660e01b8152600401611b7b9594939291906120ec565b600060405180830381600087803b158015611b9557600080fd5b505af1158015611ba9573d6000803e3d6000fd5b505050508147611bb99190612297565b92505050919050565b600081359050611bd1816126bf565b92915050565b600081519050611be6816126bf565b92915050565b600081359050611bfb816126d6565b92915050565b600060208284031215611c1757611c16612457565b5b6000611c2584828501611bc2565b91505092915050565b600060208284031215611c4457611c43612457565b5b6000611c5284828501611bd7565b91505092915050565b60008060408385031215611c7257611c71612457565b5b6000611c8085828601611bc2565b9250506020611c9185828601611bc2565b9150509250929050565b600080600060608486031215611cb457611cb3612457565b5b6000611cc286828701611bc2565b9350506020611cd386828701611bc2565b9250506040611ce486828701611bec565b9150509250925092565b60008060408385031215611d0557611d04612457565b5b6000611d1385828601611bc2565b9250506020611d2485828601611bec565b9150509250929050565b6000611d3a8383611d46565b60208301905092915050565b611d4f816122cb565b82525050565b611d5e816122cb565b82525050565b6000611d6f82612171565b611d798185612194565b9350611d8483612161565b8060005b83811015611db5578151611d9c8882611d2e565b9750611da783612187565b925050600181019050611d88565b5085935050505092915050565b611dcb816122dd565b82525050565b611dda81612320565b82525050565b611de981612332565b82525050565b6000611dfa8261217c565b611e0481856121a5565b9350611e14818560208601612368565b611e1d8161245c565b840191505092915050565b6000611e356023836121a5565b9150611e408261246d565b604082019050919050565b6000611e586026836121a5565b9150611e63826124bc565b604082019050919050565b6000611e7b6022836121a5565b9150611e868261250b565b604082019050919050565b6000611e9e6028836121a5565b9150611ea98261255a565b604082019050919050565b6000611ec16020836121a5565b9150611ecc826125a9565b602082019050919050565b6000611ee46029836121a5565b9150611eef826125d2565b604082019050919050565b6000611f076025836121a5565b9150611f1282612621565b604082019050919050565b6000611f2a6024836121a5565b9150611f3582612670565b604082019050919050565b611f4981612309565b82525050565b611f5881612313565b82525050565b6000602082019050611f736000830184611d55565b92915050565b6000602082019050611f8e6000830184611dc2565b92915050565b6000602082019050611fa96000830184611dd1565b92915050565b60006020820190508181036000830152611fc98184611def565b905092915050565b60006020820190508181036000830152611fea81611e28565b9050919050565b6000602082019050818103600083015261200a81611e4b565b9050919050565b6000602082019050818103600083015261202a81611e6e565b9050919050565b6000602082019050818103600083015261204a81611e91565b9050919050565b6000602082019050818103600083015261206a81611eb4565b9050919050565b6000602082019050818103600083015261208a81611ed7565b9050919050565b600060208201905081810360008301526120aa81611efa565b9050919050565b600060208201905081810360008301526120ca81611f1d565b9050919050565b60006020820190506120e66000830184611f40565b92915050565b600060a0820190506121016000830188611f40565b61210e6020830187611de0565b81810360408301526121208186611d64565b905061212f6060830185611d55565b61213c6080830184611f40565b9695505050505050565b600060208201905061215b6000830184611f4f565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006121c182612309565b91506121cc83612309565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122015761220061239b565b5b828201905092915050565b600061221782612309565b915061222283612309565b925082612232576122316123ca565b5b828204905092915050565b600061224882612309565b915061225383612309565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228c5761228b61239b565b5b828202905092915050565b60006122a282612309565b91506122ad83612309565b9250828210156122c0576122bf61239b565b5b828203905092915050565b60006122d6826122e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061232b82612344565b9050919050565b600061233d82612309565b9050919050565b600061234f82612356565b9050919050565b6000612361826122e9565b9050919050565b60005b8381101561238657808201518184015260208101905061236b565b83811115612395576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6126c8816122cb565b81146126d357600080fd5b50565b6126df81612309565b81146126ea57600080fd5b5056fea2646970667358221220077ed2018309a2a9e91cf18da0fd8085aa7f343eb9fecd0a8ade84d246fcb19a64736f6c63430008070033

Deployed Bytecode Sourcemap

24930:8473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26749:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27580:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25065:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27026:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25689:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27749:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26935:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28023:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28483:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25113:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29432:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25728:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27129:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16438:148;;;;;;;;;;;;;:::i;:::-;;25396:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15795:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26840:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25767:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28789:209;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28246:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27254:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27429:143;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28606:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16741:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26749:83;26786:13;26819:5;;;;;;;;;;;;;;;;;26812:12;;26749:83;:::o;27580:161::-;27655:4;27672:39;27681:12;:10;:12::i;:::-;27695:7;27704:6;27672:8;:39::i;:::-;27729:4;27722:11;;27580:161;;;;:::o;25065:41::-;;;;;;;;;;;;;:::o;27026:95::-;27079:7;27106;;27099:14;;27026:95;:::o;25689:32::-;;;;:::o;27749:266::-;27847:4;27864:36;27874:6;27882:9;27893:6;27864:9;:36::i;:::-;27911:74;27920:6;27928:12;:10;:12::i;:::-;27978:6;27942:11;:19;27954:6;27942:19;;;;;;;;;;;;;;;:33;27962:12;:10;:12::i;:::-;27942:33;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;27911:8;:74::i;:::-;28003:4;27996:11;;27749:266;;;;;:::o;26935:83::-;26976:5;25671:1;26994:16;;26935:83;:::o;28023:215::-;28111:4;28128:80;28137:12;:10;:12::i;:::-;28151:7;28197:10;28160:11;:25;28172:12;:10;:12::i;:::-;28160:25;;;;;;;;;;;;;;;:34;28186:7;28160:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;28128:8;:80::i;:::-;28226:4;28219:11;;28023:215;;;;:::o;28483:111::-;16017:12;:10;:12::i;:::-;16007:22;;:6;;;;;;;;;;:22;;;15999:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28582:4:::1;28552:18;:27;28571:7;28552:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28483:111:::0;:::o;25113:28::-;;;;;;;;;;;;;:::o;29432:123::-;29496:4;29520:18;:27;29539:7;29520:27;;;;;;;;;;;;;;;;;;;;;;;;;29513:34;;29432:123;;;:::o;25728:32::-;;;;:::o;27129:117::-;27195:7;27222;:16;27230:7;27222:16;;;;;;;;;;;;;;;;27215:23;;27129:117;;;:::o;16438:148::-;16017:12;:10;:12::i;:::-;16007:22;;:6;;;;;;;;;;:22;;;15999:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16545:1:::1;16508:40;;16529:6;::::0;::::1;;;;;;;;16508:40;;;;;;;;;;;;16576:1;16559:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;16438:148::o:0;25396:46::-;;;;:::o;15795:79::-;15833:7;15860:6;;;;;;;;;;;15853:13;;15795:79;:::o;26840:87::-;26879:13;26912:7;;;;;;;;;;;;;;;;;26905:14;;26840:87;:::o;25767:77::-;;;;;;;;;;;;;:::o;28789:209::-;28893:18;:30;28912:10;28893:30;;;;;;;;;;;;;;;;;;;;;;;;;28885:39;;;;;;28951:6;28935:7;:13;28943:4;28935:13;;;;;;;;;;;;;;;:22;;;;28983:6;28969:7;:11;28977:2;28969:11;;;;;;;;;;;;;;;:20;;;;28789:209;;;:::o;28246:225::-;28339:4;28356:85;28365:12;:10;:12::i;:::-;28379:7;28425:15;28388:11;:25;28400:12;:10;:12::i;:::-;28388:25;;;;;;;;;;;;;;;:34;28414:7;28388:34;;;;;;;;;;;;;;;;:52;;;;:::i;:::-;28356:8;:85::i;:::-;28459:4;28452:11;;28246:225;;;;:::o;27254:167::-;27332:4;27349:42;27359:12;:10;:12::i;:::-;27373:9;27384:6;27349:9;:42::i;:::-;27409:4;27402:11;;27254:167;;;;:::o;27429:143::-;27510:7;27537:11;:18;27549:5;27537:18;;;;;;;;;;;;;;;:27;27556:7;27537:27;;;;;;;;;;;;;;;;27530:34;;27429:143;;;;:::o;28606:110::-;16017:12;:10;:12::i;:::-;16007:22;;:6;;;;;;;;;;:22;;;15999:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;28703:5:::1;28673:18;:27;28692:7;28673:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;28606:110:::0;:::o;16741:244::-;16017:12;:10;:12::i;:::-;16007:22;;:6;;;;;;;;;;:22;;;15999:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16850:1:::1;16830:22;;:8;:22;;;;16822:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;16940:8;16911:38;;16932:6;::::0;::::1;;;;;;;;16911:38;;;;;;;;;;;;16969:8;16960:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;16741:244:::0;:::o;5627:115::-;5680:15;5723:10;5708:26;;5627:115;:::o;29567:337::-;29677:1;29660:19;;:5;:19;;;;29652:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29758:1;29739:21;;:7;:21;;;;29731:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29842:6;29812:11;:18;29824:5;29812:18;;;;;;;;;;;;;;;:27;29831:7;29812:27;;;;;;;;;;;;;;;:36;;;;29880:7;29864:32;;29873:5;29864:32;;;29889:6;29864:32;;;;;;:::i;:::-;;;;;;;;29567:337;;;:::o;29912:1280::-;30050:1;30034:18;;:4;:18;;;;30026:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;30127:1;30113:16;;:2;:16;;;;30105:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30197:1;30188:6;:10;30180:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30277:7;:5;:7::i;:::-;30269:15;;:4;:15;;;;:32;;;;;30294:7;:5;:7::i;:::-;30288:13;;:2;:13;;;;30269:32;:55;;;;;30311:13;;;;;;;;;;;30305:19;;:2;:19;;;;30269:55;30266:164;;;30373:12;;30363:6;30347:13;30357:2;30347:9;:13::i;:::-;:22;;;;:::i;:::-;:38;;30339:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30266:164;25502:9;30469:24;30487:4;30469:9;:24::i;:::-;:49;;:62;;;;;30523:8;;;;;;;;;;;30522:9;30469:62;:87;;;;;30543:13;;;;;;;;;;;30535:21;;:4;:21;;;;30469:87;:106;;;;;30568:7;:5;:7::i;:::-;30560:15;;:4;:15;;;;30469:106;:123;;;;;30585:7;:5;:7::i;:::-;30579:13;;:2;:13;;;;30469:123;30465:305;;;30620:4;30609:8;;:15;;;;;;;;;;;;;;;;;;30639:18;30660:24;30678:4;30660:9;:24::i;:::-;30639:45;;30699:28;30716:10;30699:16;:28::i;:::-;30753:5;30742:8;;:16;;;;;;;;;;;;;;;;;;30594:176;30465:305;30807:6;30790:7;:13;30798:4;30790:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;30824:22;30849:6;30824:31;;30964:18;:24;30983:4;30964:24;;;;;;;;;;;;;;;;;;;;;;;;;30963:25;:52;;;;;30993:18;:22;31012:2;30993:22;;;;;;;;;;;;;;;;;;;;;;;;;30992:23;30963:52;30960:124;;;31048:24;31059:6;31067:4;31048:10;:24::i;:::-;31031:41;;30960:124;31120:14;31105:7;:11;31113:2;31105:11;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;31165:2;31150:34;;31159:4;31150:34;;;31169:14;31150:34;;;;;;:::i;:::-;;;;;;;;30015:1177;29912:1280;;;:::o;31210:212::-;31272:17;31292:24;31309:6;31292:16;:24::i;:::-;31272:44;;31353:1;31341:9;:13;31337:77;;;31377:16;;;;;;;;;;;31369:34;;:45;31404:9;31369:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31337:77;31261:161;31210:212;:::o;29009:405::-;29076:7;29096:20;29144:3;29128:13;;29119:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;29096:51;;29159:20;29207:3;29191:13;;29182:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;29159:51;;29263:12;29248;:27;;;;:::i;:::-;29222:7;:22;29238:4;29222:22;;;;;;;;;;;;;;;;:53;;;;;;;:::i;:::-;;;;;;;;29315:4;29291:59;;29301:4;29291:59;;;29337:12;29322;:27;;;;:::i;:::-;29291:59;;;;;;:::i;:::-;;;;;;;;29393:12;29378;29369:6;:21;;;;:::i;:::-;:36;;;;:::i;:::-;29361:45;;;;29009:405;;;;:::o;31986:722::-;32050:7;32070:22;32095:21;32070:46;;32187:21;32225:1;32211:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32187:40;;32256:4;32238;32243:1;32238:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;32282:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32272:4;32277:1;32272:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;32317:62;32334:4;32349:15;;;;;;;;;;;32367:11;32317:8;:62::i;:::-;32418:15;;;;;;;;;;;:66;;;32499:11;32525:1;32569:4;32596;32616:15;32418:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32685:14;32661:21;:38;;;;:::i;:::-;32653:47;;;;31986:722;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:143::-;209:5;240:6;234:13;225:22;;256:33;283:5;256:33;:::i;:::-;152:143;;;;:::o;301:139::-;347:5;385:6;372:20;363:29;;401:33;428:5;401:33;:::i;:::-;301:139;;;;:::o;446:329::-;505:6;554:2;542:9;533:7;529:23;525:32;522:119;;;560:79;;:::i;:::-;522:119;680:1;705:53;750:7;741:6;730:9;726:22;705:53;:::i;:::-;695:63;;651:117;446:329;;;;:::o;781:351::-;851:6;900:2;888:9;879:7;875:23;871:32;868:119;;;906:79;;:::i;:::-;868:119;1026:1;1051:64;1107:7;1098:6;1087:9;1083:22;1051:64;:::i;:::-;1041:74;;997:128;781:351;;;;:::o;1138:474::-;1206:6;1214;1263:2;1251:9;1242:7;1238:23;1234:32;1231:119;;;1269:79;;:::i;:::-;1231:119;1389:1;1414:53;1459:7;1450:6;1439:9;1435:22;1414:53;:::i;:::-;1404:63;;1360:117;1516:2;1542:53;1587:7;1578:6;1567:9;1563:22;1542:53;:::i;:::-;1532:63;;1487:118;1138:474;;;;;:::o;1618:619::-;1695:6;1703;1711;1760:2;1748:9;1739:7;1735:23;1731:32;1728:119;;;1766:79;;:::i;:::-;1728:119;1886:1;1911:53;1956:7;1947:6;1936:9;1932:22;1911:53;:::i;:::-;1901:63;;1857:117;2013:2;2039:53;2084:7;2075:6;2064:9;2060:22;2039:53;:::i;:::-;2029:63;;1984:118;2141:2;2167:53;2212:7;2203:6;2192:9;2188:22;2167:53;:::i;:::-;2157:63;;2112:118;1618:619;;;;;:::o;2243:474::-;2311:6;2319;2368:2;2356:9;2347:7;2343:23;2339:32;2336:119;;;2374:79;;:::i;:::-;2336:119;2494:1;2519:53;2564:7;2555:6;2544:9;2540:22;2519:53;:::i;:::-;2509:63;;2465:117;2621:2;2647:53;2692:7;2683:6;2672:9;2668:22;2647:53;:::i;:::-;2637:63;;2592:118;2243:474;;;;;:::o;2723:179::-;2792:10;2813:46;2855:3;2847:6;2813:46;:::i;:::-;2891:4;2886:3;2882:14;2868:28;;2723:179;;;;:::o;2908:108::-;2985:24;3003:5;2985:24;:::i;:::-;2980:3;2973:37;2908:108;;:::o;3022:118::-;3109:24;3127:5;3109:24;:::i;:::-;3104:3;3097:37;3022:118;;:::o;3176:732::-;3295:3;3324:54;3372:5;3324:54;:::i;:::-;3394:86;3473:6;3468:3;3394:86;:::i;:::-;3387:93;;3504:56;3554:5;3504:56;:::i;:::-;3583:7;3614:1;3599:284;3624:6;3621:1;3618:13;3599:284;;;3700:6;3694:13;3727:63;3786:3;3771:13;3727:63;:::i;:::-;3720:70;;3813:60;3866:6;3813:60;:::i;:::-;3803:70;;3659:224;3646:1;3643;3639:9;3634:14;;3599:284;;;3603:14;3899:3;3892:10;;3300:608;;;3176:732;;;;:::o;3914:109::-;3995:21;4010:5;3995:21;:::i;:::-;3990:3;3983:34;3914:109;;:::o;4029:185::-;4143:64;4201:5;4143:64;:::i;:::-;4138:3;4131:77;4029:185;;:::o;4220:147::-;4315:45;4354:5;4315:45;:::i;:::-;4310:3;4303:58;4220:147;;:::o;4373:364::-;4461:3;4489:39;4522:5;4489:39;:::i;:::-;4544:71;4608:6;4603:3;4544:71;:::i;:::-;4537:78;;4624:52;4669:6;4664:3;4657:4;4650:5;4646:16;4624:52;:::i;:::-;4701:29;4723:6;4701:29;:::i;:::-;4696:3;4692:39;4685:46;;4465:272;4373:364;;;;:::o;4743:366::-;4885:3;4906:67;4970:2;4965:3;4906:67;:::i;:::-;4899:74;;4982:93;5071:3;4982:93;:::i;:::-;5100:2;5095:3;5091:12;5084:19;;4743:366;;;:::o;5115:::-;5257:3;5278:67;5342:2;5337:3;5278:67;:::i;:::-;5271:74;;5354:93;5443:3;5354:93;:::i;:::-;5472:2;5467:3;5463:12;5456:19;;5115:366;;;:::o;5487:::-;5629:3;5650:67;5714:2;5709:3;5650:67;:::i;:::-;5643:74;;5726:93;5815:3;5726:93;:::i;:::-;5844:2;5839:3;5835:12;5828:19;;5487:366;;;:::o;5859:::-;6001:3;6022:67;6086:2;6081:3;6022:67;:::i;:::-;6015:74;;6098:93;6187:3;6098:93;:::i;:::-;6216:2;6211:3;6207:12;6200:19;;5859:366;;;:::o;6231:::-;6373:3;6394:67;6458:2;6453:3;6394:67;:::i;:::-;6387:74;;6470:93;6559:3;6470:93;:::i;:::-;6588:2;6583:3;6579:12;6572:19;;6231:366;;;:::o;6603:::-;6745:3;6766:67;6830:2;6825:3;6766:67;:::i;:::-;6759:74;;6842:93;6931:3;6842:93;:::i;:::-;6960:2;6955:3;6951:12;6944:19;;6603:366;;;:::o;6975:::-;7117:3;7138:67;7202:2;7197:3;7138:67;:::i;:::-;7131:74;;7214:93;7303:3;7214:93;:::i;:::-;7332:2;7327:3;7323:12;7316:19;;6975:366;;;:::o;7347:::-;7489:3;7510:67;7574:2;7569:3;7510:67;:::i;:::-;7503:74;;7586:93;7675:3;7586:93;:::i;:::-;7704:2;7699:3;7695:12;7688:19;;7347:366;;;:::o;7719:118::-;7806:24;7824:5;7806:24;:::i;:::-;7801:3;7794:37;7719:118;;:::o;7843:112::-;7926:22;7942:5;7926:22;:::i;:::-;7921:3;7914:35;7843:112;;:::o;7961:222::-;8054:4;8092:2;8081:9;8077:18;8069:26;;8105:71;8173:1;8162:9;8158:17;8149:6;8105:71;:::i;:::-;7961:222;;;;:::o;8189:210::-;8276:4;8314:2;8303:9;8299:18;8291:26;;8327:65;8389:1;8378:9;8374:17;8365:6;8327:65;:::i;:::-;8189:210;;;;:::o;8405:276::-;8525:4;8563:2;8552:9;8548:18;8540:26;;8576:98;8671:1;8660:9;8656:17;8647:6;8576:98;:::i;:::-;8405:276;;;;:::o;8687:313::-;8800:4;8838:2;8827:9;8823:18;8815:26;;8887:9;8881:4;8877:20;8873:1;8862:9;8858:17;8851:47;8915:78;8988:4;8979:6;8915:78;:::i;:::-;8907:86;;8687:313;;;;:::o;9006:419::-;9172:4;9210:2;9199:9;9195:18;9187:26;;9259:9;9253:4;9249:20;9245:1;9234:9;9230:17;9223:47;9287:131;9413:4;9287:131;:::i;:::-;9279:139;;9006:419;;;:::o;9431:::-;9597:4;9635:2;9624:9;9620:18;9612:26;;9684:9;9678:4;9674:20;9670:1;9659:9;9655:17;9648:47;9712:131;9838:4;9712:131;:::i;:::-;9704:139;;9431:419;;;:::o;9856:::-;10022:4;10060:2;10049:9;10045:18;10037:26;;10109:9;10103:4;10099:20;10095:1;10084:9;10080:17;10073:47;10137:131;10263:4;10137:131;:::i;:::-;10129:139;;9856:419;;;:::o;10281:::-;10447:4;10485:2;10474:9;10470:18;10462:26;;10534:9;10528:4;10524:20;10520:1;10509:9;10505:17;10498:47;10562:131;10688:4;10562:131;:::i;:::-;10554:139;;10281:419;;;:::o;10706:::-;10872:4;10910:2;10899:9;10895:18;10887:26;;10959:9;10953:4;10949:20;10945:1;10934:9;10930:17;10923:47;10987:131;11113:4;10987:131;:::i;:::-;10979:139;;10706:419;;;:::o;11131:::-;11297:4;11335:2;11324:9;11320:18;11312:26;;11384:9;11378:4;11374:20;11370:1;11359:9;11355:17;11348:47;11412:131;11538:4;11412:131;:::i;:::-;11404:139;;11131:419;;;:::o;11556:::-;11722:4;11760:2;11749:9;11745:18;11737:26;;11809:9;11803:4;11799:20;11795:1;11784:9;11780:17;11773:47;11837:131;11963:4;11837:131;:::i;:::-;11829:139;;11556:419;;;:::o;11981:::-;12147:4;12185:2;12174:9;12170:18;12162:26;;12234:9;12228:4;12224:20;12220:1;12209:9;12205:17;12198:47;12262:131;12388:4;12262:131;:::i;:::-;12254:139;;11981:419;;;:::o;12406:222::-;12499:4;12537:2;12526:9;12522:18;12514:26;;12550:71;12618:1;12607:9;12603:17;12594:6;12550:71;:::i;:::-;12406:222;;;;:::o;12634:831::-;12897:4;12935:3;12924:9;12920:19;12912:27;;12949:71;13017:1;13006:9;13002:17;12993:6;12949:71;:::i;:::-;13030:80;13106:2;13095:9;13091:18;13082:6;13030:80;:::i;:::-;13157:9;13151:4;13147:20;13142:2;13131:9;13127:18;13120:48;13185:108;13288:4;13279:6;13185:108;:::i;:::-;13177:116;;13303:72;13371:2;13360:9;13356:18;13347:6;13303:72;:::i;:::-;13385:73;13453:3;13442:9;13438:19;13429:6;13385:73;:::i;:::-;12634:831;;;;;;;;:::o;13471:214::-;13560:4;13598:2;13587:9;13583:18;13575:26;;13611:67;13675:1;13664:9;13660:17;13651:6;13611:67;:::i;:::-;13471:214;;;;:::o;13772:132::-;13839:4;13862:3;13854:11;;13892:4;13887:3;13883:14;13875:22;;13772:132;;;:::o;13910:114::-;13977:6;14011:5;14005:12;13995:22;;13910:114;;;:::o;14030:99::-;14082:6;14116:5;14110:12;14100:22;;14030:99;;;:::o;14135:113::-;14205:4;14237;14232:3;14228:14;14220:22;;14135:113;;;:::o;14254:184::-;14353:11;14387:6;14382:3;14375:19;14427:4;14422:3;14418:14;14403:29;;14254:184;;;;:::o;14444:169::-;14528:11;14562:6;14557:3;14550:19;14602:4;14597:3;14593:14;14578:29;;14444:169;;;;:::o;14619:305::-;14659:3;14678:20;14696:1;14678:20;:::i;:::-;14673:25;;14712:20;14730:1;14712:20;:::i;:::-;14707:25;;14866:1;14798:66;14794:74;14791:1;14788:81;14785:107;;;14872:18;;:::i;:::-;14785:107;14916:1;14913;14909:9;14902:16;;14619:305;;;;:::o;14930:185::-;14970:1;14987:20;15005:1;14987:20;:::i;:::-;14982:25;;15021:20;15039:1;15021:20;:::i;:::-;15016:25;;15060:1;15050:35;;15065:18;;:::i;:::-;15050:35;15107:1;15104;15100:9;15095:14;;14930:185;;;;:::o;15121:348::-;15161:7;15184:20;15202:1;15184:20;:::i;:::-;15179:25;;15218:20;15236:1;15218:20;:::i;:::-;15213:25;;15406:1;15338:66;15334:74;15331:1;15328:81;15323:1;15316:9;15309:17;15305:105;15302:131;;;15413:18;;:::i;:::-;15302:131;15461:1;15458;15454:9;15443:20;;15121:348;;;;:::o;15475:191::-;15515:4;15535:20;15553:1;15535:20;:::i;:::-;15530:25;;15569:20;15587:1;15569:20;:::i;:::-;15564:25;;15608:1;15605;15602:8;15599:34;;;15613:18;;:::i;:::-;15599:34;15658:1;15655;15651:9;15643:17;;15475:191;;;;:::o;15672:96::-;15709:7;15738:24;15756:5;15738:24;:::i;:::-;15727:35;;15672:96;;;:::o;15774:90::-;15808:7;15851:5;15844:13;15837:21;15826:32;;15774:90;;;:::o;15870:126::-;15907:7;15947:42;15940:5;15936:54;15925:65;;15870:126;;;:::o;16002:77::-;16039:7;16068:5;16057:16;;16002:77;;;:::o;16085:86::-;16120:7;16160:4;16153:5;16149:16;16138:27;;16085:86;;;:::o;16177:153::-;16254:9;16287:37;16318:5;16287:37;:::i;:::-;16274:50;;16177:153;;;:::o;16336:121::-;16394:9;16427:24;16445:5;16427:24;:::i;:::-;16414:37;;16336:121;;;:::o;16463:126::-;16513:9;16546:37;16577:5;16546:37;:::i;:::-;16533:50;;16463:126;;;:::o;16595:113::-;16645:9;16678:24;16696:5;16678:24;:::i;:::-;16665:37;;16595:113;;;:::o;16714:307::-;16782:1;16792:113;16806:6;16803:1;16800:13;16792:113;;;16891:1;16886:3;16882:11;16876:18;16872:1;16867:3;16863:11;16856:39;16828:2;16825:1;16821:10;16816:15;;16792:113;;;16923:6;16920:1;16917:13;16914:101;;;17003:1;16994:6;16989:3;16985:16;16978:27;16914:101;16763:258;16714:307;;;:::o;17027:180::-;17075:77;17072:1;17065:88;17172:4;17169:1;17162:15;17196:4;17193:1;17186:15;17213:180;17261:77;17258:1;17251:88;17358:4;17355:1;17348:15;17382:4;17379:1;17372:15;17399:180;17447:77;17444:1;17437:88;17544:4;17541:1;17534:15;17568:4;17565:1;17558:15;17585:180;17633:77;17630:1;17623:88;17730:4;17727:1;17720:15;17754:4;17751:1;17744:15;17894:117;18003:1;18000;17993:12;18017:102;18058:6;18109:2;18105:7;18100:2;18093:5;18089:14;18085:28;18075:38;;18017:102;;;:::o;18125:222::-;18265:34;18261:1;18253:6;18249:14;18242:58;18334:5;18329:2;18321:6;18317:15;18310:30;18125:222;:::o;18353:225::-;18493:34;18489:1;18481:6;18477:14;18470:58;18562:8;18557:2;18549:6;18545:15;18538:33;18353:225;:::o;18584:221::-;18724:34;18720:1;18712:6;18708:14;18701:58;18793:4;18788:2;18780:6;18776:15;18769:29;18584:221;:::o;18811:227::-;18951:34;18947:1;18939:6;18935:14;18928:58;19020:10;19015:2;19007:6;19003:15;18996:35;18811:227;:::o;19044:182::-;19184:34;19180:1;19172:6;19168:14;19161:58;19044:182;:::o;19232:228::-;19372:34;19368:1;19360:6;19356:14;19349:58;19441:11;19436:2;19428:6;19424:15;19417:36;19232:228;:::o;19466:224::-;19606:34;19602:1;19594:6;19590:14;19583:58;19675:7;19670:2;19662:6;19658:15;19651:32;19466:224;:::o;19696:223::-;19836:34;19832:1;19824:6;19820:14;19813:58;19905:6;19900:2;19892:6;19888:15;19881:31;19696:223;:::o;19925:122::-;19998:24;20016:5;19998:24;:::i;:::-;19991:5;19988:35;19978:63;;20037:1;20034;20027:12;19978:63;19925:122;:::o;20053:::-;20126:24;20144:5;20126:24;:::i;:::-;20119:5;20116:35;20106:63;;20165:1;20162;20155:12;20106:63;20053:122;:::o

Swarm Source

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