ETH Price: $2,543.07 (+5.41%)

Token

Goat (GOAT 🐐)
 

Overview

Max Total Supply

100,000,000,000 GOAT 🐐

Holders

130 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0 GOAT 🐐

Value
$0.00
0xbe513d07929b6b5a938bf6e75cdaedffbaaa590c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

GOAT is a new and exciting 100% community-focused charity token, owned and governed by its investors. Through transacting $GOAT, investors are generously donating to people in need, supporting the GOAT network, and being rewarded for doing so.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GoatCoin

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-02
*/

/**
  Hello,

  Welcome to $GOAT
*/

pragma solidity ^0.6.12;

// SPDX-License-Identifier: Unlicensed
interface IERC20 {
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // //Locks the contract for owner for the amount of time provided
    //

    
    // function lock(uint256 time) public virtual onlyOwner {
    //     _previousOwner = _owner;
    //     _owner = address(0);
    //     _lockTime = now + time;
    //     emit OwnershipTransferred(_owner, address(0));
    // }

    // //Unlocks the contract for owner when _lockTime is exceeds
    // function unlock() public virtual {
    //     require(
    //         _previousOwner == msg.sender,
    //         "You don't have permission to unlock"
    //     );
    //     require(now > _lockTime, "Contract is locked until 7 days");
    //     emit OwnershipTransferred(_owner, _previousOwner);
    //     _owner = _previousOwner;
    // }
}

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// pragma solidity >=0.6.2;

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

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

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

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

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

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

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

    mapping (address => bool) private _isSniper;
    address[] private _confirmedSnipers;

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

    mapping(address => bool) private _isExcludedFromFee;

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

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

    string private _name = "Goat";
    string private _symbol = "GOAT \xF0\x9F\x90\x90";
    uint8 private _decimals = 9;

    address payable public _teamWalletAddress;

    uint256 public _taxFee = 0;
    uint256 private _previousTaxFee = _taxFee;

    uint256 public _liquidityFee = 9;
    uint256 private _previousLiquidityFee = _liquidityFee;

    uint256 private _liqFeeRatio = 6;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;

    uint256 public _maxTxAmount = 100000000 * 10**1 * 10**9;
    uint256 private numTokensSellToAddToLiquidity = 60000000 * 10**1 * 10**9;

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

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

    constructor(address payable teamAddress) public {
        _teamWalletAddress = teamAddress;

        _rOwned[_msgSender()] = _rTotal;

        IUniswapV2Router02 _uniswapV2Router =
            IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); //uniswap router across all ETH
        // 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;

        // List of front-runner & sniper bots from t.me/FairLaunchCalls
        _isSniper[address(0x7589319ED0fD750017159fb4E4d96C63966173C1)] = true;
        _confirmedSnipers.push(address(0x7589319ED0fD750017159fb4E4d96C63966173C1));

        _isSniper[address(0x65A67DF75CCbF57828185c7C050e34De64d859d0)] = true;
        _confirmedSnipers.push(address(0x65A67DF75CCbF57828185c7C050e34De64d859d0));

        _isSniper[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _confirmedSnipers.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isSniper[address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce)] = true;
        _confirmedSnipers.push(address(0xE031b36b53E53a292a20c5F08fd1658CDdf74fce));

        _isSniper[address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345)] = true;
        _confirmedSnipers.push(address(0xe516bDeE55b0b4e9bAcaF6285130De15589B1345));

        _isSniper[address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b)] = true;
        _confirmedSnipers.push(address(0xa1ceC245c456dD1bd9F2815a6955fEf44Eb4191b));

        _isSniper[address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95)] = true;
        _confirmedSnipers.push(address(0xd7d3EE77D35D0a56F91542D4905b1a2b1CD7cF95));

        _isSniper[address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964)] = true;
        _confirmedSnipers.push(address(0xFe76f05dc59fEC04184fA0245AD0C3CF9a57b964));

        _isSniper[address(0xDC81a3450817A58D00f45C86d0368290088db848)] = true;
        _confirmedSnipers.push(address(0xDC81a3450817A58D00f45C86d0368290088db848));

        _isSniper[address(0x45fD07C63e5c316540F14b2002B085aEE78E3881)] = true;
        _confirmedSnipers.push(address(0x45fD07C63e5c316540F14b2002B085aEE78E3881));

        _isSniper[address(0x27F9Adb26D532a41D97e00206114e429ad58c679)] = true;
        _confirmedSnipers.push(address(0x27F9Adb26D532a41D97e00206114e429ad58c679));

        _isSniper[address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7)] = true;
        _confirmedSnipers.push(address(0x9282dc5c422FA91Ff2F6fF3a0b45B7BF97CF78E7));

        _isSniper[address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533)] = true;
        _confirmedSnipers.push(address(0xfad95B6089c53A0D1d861eabFaadd8901b0F8533));

        _isSniper[address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d)] = true;
        _confirmedSnipers.push(address(0x1d6E8BAC6EA3730825bde4B005ed7B2B39A2932d));

        _isSniper[address(0x000000000000084e91743124a982076C59f10084)] = true;
        _confirmedSnipers.push(address(0x000000000000084e91743124a982076C59f10084));

        _isSniper[address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303)] = true;
        _confirmedSnipers.push(address(0x6dA4bEa09C3aA0761b09b19837D9105a52254303));

        _isSniper[address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595)] = true;
        _confirmedSnipers.push(address(0x323b7F37d382A68B0195b873aF17CeA5B67cd595));

        _isSniper[address(0x000000005804B22091aa9830E50459A15E7C9241)] = true;
        _confirmedSnipers.push(address(0x000000005804B22091aa9830E50459A15E7C9241));

        _isSniper[address(0xA3b0e79935815730d942A444A84d4Bd14A339553)] = true;
        _confirmedSnipers.push(address(0xA3b0e79935815730d942A444A84d4Bd14A339553));

        _isSniper[address(0xf6da21E95D74767009acCB145b96897aC3630BaD)] = true;
        _confirmedSnipers.push(address(0xf6da21E95D74767009acCB145b96897aC3630BaD));

        _isSniper[address(0x0000000000007673393729D5618DC555FD13f9aA)] = true;
        _confirmedSnipers.push(address(0x0000000000007673393729D5618DC555FD13f9aA));

        _isSniper[address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1)] = true;
        _confirmedSnipers.push(address(0x00000000000003441d59DdE9A90BFfb1CD3fABf1));

        _isSniper[address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6)] = true;
        _confirmedSnipers.push(address(0x59903993Ae67Bf48F10832E9BE28935FEE04d6F6));

        _isSniper[address(0x000000917de6037d52b1F0a306eeCD208405f7cd)] = true;
        _confirmedSnipers.push(address(0x000000917de6037d52b1F0a306eeCD208405f7cd));

        _isSniper[address(0x7100e690554B1c2FD01E8648db88bE235C1E6514)] = true;
        _confirmedSnipers.push(address(0x7100e690554B1c2FD01E8648db88bE235C1E6514));

        _isSniper[address(0x72b30cDc1583224381132D379A052A6B10725415)] = true;
        _confirmedSnipers.push(address(0x72b30cDc1583224381132D379A052A6B10725415));

        _isSniper[address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE)] = true;
        _confirmedSnipers.push(address(0x9eDD647D7d6Eceae6bB61D7785Ef66c5055A9bEE));

        _isSniper[address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F)] = true;
        _confirmedSnipers.push(address(0xfe9d99ef02E905127239E85A611c29ad32c31c2F));

        _isSniper[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _confirmedSnipers.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));

        _isSniper[address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9)] = true;
        _confirmedSnipers.push(address(0xc496D84215d5018f6F53E7F6f12E45c9b5e8e8A9));

        _isSniper[address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7)] = true;
        _confirmedSnipers.push(address(0x59341Bc6b4f3Ace878574b05914f43309dd678c7));

        _isSniper[address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF)] = true;
        _confirmedSnipers.push(address(0xe986d48EfeE9ec1B8F66CD0b0aE8e3D18F091bDF));

        _isSniper[address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290)] = true;
        _confirmedSnipers.push(address(0x4aEB32e16DcaC00B092596ADc6CD4955EfdEE290));

        _isSniper[address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5)] = true;
        _confirmedSnipers.push(address(0x136F4B5b6A306091b280E3F251fa0E21b1280Cd5));

        _isSniper[address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b)] = true;
        _confirmedSnipers.push(address(0x39608b6f20704889C51C0Ae28b1FCA8F36A5239b));

        _isSniper[address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7)] = true;
        _confirmedSnipers.push(address(0x5B83A351500B631cc2a20a665ee17f0dC66e3dB7));

        _isSniper[address(0xbCb05a3F85d34f0194C70d5914d5C4E28f11Cc02)] = true;
        _confirmedSnipers.push(address(0xbCb05a3F85d34f0194C70d5914d5C4E28f11Cc02));

        _isSniper[address(0x22246F9BCa9921Bfa9A3f8df5baBc5Bc8ee73850)] = true;
        _confirmedSnipers.push(address(0x22246F9BCa9921Bfa9A3f8df5baBc5Bc8ee73850));

        _isSniper[address(0x42d4C197036BD9984cA652303e07dD29fA6bdB37)] = true;
        _confirmedSnipers.push(address(0x42d4C197036BD9984cA652303e07dD29fA6bdB37));

        _isSniper[address(0x00000000003b3cc22aF3aE1EAc0440BcEe416B40)] = true;
        _confirmedSnipers.push(address(0x00000000003b3cc22aF3aE1EAc0440BcEe416B40));

        _isSniper[address(0x231DC6af3C66741f6Cf618884B953DF0e83C1A2A)] = true;
        _confirmedSnipers.push(address(0x231DC6af3C66741f6Cf618884B953DF0e83C1A2A));

        _isSniper[address(0xC6bF34596f74eb22e066a878848DfB9fC1CF4C65)] = true;
        _confirmedSnipers.push(address(0xC6bF34596f74eb22e066a878848DfB9fC1CF4C65));

        _isSniper[address(0x20f6fCd6B8813c4f98c0fFbD88C87c0255040Aa3)] = true;
        _confirmedSnipers.push(address(0x20f6fCd6B8813c4f98c0fFbD88C87c0255040Aa3));

        _isSniper[address(0xD334C5392eD4863C81576422B968C6FB90EE9f79)] = true;
        _confirmedSnipers.push(address(0xD334C5392eD4863C81576422B968C6FB90EE9f79));

        _isSniper[address(0xFFFFF6E70842330948Ca47254F2bE673B1cb0dB7)] = true;
        _confirmedSnipers.push(address(0xFFFFF6E70842330948Ca47254F2bE673B1cb0dB7));

        _isSniper[address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a)] = true;
        _confirmedSnipers.push(address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a));

        _isSniper[address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a)] = true;
        _confirmedSnipers.push(address(0xA39C50bf86e15391180240938F469a7bF4fDAe9a));

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

     function isRemovedSniper(address account) public view returns (bool) {
        return _isSniper[account];
    }

    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 isExcludedFromReward(address account) public view returns (bool) {
        return _isExcluded[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 excludeFromReward(address account) public onlyOwner() {
        // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.');
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

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

    function _transferBothExcluded(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        (
            uint256 rAmount,
            uint256 rTransferAmount,
            uint256 rFee,
            uint256 tTransferAmount,
            uint256 tFee,
            uint256 tLiquidity
        ) = _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);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }

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

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

    function setTaxFeePercent(uint256 taxFee) external onlyOwner() {
        require(taxFee <= 9, "TaxFee > 9");
        _taxFee = taxFee;
    }

    function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() {
        require(liquidityFee <= 9, "liq fee > 9");
        _liquidityFee = liquidityFee;
    }

    function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() {
        require(maxTxPercent > 0, "Maxtx <= 0");
        _maxTxAmount = _tTotal.mul(maxTxPercent).div(10**2);
    }

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

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

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

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

    function _getTValues(uint256 tAmount)
        private
        view
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        uint256 tFee = calculateTaxFee(tAmount);
        uint256 tLiquidity = calculateLiquidityFee(tAmount);
        uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity);
        return (tTransferAmount, tFee, tLiquidity);
    }

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

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

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

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

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

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

    function removeAllFee() private {
        if (_taxFee == 0 && _liquidityFee == 0) return;

        _previousTaxFee = _taxFee;
        _previousLiquidityFee = _liquidityFee;

        _taxFee = 0;
        _liquidityFee = 0;
    }

    function restoreAllFee() private {
        _taxFee = _previousTaxFee;
        _liquidityFee = _previousLiquidityFee;
    }

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_isSniper[to], "You have no power here!");
        require(!_isSniper[msg.sender], "You have no power here!");
        
        require(amount > 0, "Transfer amount must be greater than zero");
        if (from != owner() && to != owner())
            require(
                amount <= _maxTxAmount,
                "Transfer amount exceeds the maxTxAmount."
            );

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

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

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

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

        //if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

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

    function swapForFees(uint256 contractTokenBalance) private lockTheSwap {
     
        sendBNBToTeam(contractTokenBalance);
        emit SwapToTeam(contractTokenBalance);
        
    }

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

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

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

   

    function sendBNBToTeam(uint256 amount) private {
        swapTokensForEth(amount);
        _teamWalletAddress.transfer(address(this).balance);
    }

   

    function _setTeamWallet(address payable teamWalletAddress)
        external
        onlyOwner()
    {
        _teamWalletAddress = teamWalletAddress;
    }

  

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

        if (_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 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 tLiquidity
        ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _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 tLiquidity
        ) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _takeLiquidity(tLiquidity);
        _reflectFee(rFee, tFee);
        emit Transfer(sender, recipient, tTransferAmount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"teamAddress","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"}],"name":"SwapToTeam","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"teamWalletAddress","type":"address"}],"name":"_setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_teamWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isRemovedSniper","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

