ETH Price: $3,159.89 (-5.31%)
Gas: 8 Gwei

Token

Freedom Inu (FRDM)
 

Overview

Max Total Supply

100,000,000,000,000 FRDM

Holders

292 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0 FRDM

Value
$0.00
0x9e21f8539224953e9242e6e37152b7f595223762
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Freedom Inu is a community driven cryptocurrency project to give people hope and confidence in the crypto space!

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FreedomInu

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-06-26
*/

/*
Telegram: https://t.me/FreedomINU
Website: freedominu.io

This launch brought to you by A+ Tokens Calls, please join their telegram channel - https://t.me/APlusTokens
*/
pragma solidity ^0.6.12;
// SPDX-License-Identifier: Unlicensed

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

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

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

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

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

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

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

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

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

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

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

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

        /**
        * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
        * `recipient`, forwarding all available gas and reverting on errors.
        *
        * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
        * of certain opcodes, possibly making contracts go over the 2300 gas limit
        * imposed by `transfer`, making them unable to receive funds via
        * `transfer`. {sendValue} removes this limitation.
        *
        * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
        *
        * IMPORTANT: because control is transferred to `recipient`, care must be
        * taken to not create reentrancy vulnerabilities. Consider using
        * {ReentrancyGuard} or the
        * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
        */
        function sendValue(address payable recipient, uint256 amount) internal {
            require(address(this).balance >= amount, "Address: insufficient balance");

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

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

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

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

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

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

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

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

    contract Ownable is Context {
        address private _owner;
        address private _previousOwner;
        uint256 private _lockTime;

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

        /**
        * @dev Initializes the contract setting the deployer as the initial owner.
        */
        constructor () internal {
            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;
        }

        function geUnlockTime() public view returns (uint256) {
            return _lockTime;
        }

    }  

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

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

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

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

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

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

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

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

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

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

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

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

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

        function initialize(address, address) external;
    }

    interface 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 implementation
    contract FreedomInu is Context, IERC20, Ownable {
        using SafeMath for uint256;
        using Address for address;

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

        mapping (address => bool) private _isExcludedFromFee;
    
        mapping (address => bool) private _isExcluded;
        address[] private _excluded;
        mapping (address => bool) private _isBlackListedBot;
        address[] private _blackListedBots;
    
        uint256 private constant MAX = ~uint256(0);
        uint256 private _tTotal = 100000000 * 10**6 * 10**9;
        uint256 private _rTotal = (MAX - (MAX % _tTotal));
        uint256 private _tFeeTotal;
        uint256 private _CoolDown = 45 seconds;

        string private _name = 'Freedom Inu';
        string private _symbol = 'FRDM';
        uint8 private _decimals = 9;
         
        uint256 private _taxFee = 2;
        uint256 private _teamFee = 10;
        uint256 private _previousTaxFee = _taxFee;
        uint256 private _previousteamFee = _teamFee;

        address payable private _teamWalletAddress;
        address payable private _charityWalletAddress;
        
        IUniswapV2Router02 public immutable uniswapV2Router;
        address public immutable uniswapV2Pair;

        bool inSwap = false;
        bool private swapEnabled = true;
        bool private tradingEnabled = false;
        bool private cooldownEnabled = true;

        uint256 public _maxTxAmount = 300000 * 10**6 * 10**9; 
        //no max tx limit at deploy
        uint256 private _numOfTokensToExchangeForteam = 500000000000000;

        event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap);
        event SwapEnabledUpdated(bool enabled);

        modifier lockTheSwap {
            inSwap = true;
            _;
            inSwap = false;
        }

        constructor (address payable teamWalletAddress, address payable charityWalletAddress) public {
            _teamWalletAddress = teamWalletAddress;
            _charityWalletAddress = charityWalletAddress;
            _rOwned[_msgSender()] = _rTotal;

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

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

            // Exclude owner and this contract from fee
            _isExcludedFromFee[owner()] = true;
            _isExcludedFromFee[address(this)] = true;
            
            _isBlackListedBot[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
            _blackListedBots.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));
            
            _isBlackListedBot[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
            _blackListedBots.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));
            
            _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
            _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
            
            _isBlackListedBot[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
            _blackListedBots.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));
    
            _isBlackListedBot[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
            _blackListedBots.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));
    
            _isBlackListedBot[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
            _blackListedBots.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));
    
            _isBlackListedBot[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
            _blackListedBots.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));
    
            _isBlackListedBot[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
            _blackListedBots.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));
    
            _isBlackListedBot[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
            _blackListedBots.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));
    
            _isBlackListedBot[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
            _blackListedBots.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));
    
            _isBlackListedBot[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
            _blackListedBots.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));
            
            _isBlackListedBot[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
            _blackListedBots.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));
            
            _isBlackListedBot[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
            _blackListedBots.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));
            
            _isBlackListedBot[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
            _blackListedBots.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));
            
            _isBlackListedBot[address(0x000000000000084e91743124a982076C59f10084)] = true;
            _blackListedBots.push(address(0x000000000000084e91743124a982076C59f10084));

            _isBlackListedBot[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
            _blackListedBots.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));
            
            _isBlackListedBot[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
            _blackListedBots.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));
            
            _isBlackListedBot[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
            _blackListedBots.push(address(0x000000005804B22091aa9830E50459A15E7C9241));
            
            _isBlackListedBot[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
            _blackListedBots.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));
            
            _isBlackListedBot[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
            _blackListedBots.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));
            
            _isBlackListedBot[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
            _blackListedBots.push(address(0x0000000000007673393729D5618DC555FD13f9aA));
            
            _isBlackListedBot[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
            _blackListedBots.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));
            
            _isBlackListedBot[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
            _blackListedBots.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));
            
            _isBlackListedBot[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
            _blackListedBots.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));
            
            _isBlackListedBot[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
            _blackListedBots.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));
            
            _isBlackListedBot[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
            _blackListedBots.push(address(0x72b30cDc1583224381132D379A052A6B10725415));
            
            _isBlackListedBot[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
            _blackListedBots.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

            _isBlackListedBot[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
            _blackListedBots.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
            _blackListedBots.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

            _isBlackListedBot[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
            _blackListedBots.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

            _isBlackListedBot[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
            _blackListedBots.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

            _isBlackListedBot[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
            _blackListedBots.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));
            
            _isBlackListedBot[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
            _blackListedBots.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));
            
            _isBlackListedBot[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
            _blackListedBots.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));
            
            _isBlackListedBot[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
            _blackListedBots.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));
            
            
            emit Transfer(address(0), _msgSender(), _tTotal);
        }

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

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

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

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

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

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

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

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

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

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

        function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
            _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
            return true;
        }

        function isExcluded(address account) public view returns (bool) {
            return _isExcluded[account];
        }
        
        function isBlackListed(address account) public view returns (bool) {
            return _isBlackListedBot[account];
        }

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

        function deliver(uint256 tAmount) public {
            address sender = _msgSender();
            require(!_isExcluded[sender], "Excluded addresses cannot call this function");
            (uint256 rAmount,,,,,) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rTotal = _rTotal.sub(rAmount);
            _tFeeTotal = _tFeeTotal.add(tAmount);
        }

        function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) {
            require(tAmount <= _tTotal, "Amount must be less than supply");
            if (!deductTransferFee) {
                (uint256 rAmount,,,,,) = _getValues(tAmount);
                return rAmount;
            } else {
                (,uint256 rTransferAmount,,,,) = _getValues(tAmount);
                return rTransferAmount;
            }
        }

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

        function addBotToBlackList(address account) external onlyOwner() {
            require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not blacklist Uniswap router.');
            require(!_isBlackListedBot[account], "Account is already blacklisted");
            _isBlackListedBot[account] = true;
            _blackListedBots.push(account);
        }
    
        function removeBotFromBlackList(address account) external onlyOwner() {
            require(_isBlackListedBot[account], "Account is not blacklisted");
            for (uint256 i = 0; i < _blackListedBots.length; i++) {
                if (_blackListedBots[i] == account) {
                    _blackListedBots[i] = _blackListedBots[_blackListedBots.length - 1];
                    _isBlackListedBot[account] = false;
                    _blackListedBots.pop();
                    break;
                }
            }
        }

        function removeAllFee() private {
            if(_taxFee == 0 && _teamFee == 0) return;
            
            _previousTaxFee = _taxFee;
            _previousteamFee = _teamFee;
            
            _taxFee = 0;
            _teamFee = 0;
        }
    
        function restoreAllFee() private {
            _taxFee = _previousTaxFee;
            _teamFee = _previousteamFee;
        }
    
        function isExcludedFromFee(address account) public view returns(bool) {
            return _isExcludedFromFee[account];
        }
        
        function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
            _maxTxAmount = _tTotal.mul(maxTxPercent).div(
            10**2
        );
        }

        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 sender, address recipient, uint256 amount) private {
            require(sender != address(0), "ERC20: transfer from the zero address");
            require(recipient != address(0), "ERC20: transfer to the zero address");
            require(amount > 0, "Transfer amount must be greater than zero");
            require(!_isBlackListedBot[recipient], "You have no power here!");
            require(!_isBlackListedBot[sender], "You have no power here!");

            if(sender != owner() && recipient != owner()) {
                    
                    require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
                
                    //you can't trade this on a dex until trading enabled
                    if (sender == uniswapV2Pair || recipient == uniswapV2Pair) { require(tradingEnabled, "Trading is not enabled yet");}
              
            }
            
            
             //cooldown logic starts
             
             if(cooldownEnabled) {
              
              //perform all cooldown checks below only if enabled
              
                      if (sender == uniswapV2Pair ) {
                        
                        //they just bought add cooldown    
                        if (!_isExcluded[recipient]) { timestamp[recipient] = block.timestamp.add(_CoolDown); }

                      }
                      

                      // exclude owner and uniswap
                      if(sender != owner() && sender != uniswapV2Pair) {

                        // dont apply cooldown to other excluded addresses
                        if (!_isExcluded[sender]) { require(block.timestamp >= timestamp[sender], "Cooldown"); }

                      }
              
             }

            // is the token balance of this contract address over the min number of
            // tokens that we need to initiate a swap?
            // also, don't get caught in a circular team event.
            // also, don't swap if sender is uniswap pair.
            uint256 contractTokenBalance = balanceOf(address(this));
            
            if(contractTokenBalance >= _maxTxAmount)
            {
                contractTokenBalance = _maxTxAmount;
            }
            
            bool overMinTokenBalance = contractTokenBalance >= _numOfTokensToExchangeForteam;
            if (!inSwap && swapEnabled && overMinTokenBalance && sender != uniswapV2Pair) {
                // We need to swap the current tokens to ETH and send to the team wallet
                swapTokensForEth(contractTokenBalance);
                
                uint256 contractETHBalance = address(this).balance;
                if(contractETHBalance > 0) {
                    sendETHToteam(address(this).balance);
                }
            }
            
            //indicates if fee should be deducted from transfer
            bool takeFee = true;
            
            //if any account belongs to _isExcludedFromFee account then remove the fee
            if(_isExcludedFromFee[sender] || _isExcludedFromFee[recipient]){
                takeFee = false;
            }
            
            //transfer amount, it will take tax and team fee
            _tokenTransfer(sender,recipient,amount,takeFee);
        }

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

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

            // make the swap
            uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
                tokenAmount,
                0, // accept any amount of ETH
                path,
                address(this),
                block.timestamp
            );
        }
        
        function sendETHToteam(uint256 amount) private {
            _teamWalletAddress.transfer(amount.div(2));
            _charityWalletAddress.transfer(amount.div(2));
        }
        
        function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee) private {
            if(!takeFee)
                removeAllFee();

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

            if(!takeFee)
                restoreAllFee();
        }

        function _transferStandard(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _taketeam(tteam); 
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getValues(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);    
            _taketeam(tteam);           
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); 
            _taketeam(tteam);   
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getValues(tAmount);
            _tOwned[sender] = _tOwned[sender].sub(tAmount);
            _rOwned[sender] = _rOwned[sender].sub(rAmount);
            _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
            _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);   
            _taketeam(tteam);         
            _reflectFee(rFee, tFee);
            emit Transfer(sender, recipient, tTransferAmount);
        }

        function _taketeam(uint256 tteam) private {
            uint256 currentRate =  _getRate();
            uint256 rteam = tteam.mul(currentRate);
            _rOwned[address(this)] = _rOwned[address(this)].add(rteam);
            if(_isExcluded[address(this)])
                _tOwned[address(this)] = _tOwned[address(this)].add(tteam);
        }

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

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

        function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) {
            (uint256 tTransferAmount, uint256 tFee, uint256 tteam) = _getTValues(tAmount, _taxFee, _teamFee);
            uint256 currentRate =  _getRate();
            (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, currentRate);
            return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tteam);
        }

        function _getTValues(uint256 tAmount, uint256 taxFee, uint256 teamFee) private pure returns (uint256, uint256, uint256) {
            uint256 tFee = tAmount.mul(taxFee).div(100);
            uint256 tteam = tAmount.mul(teamFee).div(100);
            uint256 tTransferAmount = tAmount.sub(tFee).sub(tteam);
            return (tTransferAmount, tFee, tteam);
        }

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

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

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

        function _getMaxTxAmount() private view returns(uint256) {
            return _maxTxAmount;
        }

        function _getETHBalance() public view returns(uint256 balance) {
            return address(this).balance;
        }
        
         function LetTradingBegin(bool _tradingEnabled) external onlyOwner() {
             tradingEnabled = _tradingEnabled;
         }
         
         function ToggleCoolDown(bool _cooldownEnabled) external onlyOwner() {
             cooldownEnabled = _cooldownEnabled;
         }
        
    }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"},{"internalType":"address payable","name":"charityWalletAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_tradingEnabled","type":"bool"}],"name":"LetTradingBegin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_cooldownEnabled","type":"bool"}],"name":"ToggleCoolDown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_getETHBalance","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addBotToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeBotFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"timestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

