ETH Price: $3,059.30 (+3.05%)
Gas: 12 Gwei

Token

MUD Guild Game (MGG)
 

Overview

Max Total Supply

321,041.300280820434728844 MGG

Holders

188

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
01.kongz.eth
Balance
120 MGG

Value
$0.00
0x143271bb1489575c0146a7e8dbd1a6c116e8f619
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MGGToken

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-09-11
*/

// Sources flattened with hardhat v2.6.3 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/math/[email protected]

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting 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) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * 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);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

pragma solidity >=0.6.0 <0.8.0;



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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity >=0.6.2 <0.8.0;

/**
 * @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) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @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");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


// File @openzeppelin/contracts/utils/[email protected]

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}


// File @openzeppelin/contracts/access/[email protected]

pragma solidity >=0.6.0 <0.8.0;



/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}


// File contracts/interface/IUniswapV2Router.sol

pragma solidity 0.6.12;

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

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

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

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

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


// File contracts/interface/IUniswapFactory.sol

pragma solidity 0.6.12;

interface IUniswapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}


// File contracts/token/MGGToken.sol

pragma solidity 0.6.12;
pragma experimental ABIEncoderV2;





contract MGGToken is AccessControl, ERC20("MUD Guild Game", "MGG") {
    using Address for address;

    /// @dev The identifier of the role which maintains other roles.
    bytes32 public constant ADMIN_ROLE = keccak256("ADMIN");

    /// @dev The identifier of the role which allows accounts to mint tokens.
    bytes32 public constant MINTER_ROLE = keccak256("MINTER");

    address public uniswapV2RouterAddress;
    address public uniswapV2PairAddress;
    address public stakingFeeCollector;
    address public liquidityFeeCollector;

    bool whiteListInitialized;
    bool public transferFeeOn;
    mapping(address => bool) public isExcludedFromFee;

    event WhiteListInitialized();
    event StakingFeeCollectorUpdated(address stakingFeeCollector);
    event LiquidityFeeCollectorUpdated(address liquidityFeeCollector);
    event WhiteListUpdated(address targetAddress, bool isWhiteList);
    event TransferFeeOnUpdated(bool transferFeeOn);

    constructor (address _stakingFeeCollector, address _liquidityFeeCollector) public {
        require(_stakingFeeCollector != address(0), "MGGToken: stakingFeeCollector address cannot be 0x0");
        require(_liquidityFeeCollector != address(0), "MGGToken: liquidityFeeCollector address cannot be 0x0");

        _setupRole(ADMIN_ROLE, msg.sender);
        _setupRole(MINTER_ROLE, msg.sender);
        _setRoleAdmin(MINTER_ROLE, ADMIN_ROLE);
        _setRoleAdmin(ADMIN_ROLE, ADMIN_ROLE);

        stakingFeeCollector = _stakingFeeCollector;
        liquidityFeeCollector = _liquidityFeeCollector;
        transferFeeOn = true;
    }

    function setStakingFeeCollector(address _stakingFeeCollector) external onlyAdmin {
        require(_stakingFeeCollector != address(0), "MGGToken: stakingFeeCollector address cannot be 0x0");
        stakingFeeCollector = _stakingFeeCollector;
        emit StakingFeeCollectorUpdated(stakingFeeCollector);
    }

    function setLiquidityFeeCollector(address _liquidityFeeCollector) external onlyAdmin {
        require(_liquidityFeeCollector != address(0), "MGGToken: liquidityFeeCollector address cannot be 0x0");
        liquidityFeeCollector = _liquidityFeeCollector;
        emit LiquidityFeeCollectorUpdated(liquidityFeeCollector);
    }

    function setTransferFeeOn(bool _transferFeeOn) external onlyAdmin {
        transferFeeOn = _transferFeeOn;
        emit TransferFeeOnUpdated(transferFeeOn);
    }

    function initWhiteList(address _uniswapV2RouterAddress, address _usdtTokenAddress) external onlyAdmin {
        require(!whiteListInitialized, "MGGToken: whiteList already initialized");
        require(_uniswapV2RouterAddress != address(0), "MGGToken: uniswapV2RouterAddress address cannot be 0x0");
        require(_usdtTokenAddress != address(0), "MGGToken: usdtTokenAddress address cannot be 0x0");

        uniswapV2RouterAddress = _uniswapV2RouterAddress;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(_uniswapV2RouterAddress);
        uniswapV2PairAddress = IUniswapFactory(_uniswapV2Router.factory()).createPair(address(this), _usdtTokenAddress);

        isExcludedFromFee[address(this)] = true;
        isExcludedFromFee[uniswapV2RouterAddress] = true;

        whiteListInitialized = true;
        emit WhiteListInitialized();
    }

    modifier onlyMinter() {
        require(hasRole(MINTER_ROLE, msg.sender), "MGGToken: only minter");
        _;
    }

    modifier onlyAdmin() {
        require(hasRole(ADMIN_ROLE, msg.sender), "MGGToken: only admin");
        _;
    }

    function alterWhitelist(address _targetAddress, bool _isWhiteList) external onlyAdmin {
      require(_targetAddress != address(0), "MGGToken: whiteList address cannot be 0x0");
      isExcludedFromFee[_targetAddress] = _isWhiteList;
      emit WhiteListUpdated(_targetAddress, _isWhiteList);
    }

    function mint(address _to, uint256 _amount) external onlyMinter {
        _mint(_to, _amount);
    }

    function burn(address _from, uint256 _amount) external onlyMinter {
        _burn(_from, _amount);
    }

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

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

    function _tokenTransfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "MGGToken: transfer from the zero address");
        require(recipient != address(0), "MGGToken: transfer to the zero address");

        bool excludedFromFee = (sender == uniswapV2PairAddress || isExcludedFromFee[sender] || isExcludedFromFee[recipient]);

        if (!excludedFromFee) {
            (uint256 stakingFee, uint256 liquidityFee) = _calculateFees(amount);

            if (liquidityFee > 0) {
                _transfer(sender, liquidityFeeCollector, liquidityFee);
            }

            if (stakingFee > 0) {
                _transfer(sender, stakingFeeCollector, stakingFee);
            }

            amount = amount.sub(stakingFee).sub(liquidityFee);
        }

        _transfer(sender, recipient, amount);
    }

     function _calculateFees(uint256 amount) internal view returns (uint256, uint256){
        if(transferFeeOn){
          uint256 stakingFee = amount.mul(125).div(1000);
          uint256 liquidityFee = amount.mul(125).div(1000);
          return (stakingFee, liquidityFee);
        } else {
          return (0, 0);
        }

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_stakingFeeCollector","type":"address"},{"internalType":"address","name":"_liquidityFeeCollector","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":"address","name":"liquidityFeeCollector","type":"address"}],"name":"LiquidityFeeCollectorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"stakingFeeCollector","type":"address"}],"name":"StakingFeeCollectorUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"transferFeeOn","type":"bool"}],"name":"TransferFeeOnUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"WhiteListInitialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"targetAddress","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhiteList","type":"bool"}],"name":"WhiteListUpdated","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_targetAddress","type":"address"},{"internalType":"bool","name":"_isWhiteList","type":"bool"}],"name":"alterWhitelist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2RouterAddress","type":"address"},{"internalType":"address","name":"_usdtTokenAddress","type":"address"}],"name":"initWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityFeeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityFeeCollector","type":"address"}],"name":"setLiquidityFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingFeeCollector","type":"address"}],"name":"setStakingFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_transferFeeOn","type":"bool"}],"name":"setTransferFeeOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingFeeCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFeeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"uniswapV2PairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2RouterAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002593380380620025938339810160408190526200003491620003c5565b604080518082018252600e81526d4d5544204775696c642047616d6560901b6020808301918252835180850190945260038452624d474760e81b908401528151919291620000859160049162000329565b5080516200009b90600590602084019062000329565b50506006805460ff19166012179055506001600160a01b038216620000dd5760405162461bcd60e51b8152600401620000d49062000403565b60405180910390fd5b6001600160a01b038116620001065760405162461bcd60e51b8152600401620000d49062000460565b620001216000805160206200257383398151915233620001c3565b6200013c6000805160206200255383398151915233620001c3565b620001666000805160206200255383398151915260008051602062002573833981519152620001d3565b620001816000805160206200257383398151915280620001d3565b600880546001600160a01b03199081166001600160a01b039485161790915560098054600160a81b9216929093169190911760ff60a81b1916179055620004d6565b620001cf828262000225565b5050565b600082815260208190526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526020829052604090912060020155565b6000828152602081815260409091206200024a91839062000e536200029e821b17901c565b15620001cf576200025a620002be565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620002b5836001600160a01b038416620002c2565b90505b92915050565b3390565b6000620002d0838362000311565b6200030857508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620002b8565b506000620002b8565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200036c57805160ff19168380011785556200039c565b828001600101855582156200039c579182015b828111156200039c5782518255916020019190600101906200037f565b50620003aa929150620003ae565b5090565b5b80821115620003aa5760008155600101620003af565b60008060408385031215620003d8578182fd5b8251620003e581620004bd565b6020840151909250620003f881620004bd565b809150509250929050565b60208082526033908201527f4d4747546f6b656e3a207374616b696e67466565436f6c6c6563746f7220616460408201527f64726573732063616e6e6f742062652030783000000000000000000000000000606082015260800190565b60208082526035908201527f4d4747546f6b656e3a206c6971756964697479466565436f6c6c6563746f722060408201527f616464726573732063616e6e6f74206265203078300000000000000000000000606082015260800190565b6001600160a01b0381168114620004d357600080fd5b50565b61206d80620004e66000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806375b238fc1161011a578063a9059cbb116100ad578063d1ff4f2d1161007c578063d1ff4f2d14610405578063d539139314610418578063d547741f14610420578063dd62ed3e14610433578063ee11fa091461044657610206565b8063a9059cbb146103b9578063b680e221146103cc578063baf4bae9146103df578063ca15c873146103f257610206565b806395d89b41116100e957806395d89b41146103835780639dc29fac1461038b578063a217fddf1461039e578063a457c2d7146103a657610206565b806375b238fc1461034d57806384b17159146103555780639010d07c1461035d57806391d148541461037057610206565b806336568abe1161019d5780635342acb41161016c5780635342acb4146103045780635751e0af14610317578063656422351461031f57806370a0823114610332578063719a88b01461034557610206565b806336568abe146102c357806339509351146102d657806340c10f19146102e95780634a377e1d146102fc57610206565b8063248a9ca3116101d9578063248a9ca3146102715780632b653d44146102845780632f2ff15d14610299578063313ce567146102ae57610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024957806323b872dd1461025e575b600080fd5b610213610459565b60405161022091906118a1565b60405180910390f35b61023c61023736600461179c565b6104ef565b604051610220919061188d565b61025161050d565b6040516102209190611898565b61023c61026c36600461172b565b610513565b61025161027f3660046117e7565b61056b565b61028c610580565b6040516102209190611844565b6102ac6102a73660046117ff565b61058f565b005b6102b66105e0565b6040516102209190611f59565b6102ac6102d13660046117ff565b6105e9565b61023c6102e436600461179c565b61062b565b6102ac6102f736600461179c565b610679565b61028c6106c9565b61023c6103123660046116bb565b6106dd565b61023c6106f2565b6102ac61032d3660046116bb565b610702565b6102516103403660046116bb565b6107b8565b61028c6107d3565b6102516107e2565b61028c6107f4565b61028c61036b366004611823565b610803565b61023c61037e3660046117ff565b610822565b61021361083a565b6102ac61039936600461179c565b61089b565b6102516108eb565b61023c6103b436600461179c565b6108f0565b61023c6103c736600461179c565b610958565b6102ac6103da3660046116f3565b61096c565b6102ac6103ed3660046116bb565b610bc7565b6102516104003660046117e7565b610c72565b6102ac6104133660046117c7565b610c89565b610251610d0e565b6102ac61042e3660046117ff565b610d32565b6102516104413660046116f3565b610d6c565b6102ac61045436600461176b565b610d97565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b60006105036104fc610e68565b8484610e6c565b5060015b92915050565b60035490565b6000610520848484610f20565b6105618461052c610e68565b61055c856040518060600160405280602b8152602001611f80602b91396105558a610441610e68565b9190611044565b610e6c565b5060019392505050565b60009081526020819052604090206002015490565b6007546001600160a01b031681565b6000828152602081905260409020600201546105ad9061037e610e68565b6105d25760405162461bcd60e51b81526004016105c990611979565b60405180910390fd5b6105dc8282611070565b5050565b60065460ff1690565b6105f1610e68565b6001600160a01b0316816001600160a01b0316146106215760405162461bcd60e51b81526004016105c990611ed3565b6105dc82826110d9565b6000610503610638610e68565b8461055c8560026000610649610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611142565b6106a37ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc933610822565b6106bf5760405162461bcd60e51b81526004016105c990611b05565b6105dc8282611167565b60065461010090046001600160a01b031681565b600a6020526000908152604090205460ff1681565b600954600160a81b900460ff1681565b61071a600080516020611ff383398151915233610822565b6107365760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b03811661075c5760405162461bcd60e51b81526004016105c990611b34565b600880546001600160a01b0319166001600160a01b0383811691909117918290556040517fe75b472a44d4c762b0996e829e93fe5ccef140ff0b14b4efa864dbc41bdb2667926107ad921690611844565b60405180910390a150565b6001600160a01b031660009081526001602052604090205490565b6009546001600160a01b031681565b600080516020611ff383398151915281565b6008546001600160a01b031681565b600082815260208190526040812061081b9083611227565b9392505050565b600082815260208190526040812061081b9083611233565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e55780601f106104ba576101008083540402835291602001916104e5565b6108c57ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc933610822565b6108e15760405162461bcd60e51b81526004016105c990611b05565b6105dc8282611248565b600081565b60006105036108fd610e68565b8461055c856040518060600160405280602581526020016120136025913960026000610927610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611044565b6000610503610965610e68565b8484610f20565b610984600080516020611ff383398151915233610822565b6109a05760405162461bcd60e51b81526004016105c990611c63565b600954600160a01b900460ff16156109ca5760405162461bcd60e51b81526004016105c990611a41565b6001600160a01b0382166109f05760405162461bcd60e51b81526004016105c990611de9565b6001600160a01b038116610a165760405162461bcd60e51b81526004016105c990611e83565b81600660016101000a8154816001600160a01b0302191690836001600160a01b031602179055506000829050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a7b57600080fd5b505afa158015610a8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab391906116d7565b6001600160a01b031663c9c6539630846040518363ffffffff1660e01b8152600401610ae0929190611858565b602060405180830381600087803b158015610afa57600080fd5b505af1158015610b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3291906116d7565b600780546001600160a01b039283166001600160a01b0319909116179055306000908152600a6020526040808220805460ff199081166001908117909255600654610100900490941683528183208054909416179092556009805460ff60a01b1916600160a01b17905590517f9ed6d305f09ca3bfc9adfa9b802d4c0ed9ef779ef4dc5fe6a4ca43b6a1d4444e9190a1505050565b610bdf600080516020611ff383398151915233610822565b610bfb5760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b038116610c215760405162461bcd60e51b81526004016105c990611c0e565b600980546001600160a01b0319166001600160a01b0383811691909117918290556040517f5f8e6ac0d72b67c1e039d25520b029d5318184f9af53213b48e7cd440df3f743926107ad921690611844565b60008181526020819052604081206105079061131e565b610ca1600080516020611ff383398151915233610822565b610cbd5760405162461bcd60e51b81526004016105c990611c63565b6009805460ff60a81b1916600160a81b831515810291909117918290556040517ff66d59c200e03a0754cf8b75ba937fc72e74557051c0e60689217673fc2af75b926107ad9260ff9104169061188d565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b600082815260208190526040902060020154610d509061037e610e68565b6106215760405162461bcd60e51b81526004016105c990611bbe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610daf600080516020611ff383398151915233610822565b610dcb5760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b038216610df15760405162461bcd60e51b81526004016105c990611cd2565b6001600160a01b0382166000908152600a602052604090819020805460ff1916831515179055517fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e90610e479084908490611872565b60405180910390a15050565b600061081b836001600160a01b038416611329565b3390565b6001600160a01b038316610e925760405162461bcd60e51b81526004016105c990611e3f565b6001600160a01b038216610eb85760405162461bcd60e51b81526004016105c9906119c8565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f13908590611898565b60405180910390a3505050565b6001600160a01b038316610f465760405162461bcd60e51b81526004016105c990611d1b565b6001600160a01b038216610f6c5760405162461bcd60e51b81526004016105c990611a88565b6007546000906001600160a01b0385811691161480610fa357506001600160a01b0384166000908152600a602052604090205460ff165b80610fc657506001600160a01b0383166000908152600a602052604090205460ff165b90508061103357600080610fd984611373565b90925090508015610ffc57600954610ffc9087906001600160a01b0316836113d1565b811561101a5760085461101a9087906001600160a01b0316846113d1565b61102e8161102886856114e6565b906114e6565b935050505b61103e8484846113d1565b50505050565b600081848411156110685760405162461bcd60e51b81526004016105c991906118a1565b505050900390565b60008281526020819052604090206110889082610e53565b156105dc57611095610e68565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206110f1908261150e565b156105dc576110fe610e68565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008282018381101561081b5760405162461bcd60e51b81526004016105c990611a0a565b6001600160a01b03821661118d5760405162461bcd60e51b81526004016105c990611f22565b61119960008383611523565b6003546111a69082611142565b6003556001600160a01b0382166000908152600160205260409020546111cc9082611142565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061121b908590611898565b60405180910390a35050565b600061081b8383611528565b600061081b836001600160a01b03841661156d565b6001600160a01b03821661126e5760405162461bcd60e51b81526004016105c990611d63565b61127a82600083611523565b6112b781604051806060016040528060228152602001611fab602291396001600160a01b0385166000908152600160205260409020549190611044565b6001600160a01b0383166000908152600160205260409020556003546112dd90826114e6565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061121b908590611898565b600061050782611585565b6000611335838361156d565b61136b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610507565b506000610507565b6009546000908190600160a81b900460ff16156113c55760006113a36103e861139d86607d611589565b906115c3565b905060006113b86103e861139d87607d611589565b9193509091506113cc9050565b5060009050805b915091565b6001600160a01b0383166113f75760405162461bcd60e51b81526004016105c990611da4565b6001600160a01b03821661141d5760405162461bcd60e51b81526004016105c990611936565b611428838383611523565b61146581604051806060016040528060268152602001611fcd602691396001600160a01b0386166000908152600160205260409020549190611044565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114949082611142565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f13908590611898565b6000828211156115085760405162461bcd60e51b81526004016105c990611ace565b50900390565b600061081b836001600160a01b0384166115f5565b505050565b8154600090821061154b5760405162461bcd60e51b81526004016105c9906118f4565b82600001828154811061155a57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008261159857506000610507565b828202828482816115a557fe5b041461081b5760405162461bcd60e51b81526004016105c990611c91565b60008082116115e45760405162461bcd60e51b81526004016105c990611b87565b8183816115ed57fe5b049392505050565b600081815260018301602052604081205480156116b1578354600019808301919081019060009087908390811061162857fe5b906000526020600020015490508087600001848154811061164557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061167557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610507565b6000915050610507565b6000602082840312156116cc578081fd5b813561081b81611f67565b6000602082840312156116e8578081fd5b815161081b81611f67565b60008060408385031215611705578081fd5b823561171081611f67565b9150602083013561172081611f67565b809150509250929050565b60008060006060848603121561173f578081fd5b833561174a81611f67565b9250602084013561175a81611f67565b929592945050506040919091013590565b6000806040838503121561177d578182fd5b823561178881611f67565b915060208301358015158114611720578182fd5b600080604083850312156117ae578182fd5b82356117b981611f67565b946020939093013593505050565b6000602082840312156117d8578081fd5b8135801515811461081b578182fd5b6000602082840312156117f8578081fd5b5035919050565b60008060408385031215611811578182fd5b82359150602083013561172081611f67565b60008060408385031215611835578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039290921682521515602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156118cd578581018301518582016040015282016118b1565b818111156118de5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526027908201527f4d4747546f6b656e3a2077686974654c69737420616c726561647920696e69746040820152661a585b1a5e995960ca1b606082015260800190565b60208082526026908201527f4d4747546f6b656e3a207472616e7366657220746f20746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526015908201527426a3a3aa37b5b2b71d1037b7363c9036b4b73a32b960591b604082015260600190565b60208082526033908201527f4d4747546f6b656e3a207374616b696e67466565436f6c6c6563746f72206164604082015272064726573732063616e6e6f742062652030783606c1b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526035908201527f4d4747546f6b656e3a206c6971756964697479466565436f6c6c6563746f72206040820152740616464726573732063616e6e6f742062652030783605c1b606082015260800190565b60208082526014908201527326a3a3aa37b5b2b71d1037b7363c9030b236b4b760611b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526029908201527f4d4747546f6b656e3a2077686974654c69737420616464726573732063616e6e60408201526806f74206265203078360bc1b606082015260800190565b60208082526028908201527f4d4747546f6b656e3a207472616e736665722066726f6d20746865207a65726f604082015267206164647265737360c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526036908201527f4d4747546f6b656e3a20756e69737761705632526f7574657241646472657373604082015275020616464726573732063616e6e6f74206265203078360541b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526030908201527f4d4747546f6b656e3a2075736474546f6b656e4164647265737320616464726560408201526f073732063616e6e6f74206265203078360841b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114611f7c57600080fd5b5056fe4d4747546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365df8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220639f0fa68fed2a98607084e5a7e32451450fa29d9d617358e3d44da3a1c676a864736f6c634300060c0033f0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc9df8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec42000000000000000000000000c21dd0f972a746742e855be60cd83db98637c203000000000000000000000000e7af35eff8afd8f3c3d2fa4d701f86c4a3faca88

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806375b238fc1161011a578063a9059cbb116100ad578063d1ff4f2d1161007c578063d1ff4f2d14610405578063d539139314610418578063d547741f14610420578063dd62ed3e14610433578063ee11fa091461044657610206565b8063a9059cbb146103b9578063b680e221146103cc578063baf4bae9146103df578063ca15c873146103f257610206565b806395d89b41116100e957806395d89b41146103835780639dc29fac1461038b578063a217fddf1461039e578063a457c2d7146103a657610206565b806375b238fc1461034d57806384b17159146103555780639010d07c1461035d57806391d148541461037057610206565b806336568abe1161019d5780635342acb41161016c5780635342acb4146103045780635751e0af14610317578063656422351461031f57806370a0823114610332578063719a88b01461034557610206565b806336568abe146102c357806339509351146102d657806340c10f19146102e95780634a377e1d146102fc57610206565b8063248a9ca3116101d9578063248a9ca3146102715780632b653d44146102845780632f2ff15d14610299578063313ce567146102ae57610206565b806306fdde031461020b578063095ea7b31461022957806318160ddd1461024957806323b872dd1461025e575b600080fd5b610213610459565b60405161022091906118a1565b60405180910390f35b61023c61023736600461179c565b6104ef565b604051610220919061188d565b61025161050d565b6040516102209190611898565b61023c61026c36600461172b565b610513565b61025161027f3660046117e7565b61056b565b61028c610580565b6040516102209190611844565b6102ac6102a73660046117ff565b61058f565b005b6102b66105e0565b6040516102209190611f59565b6102ac6102d13660046117ff565b6105e9565b61023c6102e436600461179c565b61062b565b6102ac6102f736600461179c565b610679565b61028c6106c9565b61023c6103123660046116bb565b6106dd565b61023c6106f2565b6102ac61032d3660046116bb565b610702565b6102516103403660046116bb565b6107b8565b61028c6107d3565b6102516107e2565b61028c6107f4565b61028c61036b366004611823565b610803565b61023c61037e3660046117ff565b610822565b61021361083a565b6102ac61039936600461179c565b61089b565b6102516108eb565b61023c6103b436600461179c565b6108f0565b61023c6103c736600461179c565b610958565b6102ac6103da3660046116f3565b61096c565b6102ac6103ed3660046116bb565b610bc7565b6102516104003660046117e7565b610c72565b6102ac6104133660046117c7565b610c89565b610251610d0e565b6102ac61042e3660046117ff565b610d32565b6102516104413660046116f3565b610d6c565b6102ac61045436600461176b565b610d97565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e55780601f106104ba576101008083540402835291602001916104e5565b820191906000526020600020905b8154815290600101906020018083116104c857829003601f168201915b5050505050905090565b60006105036104fc610e68565b8484610e6c565b5060015b92915050565b60035490565b6000610520848484610f20565b6105618461052c610e68565b61055c856040518060600160405280602b8152602001611f80602b91396105558a610441610e68565b9190611044565b610e6c565b5060019392505050565b60009081526020819052604090206002015490565b6007546001600160a01b031681565b6000828152602081905260409020600201546105ad9061037e610e68565b6105d25760405162461bcd60e51b81526004016105c990611979565b60405180910390fd5b6105dc8282611070565b5050565b60065460ff1690565b6105f1610e68565b6001600160a01b0316816001600160a01b0316146106215760405162461bcd60e51b81526004016105c990611ed3565b6105dc82826110d9565b6000610503610638610e68565b8461055c8560026000610649610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611142565b6106a37ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc933610822565b6106bf5760405162461bcd60e51b81526004016105c990611b05565b6105dc8282611167565b60065461010090046001600160a01b031681565b600a6020526000908152604090205460ff1681565b600954600160a81b900460ff1681565b61071a600080516020611ff383398151915233610822565b6107365760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b03811661075c5760405162461bcd60e51b81526004016105c990611b34565b600880546001600160a01b0319166001600160a01b0383811691909117918290556040517fe75b472a44d4c762b0996e829e93fe5ccef140ff0b14b4efa864dbc41bdb2667926107ad921690611844565b60405180910390a150565b6001600160a01b031660009081526001602052604090205490565b6009546001600160a01b031681565b600080516020611ff383398151915281565b6008546001600160a01b031681565b600082815260208190526040812061081b9083611227565b9392505050565b600082815260208190526040812061081b9083611233565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104e55780601f106104ba576101008083540402835291602001916104e5565b6108c57ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc933610822565b6108e15760405162461bcd60e51b81526004016105c990611b05565b6105dc8282611248565b600081565b60006105036108fd610e68565b8461055c856040518060600160405280602581526020016120136025913960026000610927610e68565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611044565b6000610503610965610e68565b8484610f20565b610984600080516020611ff383398151915233610822565b6109a05760405162461bcd60e51b81526004016105c990611c63565b600954600160a01b900460ff16156109ca5760405162461bcd60e51b81526004016105c990611a41565b6001600160a01b0382166109f05760405162461bcd60e51b81526004016105c990611de9565b6001600160a01b038116610a165760405162461bcd60e51b81526004016105c990611e83565b81600660016101000a8154816001600160a01b0302191690836001600160a01b031602179055506000829050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610a7b57600080fd5b505afa158015610a8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab391906116d7565b6001600160a01b031663c9c6539630846040518363ffffffff1660e01b8152600401610ae0929190611858565b602060405180830381600087803b158015610afa57600080fd5b505af1158015610b0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3291906116d7565b600780546001600160a01b039283166001600160a01b0319909116179055306000908152600a6020526040808220805460ff199081166001908117909255600654610100900490941683528183208054909416179092556009805460ff60a01b1916600160a01b17905590517f9ed6d305f09ca3bfc9adfa9b802d4c0ed9ef779ef4dc5fe6a4ca43b6a1d4444e9190a1505050565b610bdf600080516020611ff383398151915233610822565b610bfb5760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b038116610c215760405162461bcd60e51b81526004016105c990611c0e565b600980546001600160a01b0319166001600160a01b0383811691909117918290556040517f5f8e6ac0d72b67c1e039d25520b029d5318184f9af53213b48e7cd440df3f743926107ad921690611844565b60008181526020819052604081206105079061131e565b610ca1600080516020611ff383398151915233610822565b610cbd5760405162461bcd60e51b81526004016105c990611c63565b6009805460ff60a81b1916600160a81b831515810291909117918290556040517ff66d59c200e03a0754cf8b75ba937fc72e74557051c0e60689217673fc2af75b926107ad9260ff9104169061188d565b7ff0887ba65ee2024ea881d91b74c2450ef19e1557f03bed3ea9f16b037cbe2dc981565b600082815260208190526040902060020154610d509061037e610e68565b6106215760405162461bcd60e51b81526004016105c990611bbe565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610daf600080516020611ff383398151915233610822565b610dcb5760405162461bcd60e51b81526004016105c990611c63565b6001600160a01b038216610df15760405162461bcd60e51b81526004016105c990611cd2565b6001600160a01b0382166000908152600a602052604090819020805460ff1916831515179055517fb1288e9f7bae3599e10819d5553febea48e11a6f8f585b32c8abad397dd2627e90610e479084908490611872565b60405180910390a15050565b600061081b836001600160a01b038416611329565b3390565b6001600160a01b038316610e925760405162461bcd60e51b81526004016105c990611e3f565b6001600160a01b038216610eb85760405162461bcd60e51b81526004016105c9906119c8565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610f13908590611898565b60405180910390a3505050565b6001600160a01b038316610f465760405162461bcd60e51b81526004016105c990611d1b565b6001600160a01b038216610f6c5760405162461bcd60e51b81526004016105c990611a88565b6007546000906001600160a01b0385811691161480610fa357506001600160a01b0384166000908152600a602052604090205460ff165b80610fc657506001600160a01b0383166000908152600a602052604090205460ff165b90508061103357600080610fd984611373565b90925090508015610ffc57600954610ffc9087906001600160a01b0316836113d1565b811561101a5760085461101a9087906001600160a01b0316846113d1565b61102e8161102886856114e6565b906114e6565b935050505b61103e8484846113d1565b50505050565b600081848411156110685760405162461bcd60e51b81526004016105c991906118a1565b505050900390565b60008281526020819052604090206110889082610e53565b156105dc57611095610e68565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526020819052604090206110f1908261150e565b156105dc576110fe610e68565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b60008282018381101561081b5760405162461bcd60e51b81526004016105c990611a0a565b6001600160a01b03821661118d5760405162461bcd60e51b81526004016105c990611f22565b61119960008383611523565b6003546111a69082611142565b6003556001600160a01b0382166000908152600160205260409020546111cc9082611142565b6001600160a01b0383166000818152600160205260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061121b908590611898565b60405180910390a35050565b600061081b8383611528565b600061081b836001600160a01b03841661156d565b6001600160a01b03821661126e5760405162461bcd60e51b81526004016105c990611d63565b61127a82600083611523565b6112b781604051806060016040528060228152602001611fab602291396001600160a01b0385166000908152600160205260409020549190611044565b6001600160a01b0383166000908152600160205260409020556003546112dd90826114e6565b6003556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061121b908590611898565b600061050782611585565b6000611335838361156d565b61136b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610507565b506000610507565b6009546000908190600160a81b900460ff16156113c55760006113a36103e861139d86607d611589565b906115c3565b905060006113b86103e861139d87607d611589565b9193509091506113cc9050565b5060009050805b915091565b6001600160a01b0383166113f75760405162461bcd60e51b81526004016105c990611da4565b6001600160a01b03821661141d5760405162461bcd60e51b81526004016105c990611936565b611428838383611523565b61146581604051806060016040528060268152602001611fcd602691396001600160a01b0386166000908152600160205260409020549190611044565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114949082611142565b6001600160a01b0380841660008181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f13908590611898565b6000828211156115085760405162461bcd60e51b81526004016105c990611ace565b50900390565b600061081b836001600160a01b0384166115f5565b505050565b8154600090821061154b5760405162461bcd60e51b81526004016105c9906118f4565b82600001828154811061155a57fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60008261159857506000610507565b828202828482816115a557fe5b041461081b5760405162461bcd60e51b81526004016105c990611c91565b60008082116115e45760405162461bcd60e51b81526004016105c990611b87565b8183816115ed57fe5b049392505050565b600081815260018301602052604081205480156116b1578354600019808301919081019060009087908390811061162857fe5b906000526020600020015490508087600001848154811061164557fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061167557fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610507565b6000915050610507565b6000602082840312156116cc578081fd5b813561081b81611f67565b6000602082840312156116e8578081fd5b815161081b81611f67565b60008060408385031215611705578081fd5b823561171081611f67565b9150602083013561172081611f67565b809150509250929050565b60008060006060848603121561173f578081fd5b833561174a81611f67565b9250602084013561175a81611f67565b929592945050506040919091013590565b6000806040838503121561177d578182fd5b823561178881611f67565b915060208301358015158114611720578182fd5b600080604083850312156117ae578182fd5b82356117b981611f67565b946020939093013593505050565b6000602082840312156117d8578081fd5b8135801515811461081b578182fd5b6000602082840312156117f8578081fd5b5035919050565b60008060408385031215611811578182fd5b82359150602083013561172081611f67565b60008060408385031215611835578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b039290921682521515602082015260400190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b818110156118cd578581018301518582016040015282016118b1565b818111156118de5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526e0818591b5a5b881d1bc819dc985b9d608a1b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526027908201527f4d4747546f6b656e3a2077686974654c69737420616c726561647920696e69746040820152661a585b1a5e995960ca1b606082015260800190565b60208082526026908201527f4d4747546f6b656e3a207472616e7366657220746f20746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b60208082526015908201527426a3a3aa37b5b2b71d1037b7363c9036b4b73a32b960591b604082015260600190565b60208082526033908201527f4d4747546f6b656e3a207374616b696e67466565436f6c6c6563746f72206164604082015272064726573732063616e6e6f742062652030783606c1b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526030908201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60408201526f2061646d696e20746f207265766f6b6560801b606082015260800190565b60208082526035908201527f4d4747546f6b656e3a206c6971756964697479466565436f6c6c6563746f72206040820152740616464726573732063616e6e6f742062652030783605c1b606082015260800190565b60208082526014908201527326a3a3aa37b5b2b71d1037b7363c9030b236b4b760611b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526029908201527f4d4747546f6b656e3a2077686974654c69737420616464726573732063616e6e60408201526806f74206265203078360bc1b606082015260800190565b60208082526028908201527f4d4747546f6b656e3a207472616e736665722066726f6d20746865207a65726f604082015267206164647265737360c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526036908201527f4d4747546f6b656e3a20756e69737761705632526f7574657241646472657373604082015275020616464726573732063616e6e6f74206265203078360541b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526030908201527f4d4747546f6b656e3a2075736474546f6b656e4164647265737320616464726560408201526f073732063616e6e6f74206265203078360841b606082015260800190565b6020808252602f908201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560408201526e103937b632b9903337b91039b2b63360891b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b60ff91909116815260200190565b6001600160a01b0381168114611f7c57600080fd5b5056fe4d4747546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365df8b4c520ffe197c5343c6f5aec59570151ef9a492f2c624fd45ddde6135ec4245524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220639f0fa68fed2a98607084e5a7e32451450fa29d9d617358e3d44da3a1c676a864736f6c634300060c0033

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

000000000000000000000000c21dd0f972a746742e855be60cd83db98637c203000000000000000000000000e7af35eff8afd8f3c3d2fa4d701f86c4a3faca88

-----Decoded View---------------
Arg [0] : _stakingFeeCollector (address): 0xc21dD0f972A746742e855BE60Cd83db98637C203
Arg [1] : _liquidityFeeCollector (address): 0xe7aF35eFF8AfD8f3C3D2fa4D701F86C4A3fAcA88

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000c21dd0f972a746742e855be60cd83db98637c203
Arg [1] : 000000000000000000000000e7af35eff8afd8f3c3d2fa4d701f86c4a3faca88


Deployed Bytecode Sourcemap

53043:5876:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13544:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15690:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;14643:108::-;;;:::i;:::-;;;;;;;:::i;57360:319::-;;;;;;:::i;:::-;;:::i;44510:114::-;;;;;;:::i;:::-;;:::i;53474:35::-;;;:::i;:::-;;;;;;;:::i;44886:227::-;;;;;;:::i;:::-;;:::i;:::-;;14487:91;;;:::i;:::-;;;;;;;:::i;46095:209::-;;;;;;:::i;:::-;;:::i;17071:218::-;;;;;;:::i;:::-;;:::i;56956:102::-;;;;;;:::i;:::-;;:::i;53430:37::-;;;:::i;53666:49::-;;;;;;:::i;:::-;;:::i;53634:25::-;;;:::i;54677:314::-;;;;;;:::i;:::-;;:::i;14814:127::-;;;;;;:::i;:::-;;:::i;53557:36::-;;;:::i;53221:55::-;;;:::i;53516:34::-;;;:::i;44183:138::-;;;;;;:::i;:::-;;:::i;43144:139::-;;;;;;:::i;:::-;;:::i;13754:95::-;;;:::i;57066:106::-;;;;;;:::i;:::-;;:::i;41889:49::-;;;:::i;17792:269::-;;;;;;:::i;:::-;;:::i;57180:172::-;;;;;;:::i;:::-;;:::i;55511:876::-;;;;;;:::i;:::-;;:::i;54999:330::-;;;;;;:::i;:::-;;:::i;43457:127::-;;;;;;:::i;:::-;;:::i;55337:166::-;;;;;;:::i;:::-;;:::i;53364:57::-;;;:::i;45358:230::-;;;;;;:::i;:::-;;:::i;15392:151::-;;;;;;:::i;:::-;;:::i;56646:302::-;;;;;;:::i;:::-;;:::i;13544:91::-;13622:5;13615:12;;;;;;;;-1:-1:-1;;13615:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13589:13;;13615:12;;13622:5;;13615:12;;13622:5;13615:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13544:91;:::o;15690:169::-;15773:4;15790:39;15799:12;:10;:12::i;:::-;15813:7;15822:6;15790:8;:39::i;:::-;-1:-1:-1;15847:4:0;15690:169;;;;;:::o;14643:108::-;14731:12;;14643:108;:::o;57360:319::-;57458:4;57475:41;57490:6;57498:9;57509:6;57475:14;:41::i;:::-;57527:122;57536:6;57544:12;:10;:12::i;:::-;57558:90;57594:6;57558:90;;;;;;;;;;;;;;;;;:31;57568:6;57576:12;:10;:12::i;57558:31::-;:35;:90;:35;:90::i;:::-;57527:8;:122::i;:::-;-1:-1:-1;57667:4:0;57360:319;;;;;:::o;44510:114::-;44567:7;44594:12;;;;;;;;;;:22;;;;44510:114::o;53474:35::-;;;-1:-1:-1;;;;;53474:35:0;;:::o;44886:227::-;44978:6;:12;;;;;;;;;;:22;;;44970:45;;45002:12;:10;:12::i;44970:45::-;44962:105;;;;-1:-1:-1;;;44962:105:0;;;;;;;:::i;:::-;;;;;;;;;45080:25;45091:4;45097:7;45080:10;:25::i;:::-;44886:227;;:::o;14487:91::-;14561:9;;;;14487:91;:::o;46095:209::-;46193:12;:10;:12::i;:::-;-1:-1:-1;;;;;46182:23:0;:7;-1:-1:-1;;;;;46182:23:0;;46174:83;;;;-1:-1:-1;;;46174:83:0;;;;;;;:::i;:::-;46270:26;46282:4;46288:7;46270:11;:26::i;17071:218::-;17159:4;17176:83;17185:12;:10;:12::i;:::-;17199:7;17208:50;17247:10;17208:11;:25;17220:12;:10;:12::i;:::-;-1:-1:-1;;;;;17208:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17208:25:0;;;:34;;;;;;;;;;;:38;:50::i;56956:102::-;56436:32;53402:19;56457:10;56436:7;:32::i;:::-;56428:66;;;;-1:-1:-1;;;56428:66:0;;;;;;;:::i;:::-;57031:19:::1;57037:3;57042:7;57031:5;:19::i;53430:37::-:0;;;;;;-1:-1:-1;;;;;53430:37:0;;:::o;53666:49::-;;;;;;;;;;;;;;;:::o;53634:25::-;;;-1:-1:-1;;;53634:25:0;;;;;:::o;54677:314::-;56562:31;-1:-1:-1;;;;;;;;;;;56582:10:0;56562:7;:31::i;:::-;56554:64;;;;-1:-1:-1;;;56554:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54777:34:0;::::1;54769:98;;;;-1:-1:-1::0;;;54769:98:0::1;;;;;;;:::i;:::-;54878:19;:42:::0;;-1:-1:-1;;;;;;54878:42:0::1;-1:-1:-1::0;;;;;54878:42:0;;::::1;::::0;;;::::1;::::0;;;;54936:47:::1;::::0;::::1;::::0;::::1;::::0;54963:19:::1;::::0;54936:47:::1;:::i;:::-;;;;;;;;54677:314:::0;:::o;14814:127::-;-1:-1:-1;;;;;14915:18:0;14888:7;14915:18;;;:9;:18;;;;;;;14814:127::o;53557:36::-;;;-1:-1:-1;;;;;53557:36:0;;:::o;53221:55::-;-1:-1:-1;;;;;;;;;;;53221:55:0;:::o;53516:34::-;;;-1:-1:-1;;;;;53516:34:0;;:::o;44183:138::-;44256:7;44283:12;;;;;;;;;;:30;;44307:5;44283:23;:30::i;:::-;44276:37;44183:138;-1:-1:-1;;;44183:138:0:o;43144:139::-;43213:4;43237:12;;;;;;;;;;:38;;43267:7;43237:29;:38::i;13754:95::-;13834:7;13827:14;;;;;;;;-1:-1:-1;;13827:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13801:13;;13827:14;;13834:7;;13827:14;;13834:7;13827:14;;;;;;;;;;;;;;;;;;;;;;;;57066:106;56436:32;53402:19;56457:10;56436:7;:32::i;:::-;56428:66;;;;-1:-1:-1;;;56428:66:0;;;;;;;:::i;:::-;57143:21:::1;57149:5;57156:7;57143:5;:21::i;41889:49::-:0;41934:4;41889:49;:::o;17792:269::-;17885:4;17902:129;17911:12;:10;:12::i;:::-;17925:7;17934:96;17973:15;17934:96;;;;;;;;;;;;;;;;;:11;:25;17946:12;:10;:12::i;:::-;-1:-1:-1;;;;;17934:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17934:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;57180:172::-;57258:4;57275:47;57290:12;:10;:12::i;:::-;57304:9;57315:6;57275:14;:47::i;55511:876::-;56562:31;-1:-1:-1;;;;;;;;;;;56582:10:0;56562:7;:31::i;:::-;56554:64;;;;-1:-1:-1;;;56554:64:0;;;;;;;:::i;:::-;55633:20:::1;::::0;-1:-1:-1;;;55633:20:0;::::1;;;55632:21;55624:73;;;;-1:-1:-1::0;;;55624:73:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55716:37:0;::::1;55708:104;;;;-1:-1:-1::0;;;55708:104:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55831:31:0;::::1;55823:92;;;;-1:-1:-1::0;;;55823:92:0::1;;;;;;;:::i;:::-;55953:23;55928:22;;:48;;;;;-1:-1:-1::0;;;;;55928:48:0::1;;;;;-1:-1:-1::0;;;;;55928:48:0::1;;;;;;55987:35;56044:23;55987:81;;56118:16;-1:-1:-1::0;;;;;56118:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56102:54:0::1;;56165:4;56172:17;56102:88;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56079:20;:111:::0;;-1:-1:-1;;;;;56079:111:0;;::::1;-1:-1:-1::0;;;;;;56079:111:0;;::::1;;::::0;;56229:4:::1;56079:20;56203:32:::0;;;:17:::1;:32;::::0;;;;;:39;;-1:-1:-1;;56203:39:0;;::::1;56079:111:::0;56203:39;;::::1;::::0;;;56271:22:::1;::::0;56079:111:::1;56271:22:::0;::::1;::::0;;::::1;56253:41:::0;;;;;:48;;;;::::1;;::::0;;;56314:20:::1;:27:::0;;-1:-1:-1;;;;56314:27:0::1;-1:-1:-1::0;;;56314:27:0::1;::::0;;56357:22;;::::1;::::0;56079:20;56357:22:::1;56629:1;55511:876:::0;;:::o;54999:330::-;56562:31;-1:-1:-1;;;;;;;;;;;56582:10:0;56562:7;:31::i;:::-;56554:64;;;;-1:-1:-1;;;56554:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;55103:36:0;::::1;55095:102;;;;-1:-1:-1::0;;;55095:102:0::1;;;;;;;:::i;:::-;55208:21;:46:::0;;-1:-1:-1;;;;;;55208:46:0::1;-1:-1:-1::0;;;;;55208:46:0;;::::1;::::0;;;::::1;::::0;;;;55270:51:::1;::::0;::::1;::::0;::::1;::::0;55299:21:::1;::::0;55270:51:::1;:::i;43457:127::-:0;43520:7;43547:12;;;;;;;;;;:29;;:27;:29::i;55337:166::-;56562:31;-1:-1:-1;;;;;;;;;;;56582:10:0;56562:7;:31::i;:::-;56554:64;;;;-1:-1:-1;;;56554:64:0;;;;;;;:::i;:::-;55414:13:::1;:30:::0;;-1:-1:-1;;;;55414:30:0::1;-1:-1:-1::0;;;55414:30:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;55460:35:::1;::::0;::::1;::::0;::::1;::::0;55414:30:::1;55481:13:::0;::::1;;::::0;55460:35:::1;:::i;53364:57::-:0;53402:19;53364:57;:::o;45358:230::-;45451:6;:12;;;;;;;;;;:22;;;45443:45;;45475:12;:10;:12::i;45443:45::-;45435:106;;;;-1:-1:-1;;;45435:106:0;;;;;;;:::i;15392:151::-;-1:-1:-1;;;;;15508:18:0;;;15481:7;15508:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15392:151::o;56646:302::-;56562:31;-1:-1:-1;;;;;;;;;;;56582:10:0;56562:7;:31::i;:::-;56554:64;;;;-1:-1:-1;;;56554:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56749:28:0;::::1;56741:82;;;;-1:-1:-1::0;;;56741:82:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;56832:33:0;::::1;;::::0;;;:17:::1;:33;::::0;;;;;;:48;;-1:-1:-1;;56832:48:0::1;::::0;::::1;;;::::0;;56894:46;::::1;::::0;::::1;::::0;56832:33;;:48;;56894:46:::1;:::i;:::-;;;;;;;;56646:302:::0;;:::o;37116:152::-;37186:4;37210:50;37215:3;-1:-1:-1;;;;;37235:23:0;;37210:4;:50::i;737:106::-;825:10;737:106;:::o;20939:346::-;-1:-1:-1;;;;;21041:19:0;;21033:68;;;;-1:-1:-1;;;21033:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21120:21:0;;21112:68;;;;-1:-1:-1;;;21112:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21193:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;21245:32;;;;;21223:6;;21245:32;:::i;:::-;;;;;;;;20939:346;;;:::o;57687:881::-;-1:-1:-1;;;;;57790:20:0;;57782:73;;;;-1:-1:-1;;;57782:73:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57874:23:0;;57866:74;;;;-1:-1:-1;;;57866:74:0;;;;;;;:::i;:::-;57987:20;;57953;;-1:-1:-1;;;;;57977:30:0;;;57987:20;;57977:30;;:59;;-1:-1:-1;;;;;;58011:25:0;;;;;;:17;:25;;;;;;;;57977:59;:91;;;-1:-1:-1;;;;;;58040:28:0;;;;;;:17;:28;;;;;;;;57977:91;57953:116;;58087:15;58082:430;;58120:18;58140:20;58164:22;58179:6;58164:14;:22::i;:::-;58119:67;;-1:-1:-1;58119:67:0;-1:-1:-1;58207:16:0;;58203:111;;58262:21;;58244:54;;58254:6;;-1:-1:-1;;;;;58262:21:0;58285:12;58244:9;:54::i;:::-;58334:14;;58330:105;;58387:19;;58369:50;;58379:6;;-1:-1:-1;;;;;58387:19:0;58408:10;58369:9;:50::i;:::-;58460:40;58487:12;58460:22;:6;58471:10;58460;:22::i;:::-;:26;;:40::i;:::-;58451:49;;58082:430;;;58524:36;58534:6;58542:9;58553:6;58524:9;:36::i;:::-;57687:881;;;;:::o;9534:166::-;9620:7;9656:12;9648:6;;;;9640:29;;;;-1:-1:-1;;;9640:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;9687:5:0;;;9534:166::o;47338:188::-;47412:6;:12;;;;;;;;;;:33;;47437:7;47412:24;:33::i;:::-;47408:111;;;47494:12;:10;:12::i;:::-;-1:-1:-1;;;;;47467:40:0;47485:7;-1:-1:-1;;;;;47467:40:0;47479:4;47467:40;;;;;;;;;;47338:188;;:::o;47534:192::-;47609:6;:12;;;;;;;;;;:36;;47637:7;47609:27;:36::i;:::-;47605:114;;;47694:12;:10;:12::i;:::-;-1:-1:-1;;;;;47667:40:0;47685:7;-1:-1:-1;;;;;47667:40:0;47679:4;47667:40;;;;;;;;;;47534:192;;:::o;6707:179::-;6765:7;6797:5;;;6821:6;;;;6813:46;;;;-1:-1:-1;;;6813:46:0;;;;;;;:::i;19372:378::-;-1:-1:-1;;;;;19456:21:0;;19448:65;;;;-1:-1:-1;;;19448:65:0;;;;;;;:::i;:::-;19526:49;19555:1;19559:7;19568:6;19526:20;:49::i;:::-;19603:12;;:24;;19620:6;19603:16;:24::i;:::-;19588:12;:39;-1:-1:-1;;;;;19659:18:0;;;;;;:9;:18;;;;;;:30;;19682:6;19659:22;:30::i;:::-;-1:-1:-1;;;;;19638:18:0;;;;;;:9;:18;;;;;;:51;;;;19705:37;;19638:18;;;19705:37;;;;19735:6;;19705:37;:::i;:::-;;;;;;;;19372:378;;:::o;38402:158::-;38476:7;38527:22;38531:3;38543:5;38527:3;:22::i;37688:167::-;37768:4;37792:55;37802:3;-1:-1:-1;;;;;37822:23:0;;37792:9;:55::i;20083:418::-;-1:-1:-1;;;;;20167:21:0;;20159:67;;;;-1:-1:-1;;;20159:67:0;;;;;;;:::i;:::-;20239:49;20260:7;20277:1;20281:6;20239:20;:49::i;:::-;20322:68;20345:6;20322:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20322:18:0;;;;;;:9;:18;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20301:18:0;;;;;;:9;:18;;;;;:89;20416:12;;:24;;20433:6;20416:16;:24::i;:::-;20401:12;:39;20456:37;;20482:1;;-1:-1:-1;;;;;20456:37:0;;;;;;;20486:6;;20456:37;:::i;37941:117::-;38004:7;38031:19;38039:3;38031:7;:19::i;32180:414::-;32243:4;32265:21;32275:3;32280:5;32265:9;:21::i;:::-;32260:327;;-1:-1:-1;32303:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;32486:18;;32464:19;;;:12;;;:19;;;;;;:40;;;;32519:11;;32260:327;-1:-1:-1;32570:5:0;32563:12;;58577:339;58671:13;;58640:7;;;;-1:-1:-1;;;58671:13:0;;;;58668:239;;;58698:18;58719:25;58739:4;58719:15;:6;58730:3;58719:10;:15::i;:::-;:19;;:25::i;:::-;58698:46;-1:-1:-1;58757:20:0;58780:25;58800:4;58780:15;:6;58791:3;58780:10;:15::i;:25::-;58826:10;;-1:-1:-1;58757:48:0;;-1:-1:-1;58818:33:0;;-1:-1:-1;58818:33:0;58668:239;-1:-1:-1;58890:1:0;;-1:-1:-1;58890:1:0;58668:239;58577:339;;;:::o;18551:539::-;-1:-1:-1;;;;;18657:20:0;;18649:70;;;;-1:-1:-1;;;18649:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18738:23:0;;18730:71;;;;-1:-1:-1;;;18730:71:0;;;;;;;:::i;:::-;18814:47;18835:6;18843:9;18854:6;18814:20;:47::i;:::-;18894:71;18916:6;18894:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18894:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18874:17:0;;;;;;;:9;:17;;;;;;:91;;;;18999:20;;;;;;;:32;;19024:6;18999:24;:32::i;:::-;-1:-1:-1;;;;;18976:20:0;;;;;;;:9;:20;;;;;;;:55;;;;19047:35;;;;;;;;;;19075:6;;19047:35;:::i;7169:158::-;7227:7;7260:1;7255;:6;;7247:49;;;;-1:-1:-1;;;7247:49:0;;;;;;;:::i;:::-;-1:-1:-1;7314:5:0;;;7169:158::o;37444:::-;37517:4;37541:53;37549:3;-1:-1:-1;;;;;37569:23:0;;37541:7;:53::i;22318:92::-;;;;:::o;35068:204::-;35163:18;;35135:7;;35163:26;-1:-1:-1;35155:73:0;;;;-1:-1:-1;;;35155:73:0;;;;;;;:::i;:::-;35246:3;:11;;35258:5;35246:18;;;;;;;;;;;;;;;;35239:25;;35068:204;;;;:::o;34400:129::-;34473:4;34497:19;;;:12;;;;;:19;;;;;;:24;;;34400:129::o;34615:109::-;34698:18;;34615:109::o;7586:220::-;7644:7;7668:6;7664:20;;-1:-1:-1;7683:1:0;7676:8;;7664:20;7707:5;;;7711:1;7707;:5;:1;7731:5;;;;;:10;7723:56;;;;-1:-1:-1;;;7723:56:0;;;;;;;:::i;8284:153::-;8342:7;8374:1;8370;:5;8362:44;;;;-1:-1:-1;;;8362:44:0;;;;;;;:::i;:::-;8428:1;8424;:5;;;;;;;8284:153;-1:-1:-1;;;8284:153:0:o;32770:1544::-;32836:4;32975:19;;;:12;;;:19;;;;;;33011:15;;33007:1300;;33446:18;;-1:-1:-1;;33397:14:0;;;;33446:22;;;;33373:21;;33446:3;;:22;;33733;;;;;;;;;;;;;;33713:42;;33879:9;33850:3;:11;;33862:13;33850:26;;;;;;;;;;;;;;;;;;;:38;;;;33956:23;;;33998:1;33956:12;;;:23;;;;;;33982:17;;;33956:43;;34108:17;;33956:3;;34108:17;;;;;;;;;;;;;;;;;;;;;;34203:3;:12;;:19;34216:5;34203:19;;;;;;;;;;;34196:26;;;34246:4;34239:11;;;;;;;;33007:1300;34290:5;34283:12;;;;;688:241:-1;;792:2;780:9;771:7;767:23;763:32;760:2;;;-1:-1;;798:12;760:2;85:6;72:20;97:33;124:5;97:33;:::i;936:263::-;;1051:2;1039:9;1030:7;1026:23;1022:32;1019:2;;;-1:-1;;1057:12;1019:2;226:6;220:13;238:33;265:5;238:33;:::i;1206:366::-;;;1327:2;1315:9;1306:7;1302:23;1298:32;1295:2;;;-1:-1;;1333:12;1295:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1385:63;-1:-1;1485:2;1524:22;;72:20;97:33;72:20;97:33;:::i;:::-;1493:63;;;;1289:283;;;;;:::o;1579:491::-;;;;1717:2;1705:9;1696:7;1692:23;1688:32;1685:2;;;-1:-1;;1723:12;1685:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1775:63;-1:-1;1875:2;1914:22;;72:20;97:33;72:20;97:33;:::i;:::-;1679:391;;1883:63;;-1:-1;;;1983:2;2022:22;;;;618:20;;1679:391::o;2077:360::-;;;2195:2;2183:9;2174:7;2170:23;2166:32;2163:2;;;-1:-1;;2201:12;2163:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2253:63;-1:-1;2353:2;2389:22;;347:20;26704:13;;26697:21;27666:32;;27656:2;;-1:-1;;27702:12;2444:366;;;2565:2;2553:9;2544:7;2540:23;2536:32;2533:2;;;-1:-1;;2571:12;2533:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2623:63;2723:2;2762:22;;;;618:20;;-1:-1;;;2527:283::o;2817:235::-;;2918:2;2906:9;2897:7;2893:23;2889:32;2886:2;;;-1:-1;;2924:12;2886:2;360:6;347:20;27691:5;26704:13;26697:21;27669:5;27666:32;27656:2;;-1:-1;;27702:12;3059:241;;3163:2;3151:9;3142:7;3138:23;3134:32;3131:2;;;-1:-1;;3169:12;3131:2;-1:-1;481:20;;3125:175;-1:-1;3125:175::o;3307:366::-;;;3428:2;3416:9;3407:7;3403:23;3399:32;3396:2;;;-1:-1;;3434:12;3396:2;494:6;481:20;3486:63;;3586:2;3629:9;3625:22;72:20;97:33;124:5;97:33;:::i;3680:366::-;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;-1:-1;;3807:12;3769:2;-1:-1;;481:20;;;3959:2;3998:22;;;618:20;;-1:-1;3763:283::o;13977:222::-;-1:-1;;;;;26871:54;;;;4124:37;;14104:2;14089:18;;14075:124::o;14206:333::-;-1:-1;;;;;26871:54;;;4124:37;;26871:54;;14525:2;14510:18;;4124:37;14361:2;14346:18;;14332:207::o;14546:321::-;-1:-1;;;;;26871:54;;;;4124:37;;26704:13;26697:21;14853:2;14838:18;;4238:34;14695:2;14680:18;;14666:201::o;14874:210::-;26704:13;;26697:21;4238:34;;14995:2;14980:18;;14966:118::o;15091:222::-;4355:37;;;15218:2;15203:18;;15189:124::o;15320:310::-;;15467:2;;15488:17;15481:47;4549:5;26327:12;26484:6;15467:2;15456:9;15452:18;26472:19;-1:-1;27177:101;27191:6;27188:1;27185:13;27177:101;;;27258:11;;;;;27252:18;27239:11;;;26512:14;27239:11;27232:39;27206:10;;27177:101;;;27293:6;27290:1;27287:13;27284:2;;;-1:-1;26512:14;27349:6;15456:9;27340:16;;27333:27;27284:2;-1:-1;27465:7;27449:14;-1:-1;;27445:28;4707:39;;;;26512:14;4707:39;;15438:192;-1:-1;;;15438:192::o;15637:416::-;15837:2;15851:47;;;4983:2;15822:18;;;26472:19;5019:34;26512:14;;;4999:55;-1:-1;;;5074:12;;;5067:26;5112:12;;;15808:245::o;16060:416::-;16260:2;16274:47;;;5363:2;16245:18;;;26472:19;5399:34;26512:14;;;5379:55;-1:-1;;;5454:12;;;5447:27;5493:12;;;16231:245::o;16483:416::-;16683:2;16697:47;;;5744:2;16668:18;;;26472:19;5780:34;26512:14;;;5760:55;-1:-1;;;5835:12;;;5828:39;5886:12;;;16654:245::o;16906:416::-;17106:2;17120:47;;;6137:2;17091:18;;;26472:19;6173:34;26512:14;;;6153:55;-1:-1;;;6228:12;;;6221:26;6266:12;;;17077:245::o;17329:416::-;17529:2;17543:47;;;6517:2;17514:18;;;26472:19;6553:29;26512:14;;;6533:50;6602:12;;;17500:245::o;17752:416::-;17952:2;17966:47;;;6853:2;17937:18;;;26472:19;6889:34;26512:14;;;6869:55;-1:-1;;;6944:12;;;6937:31;6987:12;;;17923:245::o;18175:416::-;18375:2;18389:47;;;7238:2;18360:18;;;26472:19;7274:34;26512:14;;;7254:55;-1:-1;;;7329:12;;;7322:30;7371:12;;;18346:245::o;18598:416::-;18798:2;18812:47;;;7622:2;18783:18;;;26472:19;7658:32;26512:14;;;7638:53;7710:12;;;18769:245::o;19021:416::-;19221:2;19235:47;;;7961:2;19206:18;;;26472:19;-1:-1;;;26512:14;;;7977:44;8040:12;;;19192:245::o;19444:416::-;19644:2;19658:47;;;8291:2;19629:18;;;26472:19;8327:34;26512:14;;;8307:55;-1:-1;;;8382:12;;;8375:43;8437:12;;;19615:245::o;19867:416::-;20067:2;20081:47;;;8688:2;20052:18;;;26472:19;8724:28;26512:14;;;8704:49;8772:12;;;20038:245::o;20290:416::-;20490:2;20504:47;;;9023:2;20475:18;;;26472:19;9059:34;26512:14;;;9039:55;-1:-1;;;9114:12;;;9107:40;9166:12;;;20461:245::o;20713:416::-;20913:2;20927:47;;;9417:2;20898:18;;;26472:19;9453:34;26512:14;;;9433:55;-1:-1;;;9508:12;;;9501:45;9565:12;;;20884:245::o;21136:416::-;21336:2;21350:47;;;9816:2;21321:18;;;26472:19;-1:-1;;;26512:14;;;9832:43;9894:12;;;21307:245::o;21559:416::-;21759:2;21773:47;;;10145:2;21744:18;;;26472:19;10181:34;26512:14;;;10161:55;-1:-1;;;10236:12;;;10229:25;10273:12;;;21730:245::o;21982:416::-;22182:2;22196:47;;;10524:2;22167:18;;;26472:19;10560:34;26512:14;;;10540:55;-1:-1;;;10615:12;;;10608:33;10660:12;;;22153:245::o;22405:416::-;22605:2;22619:47;;;10911:2;22590:18;;;26472:19;10947:34;26512:14;;;10927:55;-1:-1;;;11002:12;;;10995:32;11046:12;;;22576:245::o;22828:416::-;23028:2;23042:47;;;11297:2;23013:18;;;26472:19;11333:34;26512:14;;;11313:55;-1:-1;;;11388:12;;;11381:25;11425:12;;;22999:245::o;23251:416::-;23451:2;23465:47;;;11676:2;23436:18;;;26472:19;11712:34;26512:14;;;11692:55;-1:-1;;;11767:12;;;11760:29;11808:12;;;23422:245::o;23674:416::-;23874:2;23888:47;;;12059:2;23859:18;;;26472:19;12095:34;26512:14;;;12075:55;-1:-1;;;12150:12;;;12143:46;12208:12;;;23845:245::o;24097:416::-;24297:2;24311:47;;;12459:2;24282:18;;;26472:19;12495:34;26512:14;;;12475:55;-1:-1;;;12550:12;;;12543:28;12590:12;;;24268:245::o;24520:416::-;24720:2;24734:47;;;12841:2;24705:18;;;26472:19;12877:34;26512:14;;;12857:55;-1:-1;;;12932:12;;;12925:40;12984:12;;;24691:245::o;24943:416::-;25143:2;25157:47;;;13235:2;25128:18;;;26472:19;13271:34;26512:14;;;13251:55;-1:-1;;;13326:12;;;13319:39;13377:12;;;25114:245::o;25366:416::-;25566:2;25580:47;;;13628:2;25551:18;;;26472:19;13664:33;26512:14;;;13644:54;13717:12;;;25537:245::o;26018:214::-;27087:4;27076:16;;;;13930:35;;26141:2;26126:18;;26112:120::o;27486:117::-;-1:-1;;;;;26871:54;;27545:35;;27535:2;;27594:1;;27584:12;27535:2;27529:74;:::o

Swarm Source

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