68056bc75e2d63100000600b5568031f237e1a955fffff19600c55610100604052600460c08190526311dbd85d60e21b60e09081526200004391600e9190620011de565b50604080518082019091526009808252680474f415420f09f90960bc1b60209092019182526200007691600f91620011de565b506010805460ff1916600990811790915560006011819055601255601381905560145560066015556016805461ff001916610100179055670de0b6b3a7640000601755670853a0d2313c0000601855348015620000d257600080fd5b5060405162003cce38038062003cce83398181016040526020811015620000f857600080fd5b5051600062000106620011cb565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060108054610100600160a81b0319166101006001600160a01b03841602179055600c546005600062000181620011cb565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001f857600080fd5b505afa1580156200020d573d6000803e3d6000fd5b505050506040513d60208110156200022457600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200027557600080fd5b505afa1580156200028a573d6000803e3d6000fd5b505050506040513d6020811015620002a157600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620002f457600080fd5b505af115801562000309573d6000803e3d6000fd5b505050506040513d60208110156200032057600080fd5b50516001600160601b0319606091821b811660a0529082901b166080526001600860006200034d620011cf565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526008835290812080548416600190811790915560039092527fa9ce4c89a946d927ffcccc74a7d624c472fa1e2b91cb92e8924e7cb1d1d1e19b80548416831790556004805480840182557f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90810180546001600160a01b0319908116737589319ed0fd750017159fb4e4d96c63966173c1179091557f80bd8880ffa8bad2849fcb2b1f5187616a597a90b3789c6d036d4cd3f65a23788054871686179055825480860184558201805482167365a67df75ccbf57828185c7c050e34de64d859d01790557fec4beab70426d07bc192ecbc5abcb86e06fdfe21a4ca8411bc9bdf37778717fc80548716861781558354808701855583018054831673e031b36b53e53a292a20c5f08fd1658cddf74fce9081179091558154881687179091558354808701855583018054831690911790557ff740ea66275ef8bea68c5512be882d82339d9d4c5c9f4c9370f0c67bae475c9380548716861790558254808601845582018054821673e516bdee55b0b4e9bacaf6285130de15589b13451790557fa5e3f12e55dfcfb64020416460a8c750cd7e1ed27b22206746a0f86b80c3359380548716861790558254808601845582018054821673a1cec245c456dd1bd9f2815a6955fef44eb4191b1790557f8521e82b3465f54ecbd02c8b8fc0d985ffb1ddc2ffdb5264b83dcacbacca680680548716861790558254808601845582018054821673d7d3ee77d35d0a56f91542d4905b1a2b1cd7cf951790557fb0fc5ccec2b800d25796ae8aba64b3bac6e17e8226551f7979f50cf39cbde3ae80548716861790558254808601845582018054821673fe76f05dc59fec04184fa0245ad0c3cf9a57b9641790557fcaaf3e2f2b5d8aab063f228c0adbc13e73318ed94dc4807c185c2f76e6d0064580548716861790558254808601845582018054821673dc81a3450817a58d00f45c86d0368290088db8481790557fa6818653443a92aaeab5605bb29f10349174c1d6d443a83a1428c7a10030dae08054871686179055825480860184558201805482167345fd07c63e5c316540f14b2002b085aee78e38811790557fef5992eccd79980f3d839894f5ff8ca311544bc517617fd6eb7c4cda7d9094da8054871686179055825480860184558201805482167327f9adb26d532a41d97e00206114e429ad58c6791790557f1bf66c4dc450c6c18a7945ee7150be6c58da4754c1b6bfbecd5f3b579338cad2805487168617905582548086018455820180548216739282dc5c422fa91ff2f6ff3a0b45b7bf97cf78e71790557fe2f85a6478b5b59b509cbe6ccf0dd57934d91b093995b1944d0ddb3410e849cd80548716861790558254808601845582018054821673fad95b6089c53a0d1d861eabfaadd8901b0f85331790557ff7ee57ed0b3795918dedeab98ce5a7b4d38560af09e7016f9ea42b55f1fe9e57805487168617905582548086018455820180548216731d6e8bac6ea3730825bde4b005ed7b2b39a2932d1790557fb413ba78c8e8c6c304c1a907e5912e6a79df0d7e2c4a61304908b023a7cd9ac08054871686179055825480860184558201805482166d084e91743124a982076c59f100841790557fa7a5f9669479157b88d24f740177a7110a950ecd0ce246c97eaf0918fd0cb9db805487168617905582548086018455820180548216736da4bea09c3aa0761b09b19837d9105a522543031790557f5fa20288e18a936206d2d61745e8671d9f9ca6adb28552d16df4d7cf59269faa80548716861790558254808601845582018054821673323b7f37d382a68b0195b873af17cea5b67cd5951790557fad576fda787d75a17dd188968c4708acb8ba0abb68c76c1f0a60ccb5dcd2b66c8054871686179055825480860184558201805482166f5804b22091aa9830e50459a15e7c92411790557f2efc885eabc88104ec1479556a6b6f63dd70e8892ada64ce185ad519a54d2adf80548716861790558254808601845582018054821673a3b0e79935815730d942a444a84d4bd14a3395531790557f2a2b233338b9ed7f08f07661ef55a97e10ab0f3e325f2f8abcafae76f480f30080548716861790558254808601845582018054821673f6da21e95d74767009accb145b96897ac3630bad1790557f1abda7a6b3f5bfcc14fbfca1ef6c97c44201357a1ee2f8d46276ae5ca884e9878054871686179055825480860184558201805482166d7673393729d5618dc555fd13f9aa1790557f79e76e782259a7127475c83b116b3bee099ab3eb38d95f219513d1cc2f1fcf488054871686179055825480860184558201805482166d03441d59dde9a90bffb1cd3fabf11790557f9e9d768d592a2c9b2b3610fb787b7205bf62ecfda975dd83d610eea5c6df01bc8054871686179055825480860184558201805482167359903993ae67bf48f10832e9be28935fee04d6f61790557f0dc15c19512cafdc14fc8e62589961e9acdff2c8ce1d3c7272b5a19e54e71c6a80548716861790558254808601845582018054821670917de6037d52b1f0a306eecd208405f7cd1790557fb072e19c88c2e779cf3da7ba5af39d847609d58c23fda89e90bd2e6397916d17805487168617905582548086018455820180548216737100e690554b1c2fd01e8648db88be235c1e65141790557f4dcf679baca23fdfb33ef548b0ee6d4c4feb49ed1bd69f32ceef6e42f0c549f68054871686179055825480860184558201805482167372b30cdc1583224381132d379a052a6b107254151790557f0bddf96af65c90b82c01812d28013302a55c5777ecf86063b0e3e39f341ecb80805487168617905582548086018455820180548216739edd647d7d6eceae6bb61d7785ef66c5055a9bee1790557f2eca383ff46ade3a78f92ef9f4a713acf5f1cc1e63840f6c7674e1677d3509d580548716861790558254808601845582018054821673fe9d99ef02e905127239e85a611c29ad32c31c2f1790557fbd12012088bffe5a66485d7d41389af930ad024b9e1b368c1101e98ce9f62b758054871686178155835480870185558301805483167339608b6f20704889c51c0ae28b1fca8f36a5239b9081179091557fd937f59e3a59786ec046dbc876272a83595b7a51192be86c77da8976f78a78d580548916881790558454808801865584018054841673c496d84215d5018f6f53e7f6f12e45c9b5e8e8a91790557f9d1017e37dec868eb22a97d1673df21214f006d50dd54df531b2ccc4e00fbb1f8054891688179055845480880186558401805484167359341bc6b4f3ace878574b05914f43309dd678c71790557f149b9d73a335eb345aa7c04b19ce0bae4264d9dc7e18c2410ba3357e9cd2e24d80548916881790558454808801865584018054841673e986d48efee9ec1b8f66cd0b0ae8e3d18f091bdf1790557f54ef2b2fa6dab35cbd9a315281a5aef0f200bfcdfaecfb0970927797cb868b39805489168817905584548088018655840180548416734aeb32e16dcac00b092596adc6cd4955efdee2901790557f42786b5300683d4ae8e93f1330dbec6ba8221e132d2e3c4dfab322cef138582a80548916881790558454808801865584018054841673136f4b5b6a306091b280e3f251fa0e21b1280cd51790558154881687179091558354808701855583018054831690911790557fc695dfbb9272c238b631becf60face3fbdff66b0f098453aa7295db786134fff805487168617905582548086018455820180548216735b83a351500b631cc2a20a665ee17f0dc66e3db71790557f5b7c6adba426db8003c877c8b054ae74dfbb0f77cfcc3c6f49dff22105704f5380548716861790558254808601845582018054821673bcb05a3f85d34f0194c70d5914d5c4e28f11cc021790557fcf5397ad9ea950037b34cc49d01cc24fb96803842e13b8bba013ac00d6fbdaf38054871686179055825480860184558201805482167322246f9bca9921bfa9a3f8df5babc5bc8ee738501790557ff91428e2e3b6424dc033e68bab5966ff9b683cf2bcc4c2e343510ba8fd0ba1498054871686179055825480860184558201805482167342d4c197036bd9984ca652303e07dd29fa6bdb371790557f3c679e5fc421e825187f885e3dcd7f4493f886ceeb4930450588e35818a32b9c8054871686179055825480860184558201805482166e3b3cc22af3ae1eac0440bcee416b401790557f202335ba6ff05c085db3f120d873120872ba53277c47c81b209a0b805917416d80548716861790558254808601845582018054821673231dc6af3c66741f6cf618884b953df0e83c1a2a1790557f6edb40d191c27c8171555d5416a33d77b60c69a078979fb186e78cacf15db51280548716861790558254808601845582018054821673c6bf34596f74eb22e066a878848dfb9fc1cf4c651790557f40b65de2165b2640c2739d371b01904de46d9e046824ff9b6aa596a5f93e6da88054871686179055825480860184558201805482167320f6fcd6b8813c4f98c0ffbd88c87c0255040aa31790557f1e33d58f33dab3ea33e2e2eb2b40d2cf562640356de5f833a864b00b3824e4ce80548716861790558254808601845582018054821673d334c5392ed4863c81576422b968c6fb90ee9f791790557f4544f224741585ca6e18b5ecb4d99e7798b3e0d565ed73b950c949ff0bbe1e2b80548716861790558254808601845582018054821673fffff6e70842330948ca47254f2be673b1cb0db71790557fc3c6eb1a6a483882026268852d6f63573cd0677b2896c9e8100ca307c1e9bd5080548716861781558354808701855583018054831673a39c50bf86e15391180240938f469a7bf4fdae9a908117909155815490971686179055825494850183559190925291018054909116909117905562001176620011cb565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600b546040518082815260200191505060405180910390a350506200127a565b3390565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200122157805160ff191683800117855562001251565b8280016001018555821562001251579182015b828111156200125157825182559160200191906001019062001234565b506200125f92915062001263565b5090565b5b808211156200125f576000815560010162001264565b60805160601c60a05160601c612a16620012b860003980610f445280611ad1525080610a2b528061258b5280612643528061266a5250612a166000f3fe6080604052600436106102295760003560e01c8063610d5b1911610123578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107ef578063dd62ed3e14610819578063ea2f0b3714610854578063f2fde38b14610887578063fd62d675146108ba57610230565b8063a457c2d714610709578063a9059cbb14610742578063b6c523241461077b578063b80ec98d14610790578063c49b9a80146107c357610230565b80637d1db4a5116100f25780637d1db4a51461066d57806388f82020146106825780638da5cb5b146106b55780638ee88c53146106ca57806395d89b41146106f457610230565b8063610d5b19146105dd5780636bc87c3a1461061057806370a0823114610625578063715018a61461065857610230565b80633685d419116101b15780634549b039116101755780634549b0391461051b57806349bd5a5e1461054d5780634a74bb021461056257806352390c02146105775780635342acb4146105aa57610230565b80633685d4191461043d57806339509351146104705780633b124fe7146104a95780633bd5d173146104be578063437823ec146104e857610230565b80631694505e116101f85780631694505e1461035f57806318160ddd1461039057806323b872dd146103a55780632d838119146103e8578063313ce5671461041257610230565b8063061c82d01461023557806306fdde0314610261578063095ea7b3146102eb57806313114a9d1461033857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025f6004803603602081101561025857600080fd5b50356108cf565b005b34801561026d57600080fd5b5061027661096f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103246004803603604081101561030e57600080fd5b506001600160a01b038135169060200135610a05565b604080519115158252519081900360200190f35b34801561034457600080fd5b5061034d610a23565b60408051918252519081900360200190f35b34801561036b57600080fd5b50610374610a29565b604080516001600160a01b039092168252519081900360200190f35b34801561039c57600080fd5b5061034d610a4d565b3480156103b157600080fd5b50610324600480360360608110156103c857600080fd5b506001600160a01b03813581169160208101359091169060400135610a53565b3480156103f457600080fd5b5061034d6004803603602081101561040b57600080fd5b5035610ada565b34801561041e57600080fd5b50610427610b3c565b6040805160ff9092168252519081900360200190f35b34801561044957600080fd5b5061025f6004803603602081101561046057600080fd5b50356001600160a01b0316610b45565b34801561047c57600080fd5b506103246004803603604081101561049357600080fd5b506001600160a01b038135169060200135610d06565b3480156104b557600080fd5b5061034d610d54565b3480156104ca57600080fd5b5061025f600480360360208110156104e157600080fd5b5035610d5a565b3480156104f457600080fd5b5061025f6004803603602081101561050b57600080fd5b50356001600160a01b0316610e34565b34801561052757600080fd5b5061034d6004803603604081101561053e57600080fd5b50803590602001351515610eb0565b34801561055957600080fd5b50610374610f42565b34801561056e57600080fd5b50610324610f66565b34801561058357600080fd5b5061025f6004803603602081101561059a57600080fd5b50356001600160a01b0316610f74565b3480156105b657600080fd5b50610324600480360360208110156105cd57600080fd5b50356001600160a01b03166110fa565b3480156105e957600080fd5b506103246004803603602081101561060057600080fd5b50356001600160a01b0316611118565b34801561061c57600080fd5b5061034d611136565b34801561063157600080fd5b5061034d6004803603602081101561064857600080fd5b50356001600160a01b031661113c565b34801561066457600080fd5b5061025f61119e565b34801561067957600080fd5b5061034d611240565b34801561068e57600080fd5b50610324600480360360208110156106a557600080fd5b50356001600160a01b0316611246565b3480156106c157600080fd5b50610374611264565b3480156106d657600080fd5b5061025f600480360360208110156106ed57600080fd5b5035611273565b34801561070057600080fd5b50610276611314565b34801561071557600080fd5b506103246004803603604081101561072c57600080fd5b506001600160a01b038135169060200135611375565b34801561074e57600080fd5b506103246004803603604081101561076557600080fd5b506001600160a01b0381351690602001356113dd565b34801561078757600080fd5b5061034d6113f1565b34801561079c57600080fd5b5061025f600480360360208110156107b357600080fd5b50356001600160a01b03166113f7565b3480156107cf57600080fd5b5061025f600480360360208110156107e657600080fd5b50351515611477565b3480156107fb57600080fd5b5061025f6004803603602081101561081257600080fd5b503561151e565b34801561082557600080fd5b5061034d6004803603604081101561083c57600080fd5b506001600160a01b03813581169160200135166115de565b34801561086057600080fd5b5061025f6004803603602081101561087757600080fd5b50356001600160a01b0316611609565b34801561089357600080fd5b5061025f600480360360208110156108aa57600080fd5b50356001600160a01b0316611682565b3480156108c657600080fd5b5061037461177a565b6108d761178e565b6000546001600160a01b03908116911614610927576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600981111561096a576040805162461bcd60e51b815260206004820152600a602482015269546178466565203e203960b01b604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a19610a1261178e565b8484611792565b5060015b92915050565b600d5490565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5490565b6000610a6084848461187e565b610ad084610a6c61178e565b610acb856040518060600160405280602881526020016128d6602891396001600160a01b038a16600090815260076020526040812090610aaa61178e565b6001600160a01b031681526020810191909152604001600020549190611b8b565b611792565b5060019392505050565b6000600c54821115610b1d5760405162461bcd60e51b815260040180806020018281038252602a81526020018061281b602a913960400191505060405180910390fd5b6000610b27611c22565b9050610b338382611c45565b9150505b919050565b60105460ff1690565b610b4d61178e565b6000546001600160a01b03908116911614610b9d576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610c0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015610d0257816001600160a01b0316600a8281548110610c2e57fe5b6000918252602090912001546001600160a01b03161415610cfa57600a80546000198101908110610c5b57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610c8157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600990925220805460ff19169055600a805480610cd357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d02565b600101610c0d565b5050565b6000610a19610d1361178e565b84610acb8560076000610d2461178e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c8e565b60115481565b6000610d6461178e565b6001600160a01b03811660009081526009602052604090205490915060ff1615610dbf5760405162461bcd60e51b815260040180806020018281038252602c815260200180612990602c913960400191505060405180910390fd5b6000610dca83611ce8565b505050506001600160a01b038416600090815260056020526040902054919250610df691905082611d37565b6001600160a01b038316600090815260056020526040902055600c54610e1c9082611d37565b600c55600d54610e2c9084611c8e565b600d55505050565b610e3c61178e565b6000546001600160a01b03908116911614610e8c576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600b54831115610f09576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f28576000610f1984611ce8565b50939550610a1d945050505050565b6000610f3384611ce8565b50929550610a1d945050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601654610100900460ff1681565b610f7c61178e565b6000546001600160a01b03908116911614610fcc576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff161561103a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205415611094576001600160a01b03811660009081526005602052604090205461107a90610ada565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526003602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526009602052604081205460ff161561117c57506001600160a01b038116600090815260066020526040902054610b37565b6001600160a01b038216600090815260056020526040902054610a1d90610ada565b6111a661178e565b6000546001600160a01b039081169116146111f6576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b61127b61178e565b6000546001600160a01b039081169116146112cb576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600981111561130f576040805162461bcd60e51b815260206004820152600b60248201526a6c697120666565203e203960a81b604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fb5780601f106109d0576101008083540402835291602001916109fb565b6000610a1961138261178e565b84610acb856040518060600160405280602581526020016129bc60259139600760006113ac61178e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b8b565b6000610a196113ea61178e565b848461187e565b60025490565b6113ff61178e565b6000546001600160a01b0390811691161461144f576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61147f61178e565b6000546001600160a01b039081169116146114cf576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b60168054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61152661178e565b6000546001600160a01b03908116911614611576576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600081116115b8576040805162461bcd60e51b815260206004820152600a60248201526904d61787478203c3d20360b41b604482015290519081900360640190fd5b6115d860646115d283600b54611d7990919063ffffffff16565b90611c45565b60175550565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b61161161178e565b6000546001600160a01b03908116911614611661576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b61168a61178e565b6000546001600160a01b039081169116146116da576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811661171f5760405162461bcd60e51b81526004018080602001828103825260268152602001806128456026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105461010090046001600160a01b031681565b3390565b6001600160a01b0383166117d75760405162461bcd60e51b815260040180806020018281038252602481526020018061296c6024913960400191505060405180910390fd5b6001600160a01b03821661181c5760405162461bcd60e51b815260040180806020018281038252602281526020018061286b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118c35760405162461bcd60e51b81526004018080602001828103825260258152602001806129476025913960400191505060405180910390fd5b6001600160a01b0382166119085760405162461bcd60e51b81526004018080602001828103825260238152602001806127f86023913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090205460ff1615611970576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526003602052604090205460ff16156119cf576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b60008111611a0e5760405162461bcd60e51b815260040180806020018281038252602981526020018061291e6029913960400191505060405180910390fd5b611a16611264565b6001600160a01b0316836001600160a01b031614158015611a505750611a3a611264565b6001600160a01b0316826001600160a01b031614155b15611a9657601754811115611a965760405162461bcd60e51b815260040180806020018281038252602881526020018061288d6028913960400191505060405180910390fd5b6000611aa13061113c565b90506017548110611ab157506017545b60185481108015908190611ac8575060165460ff16155b8015611b0657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b8015611b195750601654610100900460ff165b15611b2c576018549150611b2c82611dd2565b6001600160a01b03851660009081526008602052604090205460019060ff1680611b6e57506001600160a01b03851660009081526008602052604090205460ff165b15611b77575060005b611b8386868684611e28565b505050505050565b60008184841115611c1a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bdf578181015183820152602001611bc7565b50505050905090810190601f168015611c0c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c2f611f9c565b9092509050611c3e8282611c45565b9250505090565b6000611c8783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120ff565b9392505050565b600082820183811015611c87576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611cff8a612164565b9250925092506000806000611d1d8d8686611d18611c22565b6121a6565b919f909e50909c50959a5093985091965092945050505050565b6000611c8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8b565b600082611d8857506000610a1d565b82820282848281611d9557fe5b0414611c875760405162461bcd60e51b81526004018080602001828103825260218152602001806128b56021913960400191505060405180910390fd5b6016805460ff19166001179055611de8816121f6565b6040805182815290517f7208866c0f0ef61e86cd94a22570f8d19e03950fee8811ff3485c620c41e02129181900360200190a1506016805460ff19169055565b80611e3557611e3561223f565b6001600160a01b03841660009081526009602052604090205460ff168015611e7657506001600160a01b03831660009081526009602052604090205460ff16155b15611e8b57611e86848484612271565b611f89565b6001600160a01b03841660009081526009602052604090205460ff16158015611ecc57506001600160a01b03831660009081526009602052604090205460ff165b15611edc57611e86848484612395565b6001600160a01b03841660009081526009602052604090205460ff16158015611f1e57506001600160a01b03831660009081526009602052604090205460ff16155b15611f2e57611e8684848461243e565b6001600160a01b03841660009081526009602052604090205460ff168015611f6e57506001600160a01b03831660009081526009602052604090205460ff165b15611f7e57611e86848484612482565b611f8984848461243e565b80611f9657611f966124f5565b50505050565b600c54600b546000918291825b600a548110156120cd578260056000600a8481548110611fc557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061202a57508160066000600a848154811061200357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561204157600c54600b54945094505050506120fb565b61208160056000600a848154811061205557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d37565b92506120c360066000600a848154811061209757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d37565b9150600101611fa9565b50600b54600c546120dd91611c45565b8210156120f557600c54600b549350935050506120fb565b90925090505b9091565b6000818361214e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bdf578181015183820152602001611bc7565b50600083858161215a57fe5b0495945050505050565b60008060008061217385612503565b905060006121808661251f565b90506000612198826121928986611d37565b90611d37565b979296509094509092505050565b60008080806121b58886611d79565b905060006121c38887611d79565b905060006121d18888611d79565b905060006121e3826121928686611d37565b939b939a50919850919650505050505050565b6121ff8161253b565b6010546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610d02573d6000803e3d6000fd5b60115415801561224f5750601354155b156122595761226f565b6011805460125560138054601455600091829055555b565b60008060008060008061228387611ce8565b6001600160a01b038f16600090815260066020526040902054959b509399509197509550935091506122b59088611d37565b6001600160a01b038a166000908152600660209081526040808320939093556005905220546122e49087611d37565b6001600160a01b03808b1660009081526005602052604080822093909355908a16815220546123139086611c8e565b6001600160a01b0389166000908152600560205260409020556123358161274a565b61233f84836127d3565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806123a787611ce8565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506123d99087611d37565b6001600160a01b03808b16600090815260056020908152604080832094909455918b1681526006909152205461240f9084611c8e565b6001600160a01b0389166000908152600660209081526040808320939093556005905220546123139086611c8e565b60008060008060008061245087611ce8565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506122e49087611d37565b60008060008060008061249487611ce8565b6001600160a01b038f16600090815260066020526040902054959b509399509197509550935091506124c69088611d37565b6001600160a01b038a166000908152600660209081526040808320939093556005905220546123d99087611d37565b601254601155601454601355565b6000610a1d60646115d260115485611d7990919063ffffffff16565b6000610a1d60646115d260135485611d7990919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061256957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125e257600080fd5b505afa1580156125f6573d6000803e3d6000fd5b505050506040513d602081101561260c57600080fd5b505181518290600190811061261d57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612668307f000000000000000000000000000000000000000000000000000000000000000084611792565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561270d5781810151838201526020016126f5565b505050509050019650505050505050600060405180830381600087803b15801561273657600080fd5b505af1158015611b83573d6000803e3d6000fd5b6000612754611c22565b905060006127628383611d79565b3060009081526005602052604090205490915061277f9082611c8e565b3060009081526005602090815260408083209390935560099052205460ff16156127ce57306000908152600660205260409020546127bd9084611c8e565b306000908152600660205260409020555b505050565b600c546127e09083611d37565b600c55600d546127f09082611c8e565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204079baeed8572ce992bf8556d50edd4d2350e458ce130e7a49426be5f542cc7c64736f6c634300060c003300000000000000000000000016a7d4b3d56d892d797c6b371c62274ca3b0286b

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063610d5b1911610123578063a457c2d7116100ab578063d543dbeb1161006f578063d543dbeb146107ef578063dd62ed3e14610819578063ea2f0b3714610854578063f2fde38b14610887578063fd62d675146108ba57610230565b8063a457c2d714610709578063a9059cbb14610742578063b6c523241461077b578063b80ec98d14610790578063c49b9a80146107c357610230565b80637d1db4a5116100f25780637d1db4a51461066d57806388f82020146106825780638da5cb5b146106b55780638ee88c53146106ca57806395d89b41146106f457610230565b8063610d5b19146105dd5780636bc87c3a1461061057806370a0823114610625578063715018a61461065857610230565b80633685d419116101b15780634549b039116101755780634549b0391461051b57806349bd5a5e1461054d5780634a74bb021461056257806352390c02146105775780635342acb4146105aa57610230565b80633685d4191461043d57806339509351146104705780633b124fe7146104a95780633bd5d173146104be578063437823ec146104e857610230565b80631694505e116101f85780631694505e1461035f57806318160ddd1461039057806323b872dd146103a55780632d838119146103e8578063313ce5671461041257610230565b8063061c82d01461023557806306fdde0314610261578063095ea7b3146102eb57806313114a9d1461033857610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025f6004803603602081101561025857600080fd5b50356108cf565b005b34801561026d57600080fd5b5061027661096f565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b0578181015183820152602001610298565b50505050905090810190601f1680156102dd5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102f757600080fd5b506103246004803603604081101561030e57600080fd5b506001600160a01b038135169060200135610a05565b604080519115158252519081900360200190f35b34801561034457600080fd5b5061034d610a23565b60408051918252519081900360200190f35b34801561036b57600080fd5b50610374610a29565b604080516001600160a01b039092168252519081900360200190f35b34801561039c57600080fd5b5061034d610a4d565b3480156103b157600080fd5b50610324600480360360608110156103c857600080fd5b506001600160a01b03813581169160208101359091169060400135610a53565b3480156103f457600080fd5b5061034d6004803603602081101561040b57600080fd5b5035610ada565b34801561041e57600080fd5b50610427610b3c565b6040805160ff9092168252519081900360200190f35b34801561044957600080fd5b5061025f6004803603602081101561046057600080fd5b50356001600160a01b0316610b45565b34801561047c57600080fd5b506103246004803603604081101561049357600080fd5b506001600160a01b038135169060200135610d06565b3480156104b557600080fd5b5061034d610d54565b3480156104ca57600080fd5b5061025f600480360360208110156104e157600080fd5b5035610d5a565b3480156104f457600080fd5b5061025f6004803603602081101561050b57600080fd5b50356001600160a01b0316610e34565b34801561052757600080fd5b5061034d6004803603604081101561053e57600080fd5b50803590602001351515610eb0565b34801561055957600080fd5b50610374610f42565b34801561056e57600080fd5b50610324610f66565b34801561058357600080fd5b5061025f6004803603602081101561059a57600080fd5b50356001600160a01b0316610f74565b3480156105b657600080fd5b50610324600480360360208110156105cd57600080fd5b50356001600160a01b03166110fa565b3480156105e957600080fd5b506103246004803603602081101561060057600080fd5b50356001600160a01b0316611118565b34801561061c57600080fd5b5061034d611136565b34801561063157600080fd5b5061034d6004803603602081101561064857600080fd5b50356001600160a01b031661113c565b34801561066457600080fd5b5061025f61119e565b34801561067957600080fd5b5061034d611240565b34801561068e57600080fd5b50610324600480360360208110156106a557600080fd5b50356001600160a01b0316611246565b3480156106c157600080fd5b50610374611264565b3480156106d657600080fd5b5061025f600480360360208110156106ed57600080fd5b5035611273565b34801561070057600080fd5b50610276611314565b34801561071557600080fd5b506103246004803603604081101561072c57600080fd5b506001600160a01b038135169060200135611375565b34801561074e57600080fd5b506103246004803603604081101561076557600080fd5b506001600160a01b0381351690602001356113dd565b34801561078757600080fd5b5061034d6113f1565b34801561079c57600080fd5b5061025f600480360360208110156107b357600080fd5b50356001600160a01b03166113f7565b3480156107cf57600080fd5b5061025f600480360360208110156107e657600080fd5b50351515611477565b3480156107fb57600080fd5b5061025f6004803603602081101561081257600080fd5b503561151e565b34801561082557600080fd5b5061034d6004803603604081101561083c57600080fd5b506001600160a01b03813581169160200135166115de565b34801561086057600080fd5b5061025f6004803603602081101561087757600080fd5b50356001600160a01b0316611609565b34801561089357600080fd5b5061025f600480360360208110156108aa57600080fd5b50356001600160a01b0316611682565b3480156108c657600080fd5b5061037461177a565b6108d761178e565b6000546001600160a01b03908116911614610927576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600981111561096a576040805162461bcd60e51b815260206004820152600a602482015269546178466565203e203960b01b604482015290519081900360640190fd5b601155565b600e8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fb5780601f106109d0576101008083540402835291602001916109fb565b820191906000526020600020905b8154815290600101906020018083116109de57829003601f168201915b5050505050905090565b6000610a19610a1261178e565b8484611792565b5060015b92915050565b600d5490565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b600b5490565b6000610a6084848461187e565b610ad084610a6c61178e565b610acb856040518060600160405280602881526020016128d6602891396001600160a01b038a16600090815260076020526040812090610aaa61178e565b6001600160a01b031681526020810191909152604001600020549190611b8b565b611792565b5060019392505050565b6000600c54821115610b1d5760405162461bcd60e51b815260040180806020018281038252602a81526020018061281b602a913960400191505060405180910390fd5b6000610b27611c22565b9050610b338382611c45565b9150505b919050565b60105460ff1690565b610b4d61178e565b6000546001600160a01b03908116911614610b9d576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff16610c0a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600a54811015610d0257816001600160a01b0316600a8281548110610c2e57fe5b6000918252602090912001546001600160a01b03161415610cfa57600a80546000198101908110610c5b57fe5b600091825260209091200154600a80546001600160a01b039092169183908110610c8157fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600682526040808220829055600990925220805460ff19169055600a805480610cd357fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d02565b600101610c0d565b5050565b6000610a19610d1361178e565b84610acb8560076000610d2461178e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611c8e565b60115481565b6000610d6461178e565b6001600160a01b03811660009081526009602052604090205490915060ff1615610dbf5760405162461bcd60e51b815260040180806020018281038252602c815260200180612990602c913960400191505060405180910390fd5b6000610dca83611ce8565b505050506001600160a01b038416600090815260056020526040902054919250610df691905082611d37565b6001600160a01b038316600090815260056020526040902055600c54610e1c9082611d37565b600c55600d54610e2c9084611c8e565b600d55505050565b610e3c61178e565b6000546001600160a01b03908116911614610e8c576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b6000600b54831115610f09576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f28576000610f1984611ce8565b50939550610a1d945050505050565b6000610f3384611ce8565b50929550610a1d945050505050565b7f0000000000000000000000001c0ba53eee48be3e2a92967bed6227e5b262d7ad81565b601654610100900460ff1681565b610f7c61178e565b6000546001600160a01b03908116911614610fcc576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526009602052604090205460ff161561103a576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526005602052604090205415611094576001600160a01b03811660009081526005602052604090205461107a90610ada565b6001600160a01b0382166000908152600660205260409020555b6001600160a01b03166000818152600960205260408120805460ff19166001908117909155600a805491820181559091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319169091179055565b6001600160a01b031660009081526008602052604090205460ff1690565b6001600160a01b031660009081526003602052604090205460ff1690565b60135481565b6001600160a01b03811660009081526009602052604081205460ff161561117c57506001600160a01b038116600090815260066020526040902054610b37565b6001600160a01b038216600090815260056020526040902054610a1d90610ada565b6111a661178e565b6000546001600160a01b039081169116146111f6576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60175481565b6001600160a01b031660009081526009602052604090205460ff1690565b6000546001600160a01b031690565b61127b61178e565b6000546001600160a01b039081169116146112cb576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600981111561130f576040805162461bcd60e51b815260206004820152600b60248201526a6c697120666565203e203960a81b604482015290519081900360640190fd5b601355565b600f8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109fb5780601f106109d0576101008083540402835291602001916109fb565b6000610a1961138261178e565b84610acb856040518060600160405280602581526020016129bc60259139600760006113ac61178e565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611b8b565b6000610a196113ea61178e565b848461187e565b60025490565b6113ff61178e565b6000546001600160a01b0390811691161461144f576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b61147f61178e565b6000546001600160a01b039081169116146114cf576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b60168054821515610100810261ff00199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b61152661178e565b6000546001600160a01b03908116911614611576576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b600081116115b8576040805162461bcd60e51b815260206004820152600a60248201526904d61787478203c3d20360b41b604482015290519081900360640190fd5b6115d860646115d283600b54611d7990919063ffffffff16565b90611c45565b60175550565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205490565b61161161178e565b6000546001600160a01b03908116911614611661576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600860205260409020805460ff19169055565b61168a61178e565b6000546001600160a01b039081169116146116da576040805162461bcd60e51b815260206004820181905260248201526000805160206128fe833981519152604482015290519081900360640190fd5b6001600160a01b03811661171f5760405162461bcd60e51b81526004018080602001828103825260268152602001806128456026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60105461010090046001600160a01b031681565b3390565b6001600160a01b0383166117d75760405162461bcd60e51b815260040180806020018281038252602481526020018061296c6024913960400191505060405180910390fd5b6001600160a01b03821661181c5760405162461bcd60e51b815260040180806020018281038252602281526020018061286b6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260076020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166118c35760405162461bcd60e51b81526004018080602001828103825260258152602001806129476025913960400191505060405180910390fd5b6001600160a01b0382166119085760405162461bcd60e51b81526004018080602001828103825260238152602001806127f86023913960400191505060405180910390fd5b6001600160a01b03821660009081526003602052604090205460ff1615611970576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b3360009081526003602052604090205460ff16156119cf576040805162461bcd60e51b8152602060048201526017602482015276596f752068617665206e6f20706f77657220686572652160481b604482015290519081900360640190fd5b60008111611a0e5760405162461bcd60e51b815260040180806020018281038252602981526020018061291e6029913960400191505060405180910390fd5b611a16611264565b6001600160a01b0316836001600160a01b031614158015611a505750611a3a611264565b6001600160a01b0316826001600160a01b031614155b15611a9657601754811115611a965760405162461bcd60e51b815260040180806020018281038252602881526020018061288d6028913960400191505060405180910390fd5b6000611aa13061113c565b90506017548110611ab157506017545b60185481108015908190611ac8575060165460ff16155b8015611b0657507f0000000000000000000000001c0ba53eee48be3e2a92967bed6227e5b262d7ad6001600160a01b0316856001600160a01b031614155b8015611b195750601654610100900460ff165b15611b2c576018549150611b2c82611dd2565b6001600160a01b03851660009081526008602052604090205460019060ff1680611b6e57506001600160a01b03851660009081526008602052604090205460ff165b15611b77575060005b611b8386868684611e28565b505050505050565b60008184841115611c1a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bdf578181015183820152602001611bc7565b50505050905090810190601f168015611c0c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611c2f611f9c565b9092509050611c3e8282611c45565b9250505090565b6000611c8783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120ff565b9392505050565b600082820183811015611c87576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611cff8a612164565b9250925092506000806000611d1d8d8686611d18611c22565b6121a6565b919f909e50909c50959a5093985091965092945050505050565b6000611c8783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8b565b600082611d8857506000610a1d565b82820282848281611d9557fe5b0414611c875760405162461bcd60e51b81526004018080602001828103825260218152602001806128b56021913960400191505060405180910390fd5b6016805460ff19166001179055611de8816121f6565b6040805182815290517f7208866c0f0ef61e86cd94a22570f8d19e03950fee8811ff3485c620c41e02129181900360200190a1506016805460ff19169055565b80611e3557611e3561223f565b6001600160a01b03841660009081526009602052604090205460ff168015611e7657506001600160a01b03831660009081526009602052604090205460ff16155b15611e8b57611e86848484612271565b611f89565b6001600160a01b03841660009081526009602052604090205460ff16158015611ecc57506001600160a01b03831660009081526009602052604090205460ff165b15611edc57611e86848484612395565b6001600160a01b03841660009081526009602052604090205460ff16158015611f1e57506001600160a01b03831660009081526009602052604090205460ff16155b15611f2e57611e8684848461243e565b6001600160a01b03841660009081526009602052604090205460ff168015611f6e57506001600160a01b03831660009081526009602052604090205460ff165b15611f7e57611e86848484612482565b611f8984848461243e565b80611f9657611f966124f5565b50505050565b600c54600b546000918291825b600a548110156120cd578260056000600a8481548110611fc557fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054118061202a57508160066000600a848154811061200357fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561204157600c54600b54945094505050506120fb565b61208160056000600a848154811061205557fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548490611d37565b92506120c360066000600a848154811061209757fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390611d37565b9150600101611fa9565b50600b54600c546120dd91611c45565b8210156120f557600c54600b549350935050506120fb565b90925090505b9091565b6000818361214e5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611bdf578181015183820152602001611bc7565b50600083858161215a57fe5b0495945050505050565b60008060008061217385612503565b905060006121808661251f565b90506000612198826121928986611d37565b90611d37565b979296509094509092505050565b60008080806121b58886611d79565b905060006121c38887611d79565b905060006121d18888611d79565b905060006121e3826121928686611d37565b939b939a50919850919650505050505050565b6121ff8161253b565b6010546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610d02573d6000803e3d6000fd5b60115415801561224f5750601354155b156122595761226f565b6011805460125560138054601455600091829055555b565b60008060008060008061228387611ce8565b6001600160a01b038f16600090815260066020526040902054959b509399509197509550935091506122b59088611d37565b6001600160a01b038a166000908152600660209081526040808320939093556005905220546122e49087611d37565b6001600160a01b03808b1660009081526005602052604080822093909355908a16815220546123139086611c8e565b6001600160a01b0389166000908152600560205260409020556123358161274a565b61233f84836127d3565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b6000806000806000806123a787611ce8565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506123d99087611d37565b6001600160a01b03808b16600090815260056020908152604080832094909455918b1681526006909152205461240f9084611c8e565b6001600160a01b0389166000908152600660209081526040808320939093556005905220546123139086611c8e565b60008060008060008061245087611ce8565b6001600160a01b038f16600090815260056020526040902054959b509399509197509550935091506122e49087611d37565b60008060008060008061249487611ce8565b6001600160a01b038f16600090815260066020526040902054959b509399509197509550935091506124c69088611d37565b6001600160a01b038a166000908152600660209081526040808320939093556005905220546123d99087611d37565b601254601155601454601355565b6000610a1d60646115d260115485611d7990919063ffffffff16565b6000610a1d60646115d260135485611d7990919063ffffffff16565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061256957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156125e257600080fd5b505afa1580156125f6573d6000803e3d6000fd5b505050506040513d602081101561260c57600080fd5b505181518290600190811061261d57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050612668307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611792565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b8381101561270d5781810151838201526020016126f5565b505050509050019650505050505050600060405180830381600087803b15801561273657600080fd5b505af1158015611b83573d6000803e3d6000fd5b6000612754611c22565b905060006127628383611d79565b3060009081526005602052604090205490915061277f9082611c8e565b3060009081526005602090815260408083209390935560099052205460ff16156127ce57306000908152600660205260409020546127bd9084611c8e565b306000908152600660205260409020555b505050565b600c546127e09083611d37565b600c55600d546127f09082611c8e565b600d55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204079baeed8572ce992bf8556d50edd4d2350e458ce130e7a49426be5f542cc7c64736f6c634300060c0033

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