69152d02c7e14af6800000600c5569085afffa6ff50bffffff19600d55602d600f55610100604052600b60c08190526a46726565646f6d20496e7560a81b60e090815262000051916010919062000eeb565b50604080518082019091526004808252634652444d60e01b60209092019182526200007f9160119162000eeb565b506012805460ff1916600917905560026013819055600a60148190556015919091556016556018805461ffff60b01b1961ffff60a01b19909116600160a81b1716600160b81b179055681043561a88293000006019556601c6bf52634000601a55348015620000ed57600080fd5b506040516200386e3803806200386e833981810160405260408110156200011357600080fd5b50805160209091015160006200012862000ed8565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350601780546001600160a01b038085166001600160a01b0319928316179092556018805492841692909116919091179055600d5460036000620001b362000ed8565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200022a57600080fd5b505afa1580156200023f573d6000803e3d6000fd5b505050506040513d60208110156200025657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b158015620002a757600080fd5b505afa158015620002bc573d6000803e3d6000fd5b505050506040513d6020811015620002d357600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200032657600080fd5b505af11580156200033b573d6000803e3d6000fd5b505050506040513d60208110156200035257600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600760006200037f62000edc565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530815260078352908120805484166001908117909155600a9092527f4777d92e592f2fa8390fa48c8824c65e93bffeaaf19b5e78702f374b7185cff18054841683179055600b805480840182557f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db990810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557fdc914f9280e3bf508019c453219bd8772b25f5bd33cb2e400a6d3a3ef5b8a7328054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557f998a942c5b07a457c1c745d8872225c6e7a179ed6fde5bfb692b69ae70f05fb280548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557f7448ef692eb22b90051ee7bb93f7f0bec25e320b568420fe8d685c03f99bcda680548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557f33585703c4f432691140342bf67b6aa54c45f613466cbb9648c8ebdc59ab51fe80548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557ffba5a2784f63caf056a136b81f2ac0f10327e1cd2fcc376d9117328b6715bbad80548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557f2063099f98622176f7a9dab7c96355197697679ded73d22ee92fafe3f7dc818980548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557f7b1842781ea8d74bd5a863e148fa18d771dedc1fed888acc0b24b912c26e29f780548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fc0020013c6d8595c68014b16713d0a57240f075db12290e54cb3bd5b3843c02c8054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fca4a506b5a56b6ba07b0a9d4d66b0f1540cc9b80e4b3cdfd8d5f141115bbde6c8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557ff6212472f5e0a52c2fec3ac5fcad601c59d6ff1e96bdbdafb42829d3edbd6a93805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557f2af88a6d7dae65d6f610a890dbaa61f2824a039572abef40bf47657129a70b9880548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557f7966a96da7d4dbc43e90c4a05d6081ea9a91b17729f7b3dbda42ffbd6eeecd3e805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557f724025a98f534d1309e69bda52a09889b613c546a0620f14f372b402dc7bff268054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fcd74986290e61ec10dad061b400b86dbc1ec586079bd390b4568960f464200bd805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f63679658c139b9c632697fe9ed7ac19e1fe3f543e06a57327e69fed698adb7bc80548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557f23e50dbd7cbb74df02fe617013720045098f5efa3a1b88c39e80ff824645416b8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557fdc987018d848576249961f02f9f7ed1731f448763a4b412eca2e6bc74126495980548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557ff39a91af98ae2b73dc9413871c0acb2ceb4c7b70cae5eb58eb458116e77db88980548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f162a1f8a785159eed011c60298c07e3524613b71a599d19744c8d6f71c96fb2b8054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557fa65db558bd82b4053113a6519ad4564189065cd183f86fc6b00387f9d41bc0ec8054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557fa58330920200a0932da2b374c9d20c7c472483bed80061b1d413d9672d5ebde08054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f7cdf1f9da93d80ed9a798cebe4e6f6004bf8f95a7de67429ea0199a704acad2580548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557f29f6c3b9d2e36abe8bdc900bc60e22583fba659c2d53a44eee0dd709801ea97d805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f6d65c65c35d6610b1200fe6cfe593318beb7893a4c03bf503f1d9d9e940fefba8054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557fa064b1fb0114f75e10beb90c8a29d47f54dd994e59433940d481b05c7a8412d8805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f686148b1caf780c4d22c6aacf115180ebb69c181e844afce5bbb3b709ef082ed80548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557f9bfda5ddf3bd831ffd2394205d842c39e6b71e9a402694563d77490a84c6161a8054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557f3b3fd9d1e8f96da8faf46a3c453226258db5fd46463cbe4c94c46725c18c854180548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557fa5bcf367515080dcf00ba24a8f13316bd1cd41a9ec18ad53c08e66f5b64f32f28054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557ff42d6f970ece9bfc747567e954d2e575ff81c6db9ab98a11162aecdd7c7762d780548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557ff9a54afda4266d0074bb9475c43164c2aaff7e83a5840148c16c0350af2fc5f4805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557fbd5bb69fd63981ca863b1c9542c22b5b327280aee3e76e2824e23873f1050fb180548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557f4fc612e08b493416d29ed3554c22384cccb8fee4e3a4cdcc444d412a1299652480549096168517909555815493840182559152018054909116735b83a351500b631cc2a20a665ee17f0dc66e3db717905562000e8262000ed8565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040518082815260200191505060405180910390a350505062000f87565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000f2e57805160ff191683800117855562000f5e565b8280016001018555821562000f5e579182015b8281111562000f5e57825182559160200191906001019062000f41565b5062000f6c92915062000f70565b5090565b5b8082111562000f6c576000815560010162000f71565b60805160601c60a05160601c61289562000fd960003980610cda52806116c052806116fb52806117a6528061184c528061195652508061087c5280611cc15280611d795280611da052506128956000f3fe6080604052600436106101e75760003560e01c80637302dacf11610102578063abdef31d11610095578063dd62ed3e11610064578063dd62ed3e1461070a578063e47d606014610745578063f2fde38b14610778578063f815a842146107ab576101ee565b8063abdef31d1461066c578063b6c5232414610698578063cba0e996146106ad578063d543dbeb146106e0576101ee565b80638da5cb5b116100d15780638da5cb5b146105d057806395d89b41146105e5578063a457c2d7146105fa578063a9059cbb14610633576101ee565b80637302dacf146105295780637a6cdbc31461055c5780637d1db4a5146105885780637ded4d6a1461059d576101ee565b8063395093511161017a57806349bd5a5e1161014957806349bd5a5e146104995780635342acb4146104ae57806370a08231146104e1578063715018a614610514576101ee565b806339509351146103cf5780633bd5d173146104085780634303443d146104345780634549b03914610467576101ee565b806318160ddd116101b657806318160ddd1461032257806323b872dd146103375780632d8381191461037a578063313ce567146103a4576101ee565b806306fdde03146101f3578063095ea7b31461027d57806313114a9d146102ca5780631694505e146102f1576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107c0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028957600080fd5b506102b6600480360360408110156102a057600080fd5b506001600160a01b038135169060200135610856565b604080519115158252519081900360200190f35b3480156102d657600080fd5b506102df610874565b60408051918252519081900360200190f35b3480156102fd57600080fd5b5061030661087a565b604080516001600160a01b039092168252519081900360200190f35b34801561032e57600080fd5b506102df61089e565b34801561034357600080fd5b506102b66004803603606081101561035a57600080fd5b506001600160a01b038135811691602081013590911690604001356108a4565b34801561038657600080fd5b506102df6004803603602081101561039d57600080fd5b503561092b565b3480156103b057600080fd5b506103b961098d565b6040805160ff9092168252519081900360200190f35b3480156103db57600080fd5b506102b6600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610996565b34801561041457600080fd5b506104326004803603602081101561042b57600080fd5b50356109e4565b005b34801561044057600080fd5b506104326004803603602081101561045757600080fd5b50356001600160a01b0316610abe565b34801561047357600080fd5b506102df6004803603604081101561048a57600080fd5b50803590602001351515610c46565b3480156104a557600080fd5b50610306610cd8565b3480156104ba57600080fd5b506102b6600480360360208110156104d157600080fd5b50356001600160a01b0316610cfc565b3480156104ed57600080fd5b506102df6004803603602081101561050457600080fd5b50356001600160a01b0316610d1a565b34801561052057600080fd5b50610432610d7c565b34801561053557600080fd5b506102df6004803603602081101561054c57600080fd5b50356001600160a01b0316610e1e565b34801561056857600080fd5b506104326004803603602081101561057f57600080fd5b50351515610e30565b34801561059457600080fd5b506102df610ea6565b3480156105a957600080fd5b50610432600480360360208110156105c057600080fd5b50356001600160a01b0316610eac565b3480156105dc57600080fd5b50610306611064565b3480156105f157600080fd5b50610208611073565b34801561060657600080fd5b506102b66004803603604081101561061d57600080fd5b506001600160a01b0381351690602001356110d4565b34801561063f57600080fd5b506102b66004803603604081101561065657600080fd5b506001600160a01b03813516906020013561113c565b34801561067857600080fd5b506104326004803603602081101561068f57600080fd5b50351515611150565b3480156106a457600080fd5b506102df6111c6565b3480156106b957600080fd5b506102b6600480360360208110156106d057600080fd5b50356001600160a01b03166111cc565b3480156106ec57600080fd5b506104326004803603602081101561070357600080fd5b50356111ea565b34801561071657600080fd5b506102df6004803603604081101561072d57600080fd5b506001600160a01b0381358116916020013516611268565b34801561075157600080fd5b506102b66004803603602081101561076857600080fd5b50356001600160a01b0316611293565b34801561078457600080fd5b506104326004803603602081101561079b57600080fd5b50356001600160a01b03166112b1565b3480156107b757600080fd5b506102df6113a9565b60108054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b600061086a6108636113ad565b84846113b1565b5060015b92915050565b600e5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c5490565b60006108b184848461149d565b610921846108bd6113ad565b61091c85604051806060016040528060288152602001612731602891396001600160a01b038a166000908152600560205260408120906108fb6113ad565b6001600160a01b031681526020810191909152604001600020549190611a0a565b6113b1565b5060019392505050565b6000600d5482111561096e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612676602a913960400191505060405180910390fd5b6000610978611aa1565b90506109848382611ac4565b9150505b919050565b60125460ff1690565b600061086a6109a36113ad565b8461091c85600560006109b46113ad565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b0d565b60006109ee6113ad565b6001600160a01b03811660009081526008602052604090205490915060ff1615610a495760405162461bcd60e51b815260040180806020018281038252602c81526020018061280f602c913960400191505060405180910390fd5b6000610a5483611b67565b505050506001600160a01b038416600090815260036020526040902054919250610a8091905082611bc3565b6001600160a01b038316600090815260036020526040902055600d54610aa69082611bc3565b600d55600e54610ab69084611b0d565b600e55505050565b610ac66113ad565b6000546001600160a01b03908116911614610b16576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610b725760405162461bcd60e51b81526004018080602001828103825260248152602001806127a26024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610be0576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000600c54831115610c9f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610cbe576000610caf84611b67565b5093955061086e945050505050565b6000610cc984611b67565b5092955061086e945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526008602052604081205460ff1615610d5a57506001600160a01b038116600090815260046020526040902054610988565b6001600160a01b03821660009081526003602052604090205461086e9061092b565b610d846113ad565b6000546001600160a01b03908116911614610dd4576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60066020526000908152604090205481565b610e386113ad565b6000546001600160a01b03908116911614610e88576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b60188054911515600160b81b0260ff60b81b19909216919091179055565b60195481565b610eb46113ad565b6000546001600160a01b03908116911614610f04576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16610f71576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561106057816001600160a01b0316600b8281548110610f9557fe5b6000918252602090912001546001600160a01b0316141561105857600b80546000198101908110610fc257fe5b600091825260209091200154600b80546001600160a01b039092169183908110610fe857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b80548061103157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611060565b600101610f74565b5050565b6000546001600160a01b031690565b60118054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084c5780601f106108215761010080835404028352916020019161084c565b600061086a6110e16113ad565b8461091c8560405180606001604052806025815260200161283b602591396005600061110b6113ad565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a0a565b600061086a6111496113ad565b848461149d565b6111586113ad565b6000546001600160a01b039081169116146111a8576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b60188054911515600160b01b0260ff60b01b19909216919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b6111f26113ad565b6000546001600160a01b03908116911614611242576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b611262606461125c83600c54611c0590919063ffffffff16565b90611ac4565b60195550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600a602052604090205460ff1690565b6112b96113ad565b6000546001600160a01b03908116911614611309576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b6001600160a01b03811661134e5760405162461bcd60e51b81526004018080602001828103825260268152602001806126a06026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b4790565b3390565b6001600160a01b0383166113f65760405162461bcd60e51b81526004018080602001828103825260248152602001806127eb6024913960400191505060405180910390fd5b6001600160a01b03821661143b5760405162461bcd60e51b81526004018080602001828103825260228152602001806126c66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114e25760405162461bcd60e51b81526004018080602001828103825260258152602001806127c66025913960400191505060405180910390fd5b6001600160a01b0382166115275760405162461bcd60e51b81526004018080602001828103825260238152602001806126536023913960400191505060405180910390fd5b600081116115665760405162461bcd60e51b81526004018080602001828103825260298152602001806127796029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff16156115ce576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615611636576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b61163e611064565b6001600160a01b0316836001600160a01b0316141580156116785750611662611064565b6001600160a01b0316826001600160a01b031614155b15611792576019548111156116be5760405162461bcd60e51b81526004018080602001828103825260288152602001806126e86028913960400191505060405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148061172f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b1561179257601854600160b01b900460ff16611792576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b601854600160b81b900460ff16156118fe577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161415611826576001600160a01b03821660009081526008602052604090205460ff1661182657600f5461180c904290611b0d565b6001600160a01b0383166000908152600660205260409020555b61182e611064565b6001600160a01b0316836001600160a01b03161415801561188157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b156118fe576001600160a01b03831660009081526008602052604090205460ff166118fe576001600160a01b0383166000908152600660205260409020544210156118fe576040805162461bcd60e51b815260206004820152600860248201526721b7b7b63237bbb760c11b604482015290519081900360640190fd5b600061190930610d1a565b9050601954811061191957506019545b601a546018549082101590600160a01b900460ff161580156119445750601854600160a81b900460ff165b801561194d5750805b801561198b57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b156119ab5761199982611c5e565b4780156119a9576119a947611e95565b505b6001600160a01b03851660009081526007602052604090205460019060ff16806119ed57506001600160a01b03851660009081526007602052604090205460ff165b156119f6575060005b611a0286868684611f1a565b505050505050565b60008184841115611a995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a5e578181015183820152602001611a46565b50505050905090810190601f168015611a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611aae61208e565b9092509050611abd8282611ac4565b9250505090565b6000611b0683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121f1565b9392505050565b600082820183811015611b06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611b848a601354601454612256565b9250925092506000611b94611aa1565b90506000806000611ba68e87866122a5565b919e509c509a509598509396509194505050505091939550919395565b6000611b0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a0a565b600082611c145750600061086e565b82820282848281611c2157fe5b0414611b065760405162461bcd60e51b81526004018080602001828103825260218152602001806127106021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611c9f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d6020811015611d4257600080fd5b5051815182906001908110611d5357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611d9e307f0000000000000000000000000000000000000000000000000000000000000000846113b1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611e43578181015183820152602001611e2b565b505050509050019650505050505050600060405180830381600087803b158015611e6c57600080fd5b505af1158015611e80573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b6017546001600160a01b03166108fc611eaf836002611ac4565b6040518115909202916000818181858888f19350505050158015611ed7573d6000803e3d6000fd5b506018546001600160a01b03166108fc611ef2836002611ac4565b6040518115909202916000818181858888f19350505050158015611060573d6000803e3d6000fd5b80611f2757611f276122e1565b6001600160a01b03841660009081526008602052604090205460ff168015611f6857506001600160a01b03831660009081526008602052604090205460ff16155b15611f7d57611f78848484612313565b61207b565b6001600160a01b03841660009081526008602052604090205460ff16158015611fbe57506001600160a01b03831660009081526008602052604090205460ff165b15611fce57611f78848484612437565b6001600160a01b03841660009081526008602052604090205460ff1615801561201057506001600160a01b03831660009081526008602052604090205460ff16155b1561202057611f788484846124e0565b6001600160a01b03841660009081526008602052604090205460ff16801561206057506001600160a01b03831660009081526008602052604090205460ff165b1561207057611f78848484612524565b61207b8484846124e0565b8061208857612088612597565b50505050565b600d54600c546000918291825b6009548110156121bf578260036000600984815481106120b757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061211c57508160046000600984815481106120f557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561213357600d54600c54945094505050506121ed565b612173600360006009848154811061214757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bc3565b92506121b5600460006009848154811061218957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bc3565b915060010161209b565b50600c54600d546121cf91611ac4565b8210156121e757600d54600c549350935050506121ed565b90925090505b9091565b600081836122405760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a5e578181015183820152602001611a46565b50600083858161224c57fe5b0495945050505050565b600080808061226a606461125c8989611c05565b9050600061227d606461125c8a89611c05565b905060006122958261228f8b86611bc3565b90611bc3565b9992985090965090945050505050565b60008080806122b48786611c05565b905060006122c28787611c05565b905060006122d08383611bc3565b929992985090965090945050505050565b6013541580156122f15750601454155b156122fb57612311565b6013805460155560148054601655600091829055555b565b60008060008060008061232587611b67565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506123579088611bc3565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546123869087611bc3565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546123b59086611b0d565b6001600160a01b0389166000908152600360205260409020556123d7816125a5565b6123e1848361262e565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061244987611b67565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061247b9087611bc3565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546124b19084611b0d565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546123b59086611b0d565b6000806000806000806124f287611b67565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506123869087611bc3565b60008060008060008061253687611b67565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125689088611bc3565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461247b9087611bc3565b601554601355601654601455565b60006125af611aa1565b905060006125bd8383611c05565b306000908152600360205260409020549091506125da9082611b0d565b3060009081526003602090815260408083209390935560089052205460ff161561262957306000908152600460205260409020546126189084611b0d565b306000908152600460205260409020555b505050565b600d5461263b9083611bc3565b600d55600e5461264b9082611b0d565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c0006b2c0d2ba807e9b5738832c27b23bb18efca30f8ddedde7c0ddca55dc2bb64736f6c634300060c0033000000000000000000000000df12c93f1827eee0bc388f9bea54401723057208000000000000000000000000c5c21f6d1b2f86c4ff16452b7a3221c94a6ee1bc

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80637302dacf11610102578063abdef31d11610095578063dd62ed3e11610064578063dd62ed3e1461070a578063e47d606014610745578063f2fde38b14610778578063f815a842146107ab576101ee565b8063abdef31d1461066c578063b6c5232414610698578063cba0e996146106ad578063d543dbeb146106e0576101ee565b80638da5cb5b116100d15780638da5cb5b146105d057806395d89b41146105e5578063a457c2d7146105fa578063a9059cbb14610633576101ee565b80637302dacf146105295780637a6cdbc31461055c5780637d1db4a5146105885780637ded4d6a1461059d576101ee565b8063395093511161017a57806349bd5a5e1161014957806349bd5a5e146104995780635342acb4146104ae57806370a08231146104e1578063715018a614610514576101ee565b806339509351146103cf5780633bd5d173146104085780634303443d146104345780634549b03914610467576101ee565b806318160ddd116101b657806318160ddd1461032257806323b872dd146103375780632d8381191461037a578063313ce567146103a4576101ee565b806306fdde03146101f3578063095ea7b31461027d57806313114a9d146102ca5780631694505e146102f1576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b506102086107c0565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561024257818101518382015260200161022a565b50505050905090810190601f16801561026f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028957600080fd5b506102b6600480360360408110156102a057600080fd5b506001600160a01b038135169060200135610856565b604080519115158252519081900360200190f35b3480156102d657600080fd5b506102df610874565b60408051918252519081900360200190f35b3480156102fd57600080fd5b5061030661087a565b604080516001600160a01b039092168252519081900360200190f35b34801561032e57600080fd5b506102df61089e565b34801561034357600080fd5b506102b66004803603606081101561035a57600080fd5b506001600160a01b038135811691602081013590911690604001356108a4565b34801561038657600080fd5b506102df6004803603602081101561039d57600080fd5b503561092b565b3480156103b057600080fd5b506103b961098d565b6040805160ff9092168252519081900360200190f35b3480156103db57600080fd5b506102b6600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610996565b34801561041457600080fd5b506104326004803603602081101561042b57600080fd5b50356109e4565b005b34801561044057600080fd5b506104326004803603602081101561045757600080fd5b50356001600160a01b0316610abe565b34801561047357600080fd5b506102df6004803603604081101561048a57600080fd5b50803590602001351515610c46565b3480156104a557600080fd5b50610306610cd8565b3480156104ba57600080fd5b506102b6600480360360208110156104d157600080fd5b50356001600160a01b0316610cfc565b3480156104ed57600080fd5b506102df6004803603602081101561050457600080fd5b50356001600160a01b0316610d1a565b34801561052057600080fd5b50610432610d7c565b34801561053557600080fd5b506102df6004803603602081101561054c57600080fd5b50356001600160a01b0316610e1e565b34801561056857600080fd5b506104326004803603602081101561057f57600080fd5b50351515610e30565b34801561059457600080fd5b506102df610ea6565b3480156105a957600080fd5b50610432600480360360208110156105c057600080fd5b50356001600160a01b0316610eac565b3480156105dc57600080fd5b50610306611064565b3480156105f157600080fd5b50610208611073565b34801561060657600080fd5b506102b66004803603604081101561061d57600080fd5b506001600160a01b0381351690602001356110d4565b34801561063f57600080fd5b506102b66004803603604081101561065657600080fd5b506001600160a01b03813516906020013561113c565b34801561067857600080fd5b506104326004803603602081101561068f57600080fd5b50351515611150565b3480156106a457600080fd5b506102df6111c6565b3480156106b957600080fd5b506102b6600480360360208110156106d057600080fd5b50356001600160a01b03166111cc565b3480156106ec57600080fd5b506104326004803603602081101561070357600080fd5b50356111ea565b34801561071657600080fd5b506102df6004803603604081101561072d57600080fd5b506001600160a01b0381358116916020013516611268565b34801561075157600080fd5b506102b66004803603602081101561076857600080fd5b50356001600160a01b0316611293565b34801561078457600080fd5b506104326004803603602081101561079b57600080fd5b50356001600160a01b03166112b1565b3480156107b757600080fd5b506102df6113a9565b60108054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084c5780601f106108215761010080835404028352916020019161084c565b820191906000526020600020905b81548152906001019060200180831161082f57829003601f168201915b5050505050905090565b600061086a6108636113ad565b84846113b1565b5060015b92915050565b600e5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5490565b60006108b184848461149d565b610921846108bd6113ad565b61091c85604051806060016040528060288152602001612731602891396001600160a01b038a166000908152600560205260408120906108fb6113ad565b6001600160a01b031681526020810191909152604001600020549190611a0a565b6113b1565b5060019392505050565b6000600d5482111561096e5760405162461bcd60e51b815260040180806020018281038252602a815260200180612676602a913960400191505060405180910390fd5b6000610978611aa1565b90506109848382611ac4565b9150505b919050565b60125460ff1690565b600061086a6109a36113ad565b8461091c85600560006109b46113ad565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b0d565b60006109ee6113ad565b6001600160a01b03811660009081526008602052604090205490915060ff1615610a495760405162461bcd60e51b815260040180806020018281038252602c81526020018061280f602c913960400191505060405180910390fd5b6000610a5483611b67565b505050506001600160a01b038416600090815260036020526040902054919250610a8091905082611bc3565b6001600160a01b038316600090815260036020526040902055600d54610aa69082611bc3565b600d55600e54610ab69084611b0d565b600e55505050565b610ac66113ad565b6000546001600160a01b03908116911614610b16576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0382161415610b725760405162461bcd60e51b81526004018080602001828103825260248152602001806127a26024913960400191505060405180910390fd5b6001600160a01b0381166000908152600a602052604090205460ff1615610be0576040805162461bcd60e51b815260206004820152601e60248201527f4163636f756e7420697320616c726561647920626c61636b6c69737465640000604482015290519081900360640190fd5b6001600160a01b03166000818152600a60205260408120805460ff19166001908117909155600b805491820181559091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90180546001600160a01b0319169091179055565b6000600c54831115610c9f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610cbe576000610caf84611b67565b5093955061086e945050505050565b6000610cc984611b67565b5092955061086e945050505050565b7f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e81565b6001600160a01b031660009081526007602052604090205460ff1690565b6001600160a01b03811660009081526008602052604081205460ff1615610d5a57506001600160a01b038116600090815260046020526040902054610988565b6001600160a01b03821660009081526003602052604090205461086e9061092b565b610d846113ad565b6000546001600160a01b03908116911614610dd4576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60066020526000908152604090205481565b610e386113ad565b6000546001600160a01b03908116911614610e88576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b60188054911515600160b81b0260ff60b81b19909216919091179055565b60195481565b610eb46113ad565b6000546001600160a01b03908116911614610f04576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600a602052604090205460ff16610f71576040805162461bcd60e51b815260206004820152601a60248201527f4163636f756e74206973206e6f7420626c61636b6c6973746564000000000000604482015290519081900360640190fd5b60005b600b5481101561106057816001600160a01b0316600b8281548110610f9557fe5b6000918252602090912001546001600160a01b0316141561105857600b80546000198101908110610fc257fe5b600091825260209091200154600b80546001600160a01b039092169183908110610fe857fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600a90915260409020805460ff19169055600b80548061103157fe5b600082815260209020810160001990810180546001600160a01b0319169055019055611060565b600101610f74565b5050565b6000546001600160a01b031690565b60118054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561084c5780601f106108215761010080835404028352916020019161084c565b600061086a6110e16113ad565b8461091c8560405180606001604052806025815260200161283b602591396005600061110b6113ad565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a0a565b600061086a6111496113ad565b848461149d565b6111586113ad565b6000546001600160a01b039081169116146111a8576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b60188054911515600160b01b0260ff60b01b19909216919091179055565b60025490565b6001600160a01b031660009081526008602052604090205460ff1690565b6111f26113ad565b6000546001600160a01b03908116911614611242576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b611262606461125c83600c54611c0590919063ffffffff16565b90611ac4565b60195550565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600a602052604090205460ff1690565b6112b96113ad565b6000546001600160a01b03908116911614611309576040805162461bcd60e51b81526020600482018190526024820152600080516020612759833981519152604482015290519081900360640190fd5b6001600160a01b03811661134e5760405162461bcd60e51b81526004018080602001828103825260268152602001806126a06026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b4790565b3390565b6001600160a01b0383166113f65760405162461bcd60e51b81526004018080602001828103825260248152602001806127eb6024913960400191505060405180910390fd5b6001600160a01b03821661143b5760405162461bcd60e51b81526004018080602001828103825260228152602001806126c66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114e25760405162461bcd60e51b81526004018080602001828103825260258152602001806127c66025913960400191505060405180910390fd5b6001600160a01b0382166115275760405162461bcd60e51b81526004018080602001828103825260238152602001806126536023913960400191505060405180910390fd5b600081116115665760405162461bcd60e51b81526004018080602001828103825260298152602001806127796029913960400191505060405180910390fd5b6001600160a01b0382166000908152600a602052604090205460ff16156115ce576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615611636576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b61163e611064565b6001600160a01b0316836001600160a01b0316141580156116785750611662611064565b6001600160a01b0316826001600160a01b031614155b15611792576019548111156116be5760405162461bcd60e51b81526004018080602001828103825260288152602001806126e86028913960400191505060405180910390fd5b7f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e6001600160a01b0316836001600160a01b0316148061172f57507f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e6001600160a01b0316826001600160a01b0316145b1561179257601854600160b01b900460ff16611792576040805162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420656e61626c656420796574000000000000604482015290519081900360640190fd5b601854600160b81b900460ff16156118fe577f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e6001600160a01b0316836001600160a01b03161415611826576001600160a01b03821660009081526008602052604090205460ff1661182657600f5461180c904290611b0d565b6001600160a01b0383166000908152600660205260409020555b61182e611064565b6001600160a01b0316836001600160a01b03161415801561188157507f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e6001600160a01b0316836001600160a01b031614155b156118fe576001600160a01b03831660009081526008602052604090205460ff166118fe576001600160a01b0383166000908152600660205260409020544210156118fe576040805162461bcd60e51b815260206004820152600860248201526721b7b7b63237bbb760c11b604482015290519081900360640190fd5b600061190930610d1a565b9050601954811061191957506019545b601a546018549082101590600160a01b900460ff161580156119445750601854600160a81b900460ff165b801561194d5750805b801561198b57507f00000000000000000000000026e49a269b144e458edaf4707d41cd3ca825f81e6001600160a01b0316856001600160a01b031614155b156119ab5761199982611c5e565b4780156119a9576119a947611e95565b505b6001600160a01b03851660009081526007602052604090205460019060ff16806119ed57506001600160a01b03851660009081526007602052604090205460ff165b156119f6575060005b611a0286868684611f1a565b505050505050565b60008184841115611a995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611a5e578181015183820152602001611a46565b50505050905090810190601f168015611a8b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611aae61208e565b9092509050611abd8282611ac4565b9250505090565b6000611b0683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121f1565b9392505050565b600082820183811015611b06576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611b848a601354601454612256565b9250925092506000611b94611aa1565b90506000806000611ba68e87866122a5565b919e509c509a509598509396509194505050505091939550919395565b6000611b0683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a0a565b600082611c145750600061086e565b82820282848281611c2157fe5b0414611b065760405162461bcd60e51b81526004018080602001828103825260218152602001806127106021913960400191505060405180910390fd5b6018805460ff60a01b1916600160a01b17905560408051600280825260608083018452926020830190803683370190505090503081600081518110611c9f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d6020811015611d4257600080fd5b5051815182906001908110611d5357fe5b60200260200101906001600160a01b031690816001600160a01b031681525050611d9e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113b1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b83811015611e43578181015183820152602001611e2b565b505050509050019650505050505050600060405180830381600087803b158015611e6c57600080fd5b505af1158015611e80573d6000803e3d6000fd5b50506018805460ff60a01b1916905550505050565b6017546001600160a01b03166108fc611eaf836002611ac4565b6040518115909202916000818181858888f19350505050158015611ed7573d6000803e3d6000fd5b506018546001600160a01b03166108fc611ef2836002611ac4565b6040518115909202916000818181858888f19350505050158015611060573d6000803e3d6000fd5b80611f2757611f276122e1565b6001600160a01b03841660009081526008602052604090205460ff168015611f6857506001600160a01b03831660009081526008602052604090205460ff16155b15611f7d57611f78848484612313565b61207b565b6001600160a01b03841660009081526008602052604090205460ff16158015611fbe57506001600160a01b03831660009081526008602052604090205460ff165b15611fce57611f78848484612437565b6001600160a01b03841660009081526008602052604090205460ff1615801561201057506001600160a01b03831660009081526008602052604090205460ff16155b1561202057611f788484846124e0565b6001600160a01b03841660009081526008602052604090205460ff16801561206057506001600160a01b03831660009081526008602052604090205460ff165b1561207057611f78848484612524565b61207b8484846124e0565b8061208857612088612597565b50505050565b600d54600c546000918291825b6009548110156121bf578260036000600984815481106120b757fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061211c57508160046000600984815481106120f557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561213357600d54600c54945094505050506121ed565b612173600360006009848154811061214757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611bc3565b92506121b5600460006009848154811061218957fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611bc3565b915060010161209b565b50600c54600d546121cf91611ac4565b8210156121e757600d54600c549350935050506121ed565b90925090505b9091565b600081836122405760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611a5e578181015183820152602001611a46565b50600083858161224c57fe5b0495945050505050565b600080808061226a606461125c8989611c05565b9050600061227d606461125c8a89611c05565b905060006122958261228f8b86611bc3565b90611bc3565b9992985090965090945050505050565b60008080806122b48786611c05565b905060006122c28787611c05565b905060006122d08383611bc3565b929992985090965090945050505050565b6013541580156122f15750601454155b156122fb57612311565b6013805460155560148054601655600091829055555b565b60008060008060008061232587611b67565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506123579088611bc3565b6001600160a01b038a166000908152600460209081526040808320939093556003905220546123869087611bc3565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546123b59086611b0d565b6001600160a01b0389166000908152600360205260409020556123d7816125a5565b6123e1848361262e565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061244987611b67565b6001600160a01b038f16600090815260036020526040902054959b5093995091975095509350915061247b9087611bc3565b6001600160a01b03808b16600090815260036020908152604080832094909455918b168152600490915220546124b19084611b0d565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546123b59086611b0d565b6000806000806000806124f287611b67565b6001600160a01b038f16600090815260036020526040902054959b509399509197509550935091506123869087611bc3565b60008060008060008061253687611b67565b6001600160a01b038f16600090815260046020526040902054959b509399509197509550935091506125689088611bc3565b6001600160a01b038a1660009081526004602090815260408083209390935560039052205461247b9087611bc3565b601554601355601654601455565b60006125af611aa1565b905060006125bd8383611c05565b306000908152600360205260409020549091506125da9082611b0d565b3060009081526003602090815260408083209390935560089052205460ff161561262957306000908152600460205260409020546126189084611b0d565b306000908152600460205260409020555b505050565b600d5461263b9083611bc3565b600d55600e5461264b9082611b0d565b600e55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f57652063616e206e6f7420626c61636b6c69737420556e697377617020726f757465722e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c0006b2c0d2ba807e9b5738832c27b23bb18efca30f8ddedde7c0ddca55dc2bb64736f6c634300060c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000df12c93f1827eee0bc388f9bea54401723057208000000000000000000000000c5c21f6d1b2f86c4ff16452b7a3221c94a6ee1bc