00000000000000000000000016a7d4b3d56d892d797c6b371c62274ca3b0286b

-----Decoded View---------------
Arg [0] : teamAddress (address): 0x16a7D4b3d56D892D797c6b371c62274Ca3b0286b

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000016a7d4b3d56d892d797c6b371c62274ca3b0286b


Deployed Bytecode Sourcemap

27832:27582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44385:143;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44385:143:0;;:::i;:::-;;38617:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39602:193;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39602:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41101:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;28971:51;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;28971:51:0;;;;;;;;;;;;;;38894:95;;;;;;;;;;;;;:::i;39803:446::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39803:446:0;;;;;;;;;;;;;;;;;:::i;42110:322::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42110:322:0;;:::i;38803:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42896:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42896:479:0;-1:-1:-1;;;;;42896:479:0;;:::i;40257:300::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40257:300:0;;;;;;;;:::i;28746:26::-;;;;;;;;;;;;;:::i;41196:419::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41196:419:0;;:::i;44148:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44148:111:0;-1:-1:-1;;;;;44148:111:0;;:::i;41623:479::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41623:479:0;;;;;;;;;:::i;29029:38::-;;;;;;;;;;;;;:::i;29104:40::-;;;;;;;;;;;;;:::i;42440:448::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42440:448:0;-1:-1:-1;;;;;42440:448:0;;:::i;48830:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48830:124:0;-1:-1:-1;;;;;48830:124:0;;:::i;38496:113::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38496:113:0;-1:-1:-1;;;;;38496:113:0;;:::i;28829:32::-;;;;;;;;;;;;;:::i;38997:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38997:198:0;-1:-1:-1;;;;;38997:198:0;;:::i;16919:148::-;;;;;;;;;;;;;:::i;29153:55::-;;;;;;;;;;;;;:::i;40973:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40973:120:0;-1:-1:-1;;;;;40973:120:0;;:::i;16277:79::-;;;;;;;;;;;;;:::i;44536:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44536:174:0;;:::i;38708:87::-;;;;;;;;;;;;;:::i;40565:400::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;40565:400:0;;;;;;;;:::i;39203:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39203:199:0;;;;;;;;:::i;17511:89::-;;;;;;;;;;;;;:::i;52287:160::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52287:160:0;-1:-1:-1;;;;;52287:160:0;;:::i;44914:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44914:171:0;;;;:::i;44718:188::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44718:188:0;;:::i;39410:184::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;39410:184:0;;;;;;;;;;:::i;44267:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44267:110:0;-1:-1:-1;;;;;44267:110:0;;:::i;17222:281::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17222:281:0;-1:-1:-1;;;;;17222:281:0;;:::i;28696:41::-;;;;;;;;;;;;;:::i;44385:143::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;44477:1:::1;44467:6;:11;;44459:34;;;::::0;;-1:-1:-1;;;44459:34:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44459:34:0;;;;;;;;;;;;;::::1;;44504:7;:16:::0;44385:143::o;38617:83::-;38687:5;38680:12;;;;;;;;-1:-1:-1;;38680:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38654:13;;38680:12;;38687:5;;38680:12;;38687:5;38680:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38617:83;:::o;39602:193::-;39704:4;39726:39;39735:12;:10;:12::i;:::-;39749:7;39758:6;39726:8;:39::i;:::-;-1:-1:-1;39783:4:0;39602:193;;;;;:::o;41101:87::-;41170:10;;41101:87;:::o;28971:51::-;;;:::o;38894:95::-;38974:7;;38894:95;:::o;39803:446::-;39935:4;39952:36;39962:6;39970:9;39981:6;39952:9;:36::i;:::-;39999:220;40022:6;40043:12;:10;:12::i;:::-;40070:138;40126:6;40070:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40070:19:0;;;;;;:11;:19;;;;;;40090:12;:10;:12::i;:::-;-1:-1:-1;;;;;40070:33:0;;;;;;;;;;;;-1:-1:-1;40070:33:0;;;:138;:37;:138::i;:::-;39999:8;:220::i;:::-;-1:-1:-1;40237:4:0;39803:446;;;;;:::o;42110:322::-;42204:7;42262;;42251;:18;;42229:110;;;;-1:-1:-1;;;42229:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42350:19;42372:10;:8;:10::i;:::-;42350:32;-1:-1:-1;42400:24:0;:7;42350:32;42400:11;:24::i;:::-;42393:31;;;42110:322;;;;:::o;38803:83::-;38869:9;;;;38803:83;:::o;42896:479::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42978:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42970:60;;;::::0;;-1:-1:-1;;;42970:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;43046:9;43041:327;43065:9;:16:::0;43061:20;::::1;43041:327;;;43123:7;-1:-1:-1::0;;;;;43107:23:0::1;:9;43117:1;43107:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;43107:12:0::1;:23;43103:254;;;43166:9;43176:16:::0;;-1:-1:-1;;43176:20:0;;;43166:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;43151:9:::1;:12:::0;;-1:-1:-1;;;;;43166:31:0;;::::1;::::0;43161:1;;43151:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;43151:46:0::1;-1:-1:-1::0;;;;;43151:46:0;;::::1;;::::0;;43216:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;43255:11:::1;:20:::0;;;;:28;;-1:-1:-1;;43255:28:0::1;::::0;;43302:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;43302:15:0;;;;;-1:-1:-1;;;;;;43302:15:0::1;::::0;;;;;43336:5:::1;;43103:254;43083:3;;43041:327;;;;42896:479:::0;:::o;40257:300::-;40372:4;40394:133;40417:12;:10;:12::i;:::-;40444:7;40466:50;40505:10;40466:11;:25;40478:12;:10;:12::i;:::-;-1:-1:-1;;;;;40466:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;40466:25:0;;;:34;;;;;;;;;;;:38;:50::i;28746:26::-;;;;:::o;41196:419::-;41248:14;41265:12;:10;:12::i;:::-;-1:-1:-1;;;;;41311:19:0;;;;;;:11;:19;;;;;;41248:29;;-1:-1:-1;41311:19:0;;41310:20;41288:114;;;;-1:-1:-1;;;41288:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41414:15;41443:19;41454:7;41443:10;:19::i;:::-;-1:-1:-1;;;;;;;;;41491:15:0;;;;;;:7;:15;;;;;;41413:49;;-1:-1:-1;41491:28:0;;:15;-1:-1:-1;41413:49:0;41491:19;:28::i;:::-;-1:-1:-1;;;;;41473:15:0;;;;;;:7;:15;;;;;:46;41540:7;;:20;;41552:7;41540:11;:20::i;:::-;41530:7;:30;41584:10;;:23;;41599:7;41584:14;:23::i;:::-;41571:10;:36;-1:-1:-1;;;41196:419:0:o;44148:111::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44217:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;44217:34:0::1;44247:4;44217:34;::::0;;44148:111::o;41623:479::-;41741:7;41785;;41774;:18;;41766:62;;;;;-1:-1:-1;;;41766:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;41844:17;41839:256;;41879:15;41908:19;41919:7;41908:10;:19::i;:::-;-1:-1:-1;41878:49:0;;-1:-1:-1;41942:14:0;;-1:-1:-1;;;;;41942:14:0;41839:256;41992:23;42027:19;42038:7;42027:10;:19::i;:::-;-1:-1:-1;41989:57:0;;-1:-1:-1;42061:22:0;;-1:-1:-1;;;;;42061:22:0;29029:38;;;:::o;29104:40::-;;;;;;;;;:::o;42440:448::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;42637:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;42636:21;42628:61;;;::::0;;-1:-1:-1;;;42628:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;42704:16:0;::::1;42723:1;42704:16:::0;;;:7:::1;:16;::::0;;;;;:20;42700:109:::1;;-1:-1:-1::0;;;;;42780:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;42760:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;42741:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;42700:109:::1;-1:-1:-1::0;;;;;42819:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;42819:27:0::1;42842:4;42819:27:::0;;::::1;::::0;;;42857:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42857:23:0::1;::::0;;::::1;::::0;;42440:448::o;48830:124::-;-1:-1:-1;;;;;48919:27:0;48895:4;48919:27;;;:18;:27;;;;;;;;;48830:124::o;38496:113::-;-1:-1:-1;;;;;38583:18:0;38559:4;38583:18;;;:9;:18;;;;;;;;;38496:113::o;28829:32::-;;;;:::o;38997:198::-;-1:-1:-1;;;;;39087:20:0;;39063:7;39087:20;;;:11;:20;;;;;;;;39083:49;;;-1:-1:-1;;;;;;39116:16:0;;;;;;:7;:16;;;;;;39109:23;;39083:49;-1:-1:-1;;;;;39170:16:0;;;;;;:7;:16;;;;;;39150:37;;:19;:37::i;16919:148::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;17026:1:::1;17010:6:::0;;16989:40:::1;::::0;-1:-1:-1;;;;;17010:6:0;;::::1;::::0;16989:40:::1;::::0;17026:1;;16989:40:::1;17057:1;17040:19:::0;;-1:-1:-1;;;;;;17040:19:0::1;::::0;;16919:148::o;29153:55::-;;;;:::o;40973:120::-;-1:-1:-1;;;;;41065:20:0;41041:4;41065:20;;;:11;:20;;;;;;;;;40973:120::o;16277:79::-;16315:7;16342:6;-1:-1:-1;;;;;16342:6:0;16277:79;:::o;44536:174::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;44646:1:::1;44630:12;:17;;44622:41;;;::::0;;-1:-1:-1;;;44622:41:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44622:41:0;;;;;;;;;;;;;::::1;;44674:13;:28:::0;44536:174::o;38708:87::-;38780:7;38773:14;;;;;;;;-1:-1:-1;;38773:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38747:13;;38773:14;;38780:7;;38773:14;;38780:7;38773:14;;;;;;;;;;;;;;;;;;;;;;;;40565:400;40685:4;40707:228;40730:12;:10;:12::i;:::-;40757:7;40779:145;40836:15;40779:145;;;;;;;;;;;;;;;;;:11;:25;40791:12;:10;:12::i;:::-;-1:-1:-1;;;;;40779:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;40779:25:0;;;:34;;;;;;;;;;;:145;:38;:145::i;39203:199::-;39308:4;39330:42;39340:12;:10;:12::i;:::-;39354:9;39365:6;39330:9;:42::i;17511:89::-;17583:9;;17511:89;:::o;52287:160::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;52401:18:::1;:38:::0;;-1:-1:-1;;;;;52401:38:0;;::::1;;;-1:-1:-1::0;;;;;;52401:38:0;;::::1;::::0;;;::::1;::::0;;52287:160::o;44914:171::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;44991:21:::1;:32:::0;;;::::1;;;::::0;::::1;-1:-1:-1::0;;44991:32:0;;::::1;::::0;;;::::1;::::0;;;45039:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;44914:171:::0;:::o;44718:188::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;44820:1:::1;44805:12;:16;44797:39;;;::::0;;-1:-1:-1;;;44797:39:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;44797:39:0;;;;;;;;;;;;;::::1;;44862:36;44892:5;44862:25;44874:12;44862:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:36::i;:::-;44847:12;:51:::0;-1:-1:-1;44718:188:0:o;39410:184::-;-1:-1:-1;;;;;39559:18:0;;;39527:7;39559:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;39410:184::o;44267:110::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;44334:27:0::1;44364:5;44334:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;44334:35:0::1;::::0;;44267:110::o;17222:281::-;16499:12;:10;:12::i;:::-;16489:6;;-1:-1:-1;;;;;16489:6:0;;;:22;;;16481:67;;;;;-1:-1:-1;;;16481:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16481:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;17325:22:0;::::1;17303:110;;;;-1:-1:-1::0;;;17303:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17450:6;::::0;;17429:38:::1;::::0;-1:-1:-1;;;;;17429:38:0;;::::1;::::0;17450:6;::::1;::::0;17429:38:::1;::::0;::::1;17478:6;:17:::0;;-1:-1:-1;;;;;;17478:17:0::1;-1:-1:-1::0;;;;;17478:17:0;;;::::1;::::0;;;::::1;::::0;;17222:281::o;28696:41::-;;;;;;-1:-1:-1;;;;;28696:41:0;;:::o;8233:106::-;8321:10;8233:106;:::o;48962:371::-;-1:-1:-1;;;;;49089:19:0;;49081:68;;;;-1:-1:-1;;;49081:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49168:21:0;;49160:68;;;;-1:-1:-1;;;49160:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49241:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;49293:32;;;;;;;;;;;;;;;;;48962:371;;;:::o;49341:1970::-;-1:-1:-1;;;;;49463:18:0;;49455:68;;;;-1:-1:-1;;;49455:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49542:16:0;;49534:64;;;;-1:-1:-1;;;49534:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49618:13:0;;;;;;:9;:13;;;;;;;;49617:14;49609:50;;;;;-1:-1:-1;;;49609:50:0;;;;;;;;;;;;-1:-1:-1;;;49609:50:0;;;;;;;;;;;;;;;49689:10;49679:21;;;;:9;:21;;;;;;;;49678:22;49670:58;;;;;-1:-1:-1;;;49670:58:0;;;;;;;;;;;;-1:-1:-1;;;49670:58:0;;;;;;;;;;;;;;;49766:1;49757:6;:10;49749:64;;;;-1:-1:-1;;;49749:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49836:7;:5;:7::i;:::-;-1:-1:-1;;;;;49828:15:0;:4;-1:-1:-1;;;;;49828:15:0;;;:32;;;;;49853:7;:5;:7::i;:::-;-1:-1:-1;;;;;49847:13:0;:2;-1:-1:-1;;;;;49847:13:0;;;49828:32;49824:175;;;49911:12;;49901:6;:22;;49875:124;;;;-1:-1:-1;;;49875:124:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50294:28;50325:24;50343:4;50325:9;:24::i;:::-;50294:55;;50390:12;;50366:20;:36;50362:104;;-1:-1:-1;50442:12:0;;50362:104;50542:29;;50518:53;;;;;;;50600;;-1:-1:-1;50637:16:0;;;;50636:17;50600:53;:91;;;;;50678:13;-1:-1:-1;;;;;50670:21:0;:4;-1:-1:-1;;;;;50670:21:0;;;50600:91;:129;;;;-1:-1:-1;50708:21:0;;;;;;;50600:129;50582:315;;;50779:29;;50756:52;;50852:33;50864:20;50852:11;:33::i;:::-;-1:-1:-1;;;;;51090:24:0;;50970:12;51090:24;;;:18;:24;;;;;;50985:4;;51090:24;;;:50;;-1:-1:-1;;;;;;51118:22:0;;;;;;:18;:22;;;;;;;;51090:50;51086:98;;;-1:-1:-1;51167:5:0;51086:98;51262:41;51277:4;51283:2;51287:6;51295:7;51262:14;:41::i;:::-;49341:1970;;;;;;:::o;4541:226::-;4661:7;4697:12;4689:6;;;;4681:29;;;;-1:-1:-1;;;4681:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4733:5:0;;;4541:226::o;46986:164::-;47028:7;47049:15;47066;47085:19;:17;:19::i;:::-;47048:56;;-1:-1:-1;47048:56:0;-1:-1:-1;47122:20:0;47048:56;;47122:11;:20::i;:::-;47115:27;;;;46986:164;:::o;5973:132::-;6031:7;6058:39;6062:1;6065;6058:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6051:46;5973:132;-1:-1:-1;;;5973:132:0:o;3638:181::-;3696:7;3728:5;;;3752:6;;;;3744:46;;;;;-1:-1:-1;;;3744:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;45341:655;45441:7;45463;45485;45507;45529;45551;45587:23;45612:12;45626:18;45661:20;45673:7;45661:11;:20::i;:::-;45586:95;;;;;;45693:15;45710:23;45735:12;45764:50;45776:7;45785:4;45791:10;45803;:8;:10::i;:::-;45764:11;:50::i;:::-;45692:122;;;;-1:-1:-1;45692:122:0;;-1:-1:-1;45918:15:0;;-1:-1:-1;45948:4:0;;-1:-1:-1;45967:10:0;;-1:-1:-1;45341:655:0;;-1:-1:-1;;;;;45341:655:0:o;4102:136::-;4160:7;4187:43;4191:1;4194;4187:43;;;;;;;;;;;;;;;;;:3;:43::i;5026:471::-;5084:7;5329:6;5325:47;;-1:-1:-1;5359:1:0;5352:8;;5325:47;5396:5;;;5400:1;5396;:5;:1;5420:5;;;;;:10;5412:56;;;;-1:-1:-1;;;5412:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51319:190;29632:16;:23;;-1:-1:-1;;29632:23:0;29651:4;29632:23;;;51408:35:::1;51422:20:::0;51408:13:::1;:35::i;:::-;51459:32;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;29678:16:0;:24;;-1:-1:-1;;29678:24:0;;;51319:190::o;52534:838::-;52690:7;52685:28;;52699:14;:12;:14::i;:::-;-1:-1:-1;;;;;52730:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;52754:22:0;;;;;;:11;:22;;;;;;;;52753:23;52730:46;52726:597;;;52793:48;52815:6;52823:9;52834:6;52793:21;:48::i;:::-;52726:597;;;-1:-1:-1;;;;;52864:19:0;;;;;;:11;:19;;;;;;;;52863:20;:46;;;;-1:-1:-1;;;;;;52887:22:0;;;;;;:11;:22;;;;;;;;52863:46;52859:464;;;52926:46;52946:6;52954:9;52965:6;52926:19;:46::i;52859:464::-;-1:-1:-1;;;;;52995:19:0;;;;;;:11;:19;;;;;;;;52994:20;:47;;;;-1:-1:-1;;;;;;53019:22:0;;;;;;:11;:22;;;;;;;;53018:23;52994:47;52990:333;;;53058:44;53076:6;53084:9;53095:6;53058:17;:44::i;52990:333::-;-1:-1:-1;;;;;53124:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;53147:22:0;;;;;;:11;:22;;;;;;;;53124:45;53120:203;;;53186:48;53208:6;53216:9;53227:6;53186:21;:48::i;53120:203::-;53267:44;53285:6;53293:9;53304:6;53267:17;:44::i;:::-;53340:7;53335:29;;53349:15;:13;:15::i;:::-;52534:838;;;;:::o;47158:605::-;47256:7;;47292;;47209;;;;;47310:338;47334:9;:16;47330:20;;47310:338;;;47418:7;47394;:21;47402:9;47412:1;47402:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47402:12:0;47394:21;;;;;;;;;;;;;:31;;:83;;;47470:7;47446;:21;47454:9;47464:1;47454:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47454:12:0;47446:21;;;;;;;;;;;;;:31;47394:83;47372:146;;;47501:7;;47510;;47493:25;;;;;;;;;47372:146;47543:34;47555:7;:21;47563:9;47573:1;47563:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47563:12:0;47555:21;;;;;;;;;;;;;47543:7;;:11;:34::i;:::-;47533:44;;47602:34;47614:7;:21;47622:9;47632:1;47622:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47622:12:0;47614:21;;;;;;;;;;;;;47602:7;;:11;:34::i;:::-;47592:44;-1:-1:-1;47352:3:0;;47310:338;;;-1:-1:-1;47684:7:0;;47672;;:20;;:11;:20::i;:::-;47662:7;:30;47658:61;;;47702:7;;47711;;47694:25;;;;;;;;47658:61;47738:7;;-1:-1:-1;47747:7:0;-1:-1:-1;47158:605:0;;;:::o;6601:312::-;6721:7;6756:12;6749:5;6741:28;;;;-1:-1:-1;;;6741:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6780:9;6796:1;6792;:5;;;;;;;6601:312;-1:-1:-1;;;;;6601:312:0:o;46004:412::-;46105:7;46127;46149;46184:12;46199:24;46215:7;46199:15;:24::i;:::-;46184:39;;46234:18;46255:30;46277:7;46255:21;:30::i;:::-;46234:51;-1:-1:-1;46296:23:0;46322:33;46234:51;46322:17;:7;46334:4;46322:11;:17::i;:::-;:21;;:33::i;:::-;46296:59;46391:4;;-1:-1:-1;46397:10:0;;-1:-1:-1;46004:412:0;;-1:-1:-1;;;46004:412:0:o;46424:554::-;46623:7;;;;46720:24;:7;46732:11;46720;:24::i;:::-;46702:42;-1:-1:-1;46755:12:0;46770:21;:4;46779:11;46770:8;:21::i;:::-;46755:36;-1:-1:-1;46802:18:0;46823:27;:10;46838:11;46823:14;:27::i;:::-;46802:48;-1:-1:-1;46861:23:0;46887:33;46802:48;46887:17;:7;46899:4;46887:11;:17::i;:33::-;46939:7;;;;-1:-1:-1;46965:4:0;;-1:-1:-1;46424:554:0;;-1:-1:-1;;;;;;;46424:554:0:o;52121:151::-;52179:24;52196:6;52179:16;:24::i;:::-;52214:18;;:50;;-1:-1:-1;;;;;52214:18:0;;;;;;;;;52242:21;52214:50;;;;;;;;;52242:21;52214:18;:50;;;;;;;;;;;;;;;;;;;48454:235;48501:7;;:12;:34;;;;-1:-1:-1;48517:13:0;;:18;48501:34;48497:47;;;48537:7;;48497:47;48574:7;;;48556:15;:25;48616:13;;;48592:21;:37;-1:-1:-1;48642:11:0;;;;48664:17;48454:235;:::o;54725:686::-;54876:15;54906:23;54944:12;54971:23;55009:12;55036:18;55068:19;55079:7;55068:10;:19::i;:::-;-1:-1:-1;;;;;55116:15:0;;;;;;:7;:15;;;;;;54861:226;;-1:-1:-1;54861:226:0;;-1:-1:-1;54861:226:0;;-1:-1:-1;54861:226:0;-1:-1:-1;54861:226:0;-1:-1:-1;54861:226:0;-1:-1:-1;55116:28:0;;55136:7;55116:19;:28::i;:::-;-1:-1:-1;;;;;55098:15:0;;;;;;:7;:15;;;;;;;;:46;;;;55173:7;:15;;;;:28;;55193:7;55173:19;:28::i;:::-;-1:-1:-1;;;;;55155:15:0;;;;;;;:7;:15;;;;;;:46;;;;55233:18;;;;;;;:39;;55256:15;55233:22;:39::i;:::-;-1:-1:-1;;;;;55212:18:0;;;;;;:7;:18;;;;;:60;55283:26;55298:10;55283:14;:26::i;:::-;55320:23;55332:4;55338;55320:11;:23::i;:::-;55376:9;-1:-1:-1;;;;;55359:44:0;55368:6;-1:-1:-1;;;;;55359:44:0;;55387:15;55359:44;;;;;;;;;;;;;;;;;;54725:686;;;;;;;;;:::o;54013:698::-;54162:15;54192:23;54230:12;54257:23;54295:12;54322:18;54354:19;54365:7;54354:10;:19::i;:::-;-1:-1:-1;;;;;54402:15:0;;;;;;:7;:15;;;;;;54147:226;;-1:-1:-1;54147:226:0;;-1:-1:-1;54147:226:0;;-1:-1:-1;54147:226:0;-1:-1:-1;54147:226:0;-1:-1:-1;54147:226:0;-1:-1:-1;54402:28:0;;54147:226;54402:19;:28::i;:::-;-1:-1:-1;;;;;54384:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;54462:18;;;;;:7;:18;;;;;:39;;54485:15;54462:22;:39::i;:::-;-1:-1:-1;;;;;54441:18:0;;;;;;:7;:18;;;;;;;;:60;;;;54533:7;:18;;;;:39;;54556:15;54533:22;:39::i;53380:625::-;53527:15;53557:23;53595:12;53622:23;53660:12;53687:18;53719:19;53730:7;53719:10;:19::i;:::-;-1:-1:-1;;;;;53767:15:0;;;;;;:7;:15;;;;;;53512:226;;-1:-1:-1;53512:226:0;;-1:-1:-1;53512:226:0;;-1:-1:-1;53512:226:0;-1:-1:-1;53512:226:0;-1:-1:-1;53512:226:0;-1:-1:-1;53767:28:0;;53512:226;53767:19;:28::i;43383:757::-;43534:15;43564:23;43602:12;43629:23;43667:12;43694:18;43726:19;43737:7;43726:10;:19::i;:::-;-1:-1:-1;;;;;43774:15:0;;;;;;:7;:15;;;;;;43519:226;;-1:-1:-1;43519:226:0;;-1:-1:-1;43519:226:0;;-1:-1:-1;43519:226:0;-1:-1:-1;43519:226:0;-1:-1:-1;43519:226:0;-1:-1:-1;43774:28:0;;43794:7;43774:19;:28::i;:::-;-1:-1:-1;;;;;43756:15:0;;;;;;:7;:15;;;;;;;;:46;;;;43831:7;:15;;;;:28;;43851:7;43831:19;:28::i;48697:125::-;48751:15;;48741:7;:25;48793:21;;48777:13;:37;48697:125::o;48134:130::-;48198:7;48225:31;48250:5;48225:20;48237:7;;48225;:11;;:20;;;;:::i;48272:174::-;48369:7;48401:37;48432:5;48401:26;48413:13;;48401:7;:11;;:26;;;;:::i;51517:589::-;51667:16;;;51681:1;51667:16;;;51643:21;51667:16;;;;;51643:21;51667:16;;;;;;;;;;-1:-1:-1;51667:16:0;51643:40;;51712:4;51694;51699:1;51694:7;;;;;;;;;;;;;:23;-1:-1:-1;;;;;51694:23:0;;;-1:-1:-1;;;;;51694:23:0;;;;;51738:15;-1:-1:-1;;;;;51738:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51738:22:0;51728:7;;:4;;51733:1;;51728:7;;;;;;;;;;;:32;-1:-1:-1;;;;;51728:32:0;;;-1:-1:-1;;;;;51728:32:0;;;;;51773:62;51790:4;51805:15;51823:11;51773:8;:62::i;:::-;51874:15;-1:-1:-1;;;;;51874:66:0;;51955:11;51981:1;52025:4;52052;52072:15;51874:224;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51874:224:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47771:355;47834:19;47856:10;:8;:10::i;:::-;47834:32;-1:-1:-1;47877:18:0;47898:27;:10;47834:32;47898:14;:27::i;:::-;47977:4;47961:22;;;;:7;:22;;;;;;47877:48;;-1:-1:-1;47961:38:0;;47877:48;47961:26;:38::i;:::-;47952:4;47936:22;;;;:7;:22;;;;;;;;:63;;;;48014:11;:26;;;;;;48010:108;;;48096:4;48080:22;;;;:7;:22;;;;;;:38;;48107:10;48080:26;:38::i;:::-;48071:4;48055:22;;;;:7;:22;;;;;:63;48010:108;47771:355;;;:::o;45186:147::-;45264:7;;:17;;45276:4;45264:11;:17::i;:::-;45254:7;:27;45305:10;;:20;;45320:4;45305:14;:20::i;:::-;45292:10;:33;-1:-1:-1;;45186:147:0:o

Swarm Source

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