-----Decoded View---------------
Arg [0] : teamWalletAddress (address): 0xdf12C93f1827eeE0BC388F9bea54401723057208
Arg [1] : charityWalletAddress (address): 0xc5c21F6D1B2F86c4Ff16452B7a3221c94a6Ee1bc

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000df12c93f1827eee0bc388f9bea54401723057208
Arg [1] : 000000000000000000000000c5c21f6d1b2f86c4ff16452b7a3221c94a6ee1bc


Deployed Bytecode Sourcemap

25981:26579:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35934:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36938:173;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36938:173:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38276:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27345:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;27345:51:0;;;;;;;;;;;;;;36247:103;;;;;;;;;;;;;:::i;37123:329::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37123:329:0;;;;;;;;;;;;;;;;;:::i;39284:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39284:269:0;;:::i;36144:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;37464:230;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37464:230:0;;;;;;;;:::i;38383:405::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38383:405:0;;:::i;:::-;;39565:372;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39565:372:0;-1:-1:-1;;;;;39565:372:0;;:::i;38800:472::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38800:472:0;;;;;;;;;:::i;27407:38::-;;;;;;;;;;;;;:::i;40926:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40926:131:0;-1:-1:-1;;;;;40926:131:0;;:::i;36362:210::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36362:210:0;-1:-1:-1;;;;;36362:210:0;;:::i;16533:160::-;;;;;;;;;;;;;:::i;26305:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26305:45:0;-1:-1:-1;;;;;26305:45:0;;:::i;52412:131::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52412:131:0;;;;:::i;27624:52::-;;;;;;;;;;;;;:::i;39953:540::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39953:540:0;-1:-1:-1;;;;;39953:540:0;;:::i;15831:87::-;;;;;;;;;;;;;:::i;36037:95::-;;;;;;;;;;;;;:::i;37706:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37706:281:0;;;;;;;;:::i;36584:179::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36584:179:0;;;;;;;;:::i;52261:129::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52261:129:0;;;;:::i;17137:97::-;;;;;;;;;;;;;:::i;37999:118::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37999:118:0;-1:-1:-1;;;;;37999:118:0;;:::i;41077:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41077:170:0;;:::i;36775:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36775:151:0;;;;;;;;;;:::i;38137:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38137:127:0;-1:-1:-1;;;;;38137:127:0;;:::i;16865:260::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16865:260:0;-1:-1:-1;;;;;16865:260:0;;:::i;52122:118::-;;;;;;;;;;;;;:::i;35934:91::-;36008:5;36001:12;;;;;;;;-1:-1:-1;;36001:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35971:13;;36001:12;;36008:5;;36001:12;;36008:5;36001:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35934:91;:::o;36938:173::-;37013:4;37034:39;37043:12;:10;:12::i;:::-;37057:7;37066:6;37034:8;:39::i;:::-;-1:-1:-1;37095:4:0;36938:173;;;;;:::o;38276:95::-;38349:10;;38276:95;:::o;27345:51::-;;;:::o;36247:103::-;36331:7;;36247:103;:::o;37123:329::-;37221:4;37242:36;37252:6;37260:9;37271:6;37242:9;:36::i;:::-;37293:121;37302:6;37310:12;:10;:12::i;:::-;37324:89;37362:6;37324:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37324:19:0;;;;;;:11;:19;;;;;;37344:12;:10;:12::i;:::-;-1:-1:-1;;;;;37324:33:0;;;;;;;;;;;;-1:-1:-1;37324:33:0;;;:89;:37;:89::i;:::-;37293:8;:121::i;:::-;-1:-1:-1;37436:4:0;37123:329;;;;;:::o;39284:269::-;39350:7;39393;;39382;:18;;39374:73;;;;-1:-1:-1;;;39374:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39462:19;39485:10;:8;:10::i;:::-;39462:33;-1:-1:-1;39517:24:0;:7;39462:33;39517:11;:24::i;:::-;39510:31;;;39284:269;;;;:::o;36144:91::-;36214:9;;;;36144:91;:::o;37464:230::-;37552:4;37573:83;37582:12;:10;:12::i;:::-;37596:7;37605:50;37644:10;37605:11;:25;37617:12;:10;:12::i;:::-;-1:-1:-1;;;;;37605:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37605:25:0;;;:34;;;;;;;;;;;:38;:50::i;38383:405::-;38439:14;38456:12;:10;:12::i;:::-;-1:-1:-1;;;;;38492:19:0;;;;;;:11;:19;;;;;;38439:29;;-1:-1:-1;38492:19:0;;38491:20;38483:77;;;;-1:-1:-1;;;38483:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38576:15;38600:19;38611:7;38600:10;:19::i;:::-;-1:-1:-1;;;;;;;;;38652:15:0;;;;;;:7;:15;;;;;;38575:44;;-1:-1:-1;38652:28:0;;:15;-1:-1:-1;38575:44:0;38652:19;:28::i;:::-;-1:-1:-1;;;;;38634:15:0;;;;;;:7;:15;;;;;:46;38705:7;;:20;;38717:7;38705:11;:20::i;:::-;38695:7;:30;38753:10;;:23;;38768:7;38753:14;:23::i;:::-;38740:10;:36;-1:-1:-1;;;38383:405:0:o;39565:372::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;39664:42:::1;-1:-1:-1::0;;;;;39653:53:0;::::1;;;39645:102;;;;-1:-1:-1::0;;;39645:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;39771:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;39770:27;39762:70;;;::::0;;-1:-1:-1;;;39762:70:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;39847:26:0::1;;::::0;;;:17:::1;:26;::::0;;;;:33;;-1:-1:-1;;39847:33:0::1;39876:4;39847:33:::0;;::::1;::::0;;;39895:16:::1;:30:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;39895:30:0::1;::::0;;::::1;::::0;;39565:372::o;38800:472::-;38890:7;38933;;38922;:18;;38914:62;;;;;-1:-1:-1;;;38914:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38996:17;38991:270;;39035:15;39059:19;39070:7;39059:10;:19::i;:::-;-1:-1:-1;39034:44:0;;-1:-1:-1;39097:14:0;;-1:-1:-1;;;;;39097:14:0;38991:270;39154:23;39185:19;39196:7;39185:10;:19::i;:::-;-1:-1:-1;39152:52:0;;-1:-1:-1;39223:22:0;;-1:-1:-1;;;;;39223:22:0;27407:38;;;:::o;40926:131::-;-1:-1:-1;;;;;41018:27:0;40990:4;41018:27;;;:18;:27;;;;;;;;;40926:131::o;36362:210::-;-1:-1:-1;;;;;36456:20:0;;36428:7;36456:20;;;:11;:20;;;;;;;;36452:49;;;-1:-1:-1;;;;;;36485:16:0;;;;;;:7;:16;;;;;;36478:23;;36452:49;-1:-1:-1;;;;;36543:16:0;;;;;;:7;:16;;;;;;36523:37;;:19;:37::i;16533:160::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;16644:1:::1;16628:6:::0;;16607:40:::1;::::0;-1:-1:-1;;;;;16628:6:0;;::::1;::::0;16607:40:::1;::::0;16644:1;;16607:40:::1;16679:1;16662:19:::0;;-1:-1:-1;;;;;;16662:19:0::1;::::0;;16533:160::o;26305:45::-;;;;;;;;;;;;;:::o;52412:131::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;52496:15:::1;:34:::0;;;::::1;;-1:-1:-1::0;;;52496:34:0::1;-1:-1:-1::0;;;;52496:34:0;;::::1;::::0;;;::::1;::::0;;52412:131::o;27624:52::-;;;;:::o;39953:540::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40046:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;::::1;;40038:65;;;::::0;;-1:-1:-1;;;40038:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;40123:9;40118:364;40142:16;:23:::0;40138:27;::::1;40118:364;;;40218:7;-1:-1:-1::0;;;;;40195:30:0::1;:16;40212:1;40195:19;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;40195:19:0::1;:30;40191:276;;;40272:16;40289:23:::0;;-1:-1:-1;;40289:27:0;;;40272:45;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;40250:16:::1;:19:::0;;-1:-1:-1;;;;;40272:45:0;;::::1;::::0;40267:1;;40250:19;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:67:::0;;-1:-1:-1;;;;;;40250:67:0::1;-1:-1:-1::0;;;;;40250:67:0;;::::1;;::::0;;40340:26;;::::1;::::0;;:17:::1;:26:::0;;;;;;:34;;-1:-1:-1;;40340:34:0::1;::::0;;40397:16:::1;:22:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;40397:22:0;;;;;-1:-1:-1;;;;;;40397:22:0::1;::::0;;;;;40442:5:::1;;40191:276;40167:3;;40118:364;;;;39953:540:::0;:::o;15831:87::-;15869:7;15900:6;-1:-1:-1;;;;;15900:6:0;15831:87;:::o;36037:95::-;36113:7;36106:14;;;;;;;;-1:-1:-1;;36106:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36076:13;;36106:14;;36113:7;;36106:14;;36113:7;36106:14;;;;;;;;;;;;;;;;;;;;;;;;37706:281;37799:4;37820:129;37829:12;:10;:12::i;:::-;37843:7;37852:96;37891:15;37852:96;;;;;;;;;;;;;;;;;:11;:25;37864:12;:10;:12::i;:::-;-1:-1:-1;;;;;37852:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37852:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;36584:179::-;36662:4;36683:42;36693:12;:10;:12::i;:::-;36707:9;36718:6;36683:9;:42::i;52261:129::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;52345:14:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;52345:32:0::1;-1:-1:-1::0;;;;52345:32:0;;::::1;::::0;;;::::1;::::0;;52261:129::o;17137:97::-;17213:9;;17137:97;:::o;37999:118::-;-1:-1:-1;;;;;38085:20:0;38057:4;38085:20;;;:11;:20;;;;;;;;;37999:118::o;41077:170::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;41175:60:::1;41219:5;41175:25;41187:12;41175:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;41160:12;:75:::0;-1:-1:-1;41077:170:0:o;36775:151::-;-1:-1:-1;;;;;36887:18:0;;;36856:7;36887:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;36775:151::o;38137:127::-;-1:-1:-1;;;;;38226:26:0;38198:4;38226:26;;;:17;:26;;;;;;;;;38137:127::o;16865:260::-;16079:12;:10;:12::i;:::-;16069:6;;-1:-1:-1;;;;;16069:6:0;;;:22;;;16061:67;;;;;-1:-1:-1;;;16061:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16061:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16958:22:0;::::1;16950:73;;;;-1:-1:-1::0;;;16950:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17064:6;::::0;;17043:38:::1;::::0;-1:-1:-1;;;;;17043:38:0;;::::1;::::0;17064:6;::::1;::::0;17043:38:::1;::::0;::::1;17096:6;:17:::0;;-1:-1:-1;;;;;;17096:17:0::1;-1:-1:-1::0;;;;;17096:17:0;;;::::1;::::0;;;::::1;::::0;;16865:260::o;52122:118::-;52207:21;52122:118;:::o;288:114::-;380:10;288:114;:::o;41259:357::-;-1:-1:-1;;;;;41356:19:0;;41348:68;;;;-1:-1:-1;;;41348:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41439:21:0;;41431:68;;;;-1:-1:-1;;;41431:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41516:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;41572:32;;;;;;;;;;;;;;;;;41259:357;;;:::o;41628:3388::-;-1:-1:-1;;;;;41729:20:0;;41721:70;;;;-1:-1:-1;;;41721:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41814:23:0;;41806:71;;;;-1:-1:-1;;;41806:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41909:1;41900:6;:10;41892:64;;;;-1:-1:-1;;;41892:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41980:28:0;;;;;;:17;:28;;;;;;;;41979:29;41971:65;;;;;-1:-1:-1;;;41971:65:0;;;;;;;;;;;;-1:-1:-1;;;41971:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42060:25:0;;;;;;:17;:25;;;;;;;;42059:26;42051:62;;;;;-1:-1:-1;;;42051:62:0;;;;;;;;;;;;-1:-1:-1;;;42051:62:0;;;;;;;;;;;;;;;42143:7;:5;:7::i;:::-;-1:-1:-1;;;;;42133:17:0;:6;-1:-1:-1;;;;;42133:17:0;;;:41;;;;;42167:7;:5;:7::i;:::-;-1:-1:-1;;;;;42154:20:0;:9;-1:-1:-1;;;;;42154:20:0;;;42133:41;42130:429;;;42239:12;;42229:6;:22;;42221:75;;;;-1:-1:-1;;;42221:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42426:13;-1:-1:-1;;;;;42416:23:0;:6;-1:-1:-1;;;;;42416:23:0;;:53;;;;42456:13;-1:-1:-1;;;;;42443:26:0;:9;-1:-1:-1;;;;;42443:26:0;;42416:53;42412:116;;;42481:14;;-1:-1:-1;;;42481:14:0;;;;42473:53;;;;;-1:-1:-1;;;42473:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;42658:15;;-1:-1:-1;;;42658:15:0;;;;42655:805;;;42813:13;-1:-1:-1;;;;;42803:23:0;:6;-1:-1:-1;;;;;42803:23:0;;42799:258;;;-1:-1:-1;;;;;42948:22:0;;;;;;:11;:22;;;;;;;;42943:87;;43017:9;;42997:30;;:15;;:19;:30::i;:::-;-1:-1:-1;;;;;42974:20:0;;;;;;:9;:20;;;;;:53;42943:87;43172:7;:5;:7::i;:::-;-1:-1:-1;;;;;43162:17:0;:6;-1:-1:-1;;;;;43162:17:0;;;:44;;;;;43193:13;-1:-1:-1;;;;;43183:23:0;:6;-1:-1:-1;;;;;43183:23:0;;;43162:44;43159:269;;;-1:-1:-1;;;;;43318:19:0;;;;;;:11;:19;;;;;;;;43313:88;;-1:-1:-1;;;;;43368:17:0;;;;;;:9;:17;;;;;;43349:15;:36;;43341:57;;;;;-1:-1:-1;;;43341:57:0;;;;;;;;;;;;-1:-1:-1;;;43341:57:0;;;;;;;;;;;;;;;43742:28;43773:24;43791:4;43773:9;:24::i;:::-;43742:55;;43853:12;;43829:20;:36;43826:124;;-1:-1:-1;43922:12:0;;43826:124;44029:29;;44078:6;;44005:53;;;;;-1:-1:-1;;;44078:6:0;;;;44077:7;:22;;;;-1:-1:-1;44088:11:0;;-1:-1:-1;;;44088:11:0;;;;44077:22;:45;;;;;44103:19;44077:45;:72;;;;;44136:13;-1:-1:-1;;;;;44126:23:0;:6;-1:-1:-1;;;;;44126:23:0;;;44077:72;44073:452;;;44260:38;44277:20;44260:16;:38::i;:::-;44364:21;44407:22;;44404:106;;44454:36;44468:21;44454:13;:36::i;:::-;44073:452;;-1:-1:-1;;;;;44757:26:0;;44618:12;44757:26;;;:18;:26;;;;;;44633:4;;44757:26;;;:59;;-1:-1:-1;;;;;;44787:29:0;;;;;;:18;:29;;;;;;;;44757:59;44754:113;;;-1:-1:-1;44846:5:0;44754:113;44957:47;44972:6;44979:9;44989:6;44996:7;44957:14;:47::i;:::-;41628:3388;;;;;;:::o;4815:208::-;4901:7;4941:12;4933:6;;;;4925:29;;;;-1:-1:-1;;;4925:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4981:5:0;;;4815:208::o;51094:175::-;51135:7;51160:15;51177;51196:19;:17;:19::i;:::-;51159:56;;-1:-1:-1;51159:56:0;-1:-1:-1;51237:20:0;51159:56;;51237:11;:20::i;:::-;51230:27;;;;51094:175;:::o;6345:140::-;6403:7;6434:39;6438:1;6441;6434:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6427:46;6345:140;-1:-1:-1;;;6345:140:0:o;3818:197::-;3876:7;3912:5;;;3940:6;;;;3932:46;;;;;-1:-1:-1;;;3932:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;49852:481;49911:7;49920;49929;49938;49947;49956;49981:23;50006:12;50020:13;50037:39;50049:7;50058;;50067:8;;50037:11;:39::i;:::-;49980:96;;;;;;50091:19;50114:10;:8;:10::i;:::-;50091:33;;50140:15;50157:23;50182:12;50198:39;50210:7;50219:4;50225:11;50198;:39::i;:::-;50139:98;;-1:-1:-1;50139:98:0;-1:-1:-1;50139:98:0;-1:-1:-1;50292:15:0;;-1:-1:-1;50309:4:0;;-1:-1:-1;50315:5:0;;-1:-1:-1;;;;;49852:481:0;;;;;;;:::o;4333:144::-;4391:7;4422:43;4426:1;4429;4422:43;;;;;;;;;;;;;;;;;:3;:43::i;5317:511::-;5375:7;5636:6;5632:55;;-1:-1:-1;5670:1:0;5663:8;;5632:55;5715:5;;;5719:1;5715;:5;:1;5743:5;;;;;:10;5735:56;;;;-1:-1:-1;;;5735:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45028:656;27960:6;:13;;-1:-1:-1;;;;27960:13:0;-1:-1:-1;;;27960:13:0;;;45197:16:::1;::::0;;45211:1:::1;45197:16:::0;;;45173:21:::1;45197:16:::0;;::::1;::::0;;45173:21;45197:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;45197:16:0::1;45173:40;;45246:4;45228;45233:1;45228:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;45228:23:0::1;;;-1:-1:-1::0;;;;;45228:23:0::1;;;::::0;::::1;45276:15;-1:-1:-1::0;;;;;45276:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;45276:22:0;45266:7;;:4;;45271:1:::1;::::0;45266:7;::::1;;;;;;;;;;:32;-1:-1:-1::0;;;;;45266:32:0::1;;;-1:-1:-1::0;;;;;45266:32:0::1;;;::::0;::::1;45315:62;45332:4;45347:15;45365:11;45315:8;:62::i;:::-;45424:15;-1:-1:-1::0;;;;;45424:66:0::1;;45509:11;45539:1;45587:4;45618;45642:15;45424:248;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;45424:248:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;28004:6:0;:14;;-1:-1:-1;;;;28004:14:0;;;-1:-1:-1;;;;45028:656:0:o;45704:176::-;45766:18;;-1:-1:-1;;;;;45766:18:0;:42;45794:13;:6;45805:1;45794:10;:13::i;:::-;45766:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45823:21:0;;-1:-1:-1;;;;;45823:21:0;:45;45854:13;:6;45865:1;45854:10;:13::i;:::-;45823:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45900:883;46016:7;46012:44;;46042:14;:12;:14::i;:::-;-1:-1:-1;;;;;46077:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;46101:22:0;;;;;;:11;:22;;;;;;;;46100:23;46077:46;46073:637;;;46144:48;46166:6;46174:9;46185:6;46144:21;:48::i;:::-;46073:637;;;-1:-1:-1;;;;;46219:19:0;;;;;;:11;:19;;;;;;;;46218:20;:46;;;;-1:-1:-1;;;;;;46242:22:0;;;;;;:11;:22;;;;;;;;46218:46;46214:496;;;46285:46;46305:6;46313:9;46324:6;46285:19;:46::i;46214:496::-;-1:-1:-1;;;;;46358:19:0;;;;;;:11;:19;;;;;;;;46357:20;:47;;;;-1:-1:-1;;;;;;46382:22:0;;;;;;:11;:22;;;;;;;;46381:23;46357:47;46353:357;;;46425:44;46443:6;46451:9;46462:6;46425:17;:44::i;46353:357::-;-1:-1:-1;;;;;46495:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;46518:22:0;;;;;;:11;:22;;;;;;;;46495:45;46491:219;;;46561:48;46583:6;46591:9;46602:6;46561:21;:48::i;46491:219::-;46650:44;46668:6;46676:9;46687:6;46650:17;:44::i;:::-;46730:7;46726:45;;46756:15;:13;:15::i;:::-;45900:883;;;;:::o;51281:601::-;51382:7;;51422;;51331;;;;;51450:305;51474:9;:16;51470:20;;51450:305;;;51544:7;51520;:21;51528:9;51538:1;51528:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51528:12:0;51520:21;;;;;;;;;;;;;:31;;:66;;;51579:7;51555;:21;51563:9;51573:1;51563:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51563:12:0;51555:21;;;;;;;;;;;;;:31;51520:66;51516:97;;;51596:7;;51605;;51588:25;;;;;;;;;51516:97;51642:34;51654:7;:21;51662:9;51672:1;51662:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51662:12:0;51654:21;;;;;;;;;;;;;51642:7;;:11;:34::i;:::-;51632:44;;51705:34;51717:7;:21;51725:9;51735:1;51725:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51725:12:0;51717:21;;;;;;;;;;;;;51705:7;;:11;:34::i;:::-;51695:44;-1:-1:-1;51492:3:0;;51450:305;;;-1:-1:-1;51795:7:0;;51783;;:20;;:11;:20::i;:::-;51773:7;:30;51769:61;;;51813:7;;51822;;51805:25;;;;;;;;51769:61;51853:7;;-1:-1:-1;51862:7:0;-1:-1:-1;51281:601:0;;;:::o;7022:298::-;7108:7;7147:12;7140:5;7132:28;;;;-1:-1:-1;;;7132:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7175:9;7191:1;7187;:5;;;;;;;7022:298;-1:-1:-1;;;;;7022:298:0:o;50345:371::-;50438:7;;;;50495:28;50519:3;50495:19;:7;50507:6;50495:11;:19::i;:28::-;50480:43;-1:-1:-1;50538:13:0;50554:29;50579:3;50554:20;:7;50566;50554:11;:20::i;:29::-;50538:45;-1:-1:-1;50598:23:0;50624:28;50538:45;50624:17;:7;50636:4;50624:11;:17::i;:::-;:21;;:28::i;:::-;50598:54;50692:4;;-1:-1:-1;50698:5:0;;-1:-1:-1;50345:371:0;;-1:-1:-1;;;;;50345:371:0:o;50728:354::-;50823:7;;;;50883:24;:7;50895:11;50883;:24::i;:::-;50865:42;-1:-1:-1;50922:12:0;50937:21;:4;50946:11;50937:8;:21::i;:::-;50922:36;-1:-1:-1;50973:23:0;50999:17;:7;50922:36;50999:11;:17::i;:::-;51039:7;;;;-1:-1:-1;51065:4:0;;-1:-1:-1;50728:354:0;;-1:-1:-1;;;;;50728:354:0:o;40505:262::-;40555:7;;:12;:29;;;;-1:-1:-1;40571:8:0;;:13;40555:29;40552:41;;;40586:7;;40552:41;40639:7;;;40621:15;:25;40680:8;;;40661:16;:27;-1:-1:-1;40717:11:0;;;;40743:12;40505:262;:::o;47943:584::-;48050:15;48067:23;48092:12;48106:23;48131:12;48145:13;48162:19;48173:7;48162:10;:19::i;:::-;-1:-1:-1;;;;;48214:15:0;;;;;;:7;:15;;;;;;48049:132;;-1:-1:-1;48049:132:0;;-1:-1:-1;48049:132:0;;-1:-1:-1;48049:132:0;-1:-1:-1;48049:132:0;-1:-1:-1;48049:132:0;-1:-1:-1;48214:28:0;;48234:7;48214:19;:28::i;:::-;-1:-1:-1;;;;;48196:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48275:7;:15;;;;:28;;48295:7;48275:19;:28::i;:::-;-1:-1:-1;;;;;48257:15:0;;;;;;;:7;:15;;;;;;:46;;;;48339:18;;;;;;;:39;;48362:15;48339:22;:39::i;:::-;-1:-1:-1;;;;;48318:18:0;;;;;;:7;:18;;;;;:60;48394:16;48404:5;48394:9;:16::i;:::-;48428:23;48440:4;48446;48428:11;:23::i;:::-;48488:9;-1:-1:-1;;;;;48471:44:0;48480:6;-1:-1:-1;;;;;48471:44:0;;48499:15;48471:44;;;;;;;;;;;;;;;;;;47943:584;;;;;;;;;:::o;47324:607::-;47429:15;47446:23;47471:12;47485:23;47510:12;47524:13;47541:19;47552:7;47541:10;:19::i;:::-;-1:-1:-1;;;;;47593:15:0;;;;;;:7;:15;;;;;;47428:132;;-1:-1:-1;47428:132:0;;-1:-1:-1;47428:132:0;;-1:-1:-1;47428:132:0;-1:-1:-1;47428:132:0;-1:-1:-1;47428:132:0;-1:-1:-1;47593:28:0;;47428:132;47593:19;:28::i;:::-;-1:-1:-1;;;;;47575:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;47657:18;;;;;:7;:18;;;;;:39;;47680:15;47657:22;:39::i;:::-;-1:-1:-1;;;;;47636:18:0;;;;;;:7;:18;;;;;;;;:60;;;;47732:7;:18;;;;:39;;47755:15;47732:22;:39::i;46795:517::-;46898:15;46915:23;46940:12;46954:23;46979:12;46993:13;47010:19;47021:7;47010:10;:19::i;:::-;-1:-1:-1;;;;;47062:15:0;;;;;;:7;:15;;;;;;46897:132;;-1:-1:-1;46897:132:0;;-1:-1:-1;46897:132:0;;-1:-1:-1;46897:132:0;-1:-1:-1;46897:132:0;-1:-1:-1;46897:132:0;-1:-1:-1;47062:28:0;;46897:132;47062:19;:28::i;48539:667::-;48646:15;48663:23;48688:12;48702:23;48727:12;48741:13;48758:19;48769:7;48758:10;:19::i;:::-;-1:-1:-1;;;;;48810:15:0;;;;;;:7;:15;;;;;;48645:132;;-1:-1:-1;48645:132:0;;-1:-1:-1;48645:132:0;;-1:-1:-1;48645:132:0;-1:-1:-1;48645:132:0;-1:-1:-1;48645:132:0;-1:-1:-1;48810:28:0;;48830:7;48810:19;:28::i;:::-;-1:-1:-1;;;;;48792:15:0;;;;;;:7;:15;;;;;;;;:46;;;;48871:7;:15;;;;:28;;48891:7;48871:19;:28::i;40783:127::-;40841:15;;40831:7;:25;40882:16;;40871:8;:27;40783:127::o;49218:349::-;49275:19;49298:10;:8;:10::i;:::-;49275:33;-1:-1:-1;49323:13:0;49339:22;:5;49275:33;49339:9;:22::i;:::-;49417:4;49401:22;;;;:7;:22;;;;;;49323:38;;-1:-1:-1;49401:33:0;;49323:38;49401:26;:33::i;:::-;49392:4;49376:22;;;;:7;:22;;;;;;;;:58;;;;49452:11;:26;;;;;;49449:106;;;49538:4;49522:22;;;;:7;:22;;;;;;:33;;49549:5;49522:26;:33::i;:::-;49513:4;49497:22;;;;:7;:22;;;;;:58;49449:106;49218:349;;;:::o;49579:159::-;49661:7;;:17;;49673:4;49661:11;:17::i;:::-;49651:7;:27;49706:10;;:20;;49721:4;49706:14;:20::i;:::-;49693:10;:33;-1:-1:-1;;49579:159:0:o

Swarm Source

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