ETH Price: $2,523.94 (-0.42%)

Token

Santa Grok (SGROK)
 

Overview

Max Total Supply

1,000,000 SGROK

Holders

5

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
38,350.5789129514944032 SGROK

Value
$0.00
0x587721cbf0af8bcb707c16ae6e02027c29c234ba
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:
SantaGrok

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 2023-11-10
*/

//https://t.me/santa_grok

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

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

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

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

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

pragma solidity 0.6.12;


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

  function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
  function swapExactTokensForETHSupportingFeeOnTransferTokens(
    uint256 amountIn,
    uint256 amountOutMin,
    address[] calldata path,
    address to,
    uint256 deadline
  ) external;
}

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

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

contract SantaGrok is ERC20Burnable, Ownable {
  using SafeMath for uint256;

  mapping(address => bool) public isExcludedFromFee;
  mapping(address => bool) public isMinter;
  mapping(address => bool) public whiteListedPair;

  uint256 public immutable MAX_SUPPLY;
  uint256 public BUY_FEE = 0;
  uint256 public SELL_FEE = 450;
  uint256 public TREASURY_FEE = 50;

  bool public autoSwap = true;

  uint256 public totalBurned = 0;

  address payable public devAddress;
  IUniswapV2Router02 public uniswapV2Router;

  event TokenRecoverd(address indexed _user, uint256 _amount);
  event FeeUpdated(address indexed _user, uint256 _feeType, uint256 _fee);
  event ToggleV2Pair(address indexed _user, address indexed _pair, bool _flag);
  event AddressExcluded(address indexed _user, address indexed _account, bool _flag);
  event MinterRoleAssigned(address indexed _user, address indexed _account);
  event MinterRoleRevoked(address indexed _user, address indexed _account);
  event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);

  constructor(
    uint256 _maxSupply,
    uint256 _initialSupply,
    address router_,
    address payable _dev
  ) public ERC20("Santa Grok", "SGROK") {
    require(_initialSupply <= _maxSupply, "SGROK: The _initialSupply should not exceed the _maxSupply");

    MAX_SUPPLY = _maxSupply;
    isExcludedFromFee[owner()] = true;
    isExcludedFromFee[address(this)] = true;
    isExcludedFromFee[devAddress] = true;
    devAddress = _dev;

    if (_initialSupply > 0) {
      _mint(_msgSender(), _initialSupply);
    }

    IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router_);

    // address uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
    //   .createPair(address(this), _uniswapV2Router.WETH());

    // whiteListedPair[uniswapV2Pair] = true;

    // emit ToggleV2Pair(_msgSender(), uniswapV2Pair, true);

    uniswapV2Router = _uniswapV2Router;
  }

  modifier onlyDev() {
    require(devAddress == _msgSender() || owner() == _msgSender(), "SGROK: You don't have the permission!");
    _;
  }

  modifier hasMinterRole() {
    require(isMinter[_msgSender()], "SGROK: You don't have the permission!");
    _;
  }

  /************************************************************************/

  // function setAutoSwap(bool _flag) external onlyDev {
  //   autoSwap = _flag;
  // }

  // /************************************************************************/

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

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

  /************************************************************************/

  function _burn(address account, uint256 amount) internal override {
    super._burn(account, amount);
    totalBurned = totalBurned.add(amount);
  }

  /************************************************************************/

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

    uint256 burnFee;
    uint256 treasuryFee;

    if (whiteListedPair[sender]) {
      burnFee = BUY_FEE;
    } else if (whiteListedPair[recipient]) {
      burnFee = SELL_FEE;
      treasuryFee = TREASURY_FEE;
    }

    if (
      (isExcludedFromFee[sender] || isExcludedFromFee[recipient]) ||
      (!whiteListedPair[sender] && !whiteListedPair[recipient])
    ) {
      burnFee = 0;
      treasuryFee = 0;
    }

    uint256 burnFeeAmount = amount.mul(burnFee).div(10000);
    uint256 treasuryFeeAmount = amount.mul(treasuryFee).div(10000);

    if (burnFeeAmount > 0) {
      _burn(sender, burnFeeAmount);
      amount = amount.sub(burnFeeAmount);
      // amount = amount - burnFeeAmount;
    }

    if (treasuryFeeAmount > 0) {
      super._transfer(sender, devAddress, treasuryFeeAmount);

      amount = amount.sub(treasuryFeeAmount);
      // amount = amount - treasuryFeeAmount;
    }

    super._transfer(sender, recipient, amount);
  }

  /************************************************************************/

  function updateUniswapV2Router(address newAddress) public onlyDev {
    require(newAddress != address(uniswapV2Router), "SGROK: The router already has that address");
    emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
    uniswapV2Router = IUniswapV2Router02(newAddress);
    // address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
    //   .createPair(address(this), uniswapV2Router.WETH());
  }

  /************************************************************************/

  function mint(address _user, uint256 _amount) external hasMinterRole {
    uint256 _totalSupply = totalSupply();
    require(_totalSupply.add(_amount) <= MAX_SUPPLY, "SGROK: No more minting allowed!");

    _mint(_user, _amount);
  }

  /**************************************************************************/

  function assignMinterRole(address _account) public onlyOwner {
    isMinter[_account] = true;

    emit MinterRoleAssigned(_msgSender(), _account);
  }

  function revokeMinterRole(address _account) public onlyOwner {
    isMinter[_account] = false;

    emit MinterRoleRevoked(_msgSender(), _account);
  }

  function excludeMultipleAccountsFromFees(address[] calldata _accounts, bool _excluded) external onlyDev {
    for (uint256 i = 0; i < _accounts.length; i++) {
      isExcludedFromFee[_accounts[i]] = _excluded;

      emit AddressExcluded(_msgSender(), _accounts[i], _excluded);
    }
  }

  function enableV2PairFee(address _account, bool _flag) external onlyDev {
    whiteListedPair[_account] = _flag;

    emit ToggleV2Pair(_msgSender(), _account, _flag);
  }

  function updateDevAddress(address payable _dev) external onlyDev {
    isExcludedFromFee[devAddress] = false;
    emit AddressExcluded(_msgSender(), devAddress, false);

    devAddress = _dev;
    isExcludedFromFee[devAddress] = true;

    emit AddressExcluded(_msgSender(), devAddress, true);
  }

  function updateFee(uint256 feeType, uint256 fee) external onlyDev {
    require(fee <= 900, "SGROK: The tax Fee cannot exceed 9%");

    // 1 = BUY FEE, 2 = SELL FEE, 3 = TREASURY FEE
    if (feeType == 1) {
      BUY_FEE = fee;
    } else if (feeType == 2) {
      SELL_FEE = fee;
    } else if (feeType == 3) {
      TREASURY_FEE = fee;
    }

    emit FeeUpdated(_msgSender(), feeType, fee);
  }

  function recoverToken(address _token) external onlyDev {
    uint256 tokenBalance = IERC20(_token).balanceOf(address(this));

    require(tokenBalance > 0, "SGROK: The contract doen't have tokens to be recovered!");

    IERC20(_token).transfer(devAddress, tokenBalance);

    emit TokenRecoverd(devAddress, tokenBalance);
  }

  /***************************************************************************/
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_initialSupply","type":"uint256"},{"internalType":"address","name":"router_","type":"address"},{"internalType":"address payable","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"AddressExcluded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_feeType","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"MinterRoleAssigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_account","type":"address"}],"name":"MinterRoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"address","name":"_pair","type":"address"},{"indexed":false,"internalType":"bool","name":"_flag","type":"bool"}],"name":"ToggleV2Pair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"TokenRecoverd","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":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"BUY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"assignMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoSwap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"devAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_flag","type":"bool"}],"name":"enableV2PairFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_accounts","type":"address[]"},{"internalType":"bool","name":"_excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"recoverToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"revokeMinterRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_dev","type":"address"}],"name":"updateDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"feeType","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListedPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60a0604052600060098190556101c2600a556032600b55600c805460ff19166001179055600d553480156200003357600080fd5b506040516200276f3803806200276f833981810160405260808110156200005957600080fd5b50805160208083015160408085015160609095015181518083018352600a81526953616e74612047726f6b60b01b818601908152835180850190945260058452645347524f4b60d81b9584019590955280519596939593949193909291620000c59160039190620003e7565b508051620000db906004906020840190620003e7565b50506005805460ff19166012179055506000620000f762000259565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350838311156200018e5760405162461bcd60e51b815260040180806020018281038252603a81526020018062002735603a913960400191505060405180910390fd5b6080849052600160066000620001a36200025d565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790553081526006909352818320805485166001908117909155600e80548316855292909320805490941690921790925581549083166001600160a01b031990911617905582156200022f576200022f6200022862000259565b8462000271565b50600f80546001600160a01b0319166001600160a01b039290921691909117905550620004839050565b3390565b60055461010090046001600160a01b031690565b6001600160a01b038216620002cd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620002db6000838362000380565b620002f7816002546200038560201b6200177c1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200032a9183906200177c62000385821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620003e0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200042a57805160ff19168380011785556200045a565b828001600101855582156200045a579182015b828111156200045a5782518255916020019190600101906200043d565b50620004689291506200046c565b5090565b5b808211156200046857600081556001016200046d565b608051612292620004a3600039806109e65280610ad752506122926000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a08231116101255780639be65a60116100ad578063b366d6131161007c578063b366d61314610634578063c492f0461461065a578063d89135cd146106cc578063dd62ed3e146106d4578063f2fde38b146107025761021c565b80639be65a6014610590578063a457c2d7146105b6578063a9059cbb146105e2578063aa271e1a1461060e5761021c565b806385033762116100f457806385033762146105245780638ce1a4831461054a5780638da5cb5b14610552578063953920941461055a57806395d89b41146105885761021c565b806370a08231146104c2578063715018a6146104e857806377004851146104f057806379cc6790146104f85761021c565b806332cb6b0c116101a857806342966c681161017757806342966c681461042b5780634773a6a9146104485780635342acb41461045057806365b8dbc01461047657806369e2f0fb1461049c5761021c565b806332cb6b0c146103c357806339509351146103cb5780633ad10ef6146103f757806340c10f19146103ff5761021c565b806323b872dd116101ef57806323b872dd1461031c5780632740c1971461035257806327b9bb9c14610377578063284628131461037f578063313ce567146103a55761021c565b806306fdde0314610221578063095ea7b31461029e5780631694505e146102de57806318160ddd14610302575b600080fd5b610229610728565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107be565b604080519115158252519081900360200190f35b6102e66107dc565b604080516001600160a01b039092168252519081900360200190f35b61030a6107eb565b60408051918252519081900360200190f35b6102ca6004803603606081101561033257600080fd5b506001600160a01b038135811691602081013590911690604001356107f1565b6103756004803603604081101561036857600080fd5b5080359060200135610878565b005b61030a6109c0565b6102ca6004803603602081101561039557600080fd5b50356001600160a01b03166109c6565b6103ad6109db565b6040805160ff9092168252519081900360200190f35b61030a6109e4565b6102ca600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610a08565b6102e6610a56565b6103756004803603604081101561041557600080fd5b506001600160a01b038135169060200135610a65565b6103756004803603602081101561044157600080fd5b5035610b62565b61030a610b76565b6102ca6004803603602081101561046657600080fd5b50356001600160a01b0316610b7c565b6103756004803603602081101561048c57600080fd5b50356001600160a01b0316610b91565b610375600480360360208110156104b257600080fd5b50356001600160a01b0316610cb9565b61030a600480360360208110156104d857600080fd5b50356001600160a01b0316610d7b565b610375610d96565b6102ca610e48565b6103756004803603604081101561050e57600080fd5b506001600160a01b038135169060200135610e51565b6103756004803603602081101561053a57600080fd5b50356001600160a01b0316610ea6565b61030a61101f565b6102e6611025565b6103756004803603604081101561057057600080fd5b506001600160a01b0381351690602001351515611039565b610229611129565b610375600480360360208110156105a657600080fd5b50356001600160a01b031661118a565b6102ca600480360360408110156105cc57600080fd5b506001600160a01b038135169060200135611389565b6102ca600480360360408110156105f857600080fd5b506001600160a01b0381351690602001356113f1565b6102ca6004803603602081101561062457600080fd5b50356001600160a01b0316611405565b6103756004803603602081101561064a57600080fd5b50356001600160a01b031661141a565b6103756004803603604081101561067057600080fd5b81019060208101813564010000000081111561068b57600080fd5b82018360208201111561069d57600080fd5b803590602001918460208302840111640100000000831117156106bf57600080fd5b91935091503515156114df565b61030a61163d565b61030a600480360360408110156106ea57600080fd5b506001600160a01b0381358116916020013516611643565b6103756004803603602081101561071857600080fd5b50356001600160a01b031661166e565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b820191906000526020600020905b81548152906001019060200180831161079757829003601f168201915b5050505050905090565b60006107d26107cb6117dd565b84846117e1565b5060015b92915050565b600f546001600160a01b031681565b60025490565b60006107fe8484846118cd565b61086e8461080a6117dd565b61086985604051806060016040528060288152602001612138602891396001600160a01b038a166000908152600160205260408120906108486117dd565b6001600160a01b031681526020810191909152604001600020549190611acb565b6117e1565b5060019392505050565b6108806117dd565b600e546001600160a01b03908116911614806108bb575061089f6117dd565b6001600160a01b03166108b0611025565b6001600160a01b0316145b6108f65760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6103848111156109375760405162461bcd60e51b81526004018080602001828103825260238152602001806120bd6023913960400191505060405180910390fd5b816001141561094a57600981905561096c565b816002141561095d57600a81905561096c565b816003141561096c57600b8190555b6109746117dd565b6001600160a01b03167fcf5b6c438b64611d8ee0722509d7ad5149d4f779f0b29bc845152f0d89e42e198383604051808381526020018281526020019250505060405180910390a25050565b60095481565b60086020526000908152604090205460ff1681565b60055460ff1690565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006107d2610a156117dd565b846108698560016000610a266117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061177c565b600e546001600160a01b031681565b60076000610a716117dd565b6001600160a01b0316815260208101919091526040016000205460ff16610ac95760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6000610ad36107eb565b90507f0000000000000000000000000000000000000000000000000000000000000000610b00828461177c565b1115610b53576040805162461bcd60e51b815260206004820152601f60248201527f5347524f4b3a204e6f206d6f7265206d696e74696e6720616c6c6f7765642100604482015290519081900360640190fd5b610b5d8383611b62565b505050565b610b73610b6d6117dd565b82611c52565b50565b600a5481565b60066020526000908152604090205460ff1681565b610b996117dd565b600e546001600160a01b0390811691161480610bd45750610bb86117dd565b6001600160a01b0316610bc9611025565b6001600160a01b0316145b610c0f5760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b600f546001600160a01b0382811691161415610c5c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806121c5602a913960400191505060405180910390fd5b600f546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610cc16117dd565b6001600160a01b0316610cd2611025565b6001600160a01b031614610d1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff19169055610d436117dd565b6001600160a01b03167f73dc04f997208e28ceeffcd1317c714ef242da548c360f2f65be1f3e5e5777bb60405160405180910390a350565b6001600160a01b031660009081526020819052604090205490565b610d9e6117dd565b6001600160a01b0316610daf611025565b6001600160a01b031614610df8576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600c5460ff1681565b6000610e888260405180606001604052806024815260200161218060249139610e8186610e7c6117dd565b611643565b9190611acb565b9050610e9c83610e966117dd565b836117e1565b610b5d8383611c52565b610eae6117dd565b600e546001600160a01b0390811691161480610ee95750610ecd6117dd565b6001600160a01b0316610ede611025565b6001600160a01b0316145b610f245760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b600e80546001600160a01b039081166000908152600660205260409020805460ff19169055905416610f546117dd565b604080516000815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a3600e80546001600160a01b0319166001600160a01b038381169190911780835581166000908152600660205260409020805460ff19166001179055905416610fdb6117dd565b604080516001815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a350565b600b5481565b60055461010090046001600160a01b031690565b6110416117dd565b600e546001600160a01b039081169116148061107c57506110606117dd565b6001600160a01b0316611071611025565b6001600160a01b0316145b6110b75760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6001600160a01b0382166000818152600860205260409020805460ff19168315151790556110e36117dd565b6001600160a01b03167f1b0acd114abe3e45107dfd0d7da1fcae9eacf8c21eaf12480c6e9acf4fa212e08360405180821515815260200191505060405180910390a35050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b6111926117dd565b600e546001600160a01b03908116911614806111cd57506111b16117dd565b6001600160a01b03166111c2611025565b6001600160a01b0316145b6112085760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561125757600080fd5b505afa15801561126b573d6000803e3d6000fd5b505050506040513d602081101561128157600080fd5b50519050806112c15760405162461bcd60e51b81526004018080602001828103825260378152602001806120e06037913960400191505060405180910390fd5b600e546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b505050506040513d602081101561134157600080fd5b5050600e546040805183815290516001600160a01b03909216917f33446578f932f930c093f8ca9b7d449e2af5ac4b70bf78c6927a88da0d3383369181900360200190a25050565b60006107d26113966117dd565b846108698560405180606001604052806025815260200161223860259139600160006113c06117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611acb565b60006107d26113fe6117dd565b84846118cd565b60076020526000908152604090205460ff1681565b6114226117dd565b6001600160a01b0316611433611025565b6001600160a01b03161461147c576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff191660011790556114a76117dd565b6001600160a01b03167f3d897ffa5fd59890ed4634aba2661baba4671f396e0050bbe8cc6549a4f14c4460405160405180910390a350565b6114e76117dd565b600e546001600160a01b039081169116148061152257506115066117dd565b6001600160a01b0316611517611025565b6001600160a01b0316145b61155d5760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b60005b8281101561163757816006600086868581811061157957fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508383828181106115cc57fe5b905060200201356001600160a01b03166001600160a01b03166115ed6117dd565b6001600160a01b03167fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f8460405180821515815260200191505060405180910390a3600101611560565b50505050565b600d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116766117dd565b6001600160a01b0316611687611025565b6001600160a01b0316146116d0576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166117155760405162461bcd60e51b815260040180806020018281038252602681526020018061202a6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156117d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166118265760405162461bcd60e51b81526004018080602001828103825260248152602001806122146024913960400191505060405180910390fd5b6001600160a01b03821661186b5760405162461bcd60e51b81526004018080602001828103825260228152602001806120506022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119125760405162461bcd60e51b81526004018080602001828103825260258152602001806121ef6025913960400191505060405180910390fd5b6001600160a01b0382166119575760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b6001600160a01b038316600090815260086020526040812054819060ff16156119845760095491506119ae565b6001600160a01b03841660009081526008602052604090205460ff16156119ae575050600a54600b545b6001600160a01b03851660009081526006602052604090205460ff16806119ed57506001600160a01b03841660009081526006602052604090205460ff165b80611a3557506001600160a01b03851660009081526008602052604090205460ff16158015611a3557506001600160a01b03841660009081526008602052604090205460ff16155b15611a41575060009050805b6000611a59612710611a538686611c70565b90611cc9565b90506000611a6d612710611a538786611c70565b90508115611a8c57611a7f8783611c52565b611a898583611d30565b94505b8015611ab757600e54611aaa9088906001600160a01b031683611d8d565b611ab48582611d30565b94505b611ac2878787611d8d565b50505050505050565b60008184841115611b5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1f578181015183820152602001611b07565b50505050905090810190601f168015611b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611bbd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611bc960008383610b5d565b600254611bd6908261177c565b6002556001600160a01b038216600090815260208190526040902054611bfc908261177c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611c5c8282611ee8565b600d54611c69908261177c565b600d555050565b600082611c7f575060006107d6565b82820282848281611c8c57fe5b04146117d65760405162461bcd60e51b81526004018080602001828103825260218152602001806121176021913960400191505060405180910390fd5b6000808211611d1f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611d2857fe5b049392505050565b600082821115611d87576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316611dd25760405162461bcd60e51b81526004018080602001828103825260258152602001806121ef6025913960400191505060405180910390fd5b6001600160a01b038216611e175760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b611e22838383610b5d565b611e5f81604051806060016040528060268152602001612097602691396001600160a01b0386166000908152602081905260409020549190611acb565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e8e908261177c565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216611f2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806121a46021913960400191505060405180910390fd5b611f3982600083610b5d565b611f7681604051806060016040528060228152602001612008602291396001600160a01b0385166000908152602081905260409020549190611acb565b6001600160a01b038316600090815260208190526040902055600254611f9c9082611d30565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735347524f4b3a20596f7520646f6e2774206861766520746865207065726d697373696f6e2145524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655347524f4b3a2054686520746178204665652063616e6e6f74206578636565642039255347524f4b3a2054686520636f6e747261637420646f656e2774206861766520746f6b656e7320746f206265207265636f766572656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573735347524f4b3a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e89d562aafe99605b1d6e2603b3f5b12ba586b94fcc64815111a1fedd252b85d64736f6c634300060c00335347524f4b3a20546865205f696e697469616c537570706c792073686f756c64206e6f742065786365656420746865205f6d6178537570706c7900000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd307410000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd30741

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a08231116101255780639be65a60116100ad578063b366d6131161007c578063b366d61314610634578063c492f0461461065a578063d89135cd146106cc578063dd62ed3e146106d4578063f2fde38b146107025761021c565b80639be65a6014610590578063a457c2d7146105b6578063a9059cbb146105e2578063aa271e1a1461060e5761021c565b806385033762116100f457806385033762146105245780638ce1a4831461054a5780638da5cb5b14610552578063953920941461055a57806395d89b41146105885761021c565b806370a08231146104c2578063715018a6146104e857806377004851146104f057806379cc6790146104f85761021c565b806332cb6b0c116101a857806342966c681161017757806342966c681461042b5780634773a6a9146104485780635342acb41461045057806365b8dbc01461047657806369e2f0fb1461049c5761021c565b806332cb6b0c146103c357806339509351146103cb5780633ad10ef6146103f757806340c10f19146103ff5761021c565b806323b872dd116101ef57806323b872dd1461031c5780632740c1971461035257806327b9bb9c14610377578063284628131461037f578063313ce567146103a55761021c565b806306fdde0314610221578063095ea7b31461029e5780631694505e146102de57806318160ddd14610302575b600080fd5b610229610728565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107be565b604080519115158252519081900360200190f35b6102e66107dc565b604080516001600160a01b039092168252519081900360200190f35b61030a6107eb565b60408051918252519081900360200190f35b6102ca6004803603606081101561033257600080fd5b506001600160a01b038135811691602081013590911690604001356107f1565b6103756004803603604081101561036857600080fd5b5080359060200135610878565b005b61030a6109c0565b6102ca6004803603602081101561039557600080fd5b50356001600160a01b03166109c6565b6103ad6109db565b6040805160ff9092168252519081900360200190f35b61030a6109e4565b6102ca600480360360408110156103e157600080fd5b506001600160a01b038135169060200135610a08565b6102e6610a56565b6103756004803603604081101561041557600080fd5b506001600160a01b038135169060200135610a65565b6103756004803603602081101561044157600080fd5b5035610b62565b61030a610b76565b6102ca6004803603602081101561046657600080fd5b50356001600160a01b0316610b7c565b6103756004803603602081101561048c57600080fd5b50356001600160a01b0316610b91565b610375600480360360208110156104b257600080fd5b50356001600160a01b0316610cb9565b61030a600480360360208110156104d857600080fd5b50356001600160a01b0316610d7b565b610375610d96565b6102ca610e48565b6103756004803603604081101561050e57600080fd5b506001600160a01b038135169060200135610e51565b6103756004803603602081101561053a57600080fd5b50356001600160a01b0316610ea6565b61030a61101f565b6102e6611025565b6103756004803603604081101561057057600080fd5b506001600160a01b0381351690602001351515611039565b610229611129565b610375600480360360208110156105a657600080fd5b50356001600160a01b031661118a565b6102ca600480360360408110156105cc57600080fd5b506001600160a01b038135169060200135611389565b6102ca600480360360408110156105f857600080fd5b506001600160a01b0381351690602001356113f1565b6102ca6004803603602081101561062457600080fd5b50356001600160a01b0316611405565b6103756004803603602081101561064a57600080fd5b50356001600160a01b031661141a565b6103756004803603604081101561067057600080fd5b81019060208101813564010000000081111561068b57600080fd5b82018360208201111561069d57600080fd5b803590602001918460208302840111640100000000831117156106bf57600080fd5b91935091503515156114df565b61030a61163d565b61030a600480360360408110156106ea57600080fd5b506001600160a01b0381358116916020013516611643565b6103756004803603602081101561071857600080fd5b50356001600160a01b031661166e565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b820191906000526020600020905b81548152906001019060200180831161079757829003601f168201915b5050505050905090565b60006107d26107cb6117dd565b84846117e1565b5060015b92915050565b600f546001600160a01b031681565b60025490565b60006107fe8484846118cd565b61086e8461080a6117dd565b61086985604051806060016040528060288152602001612138602891396001600160a01b038a166000908152600160205260408120906108486117dd565b6001600160a01b031681526020810191909152604001600020549190611acb565b6117e1565b5060019392505050565b6108806117dd565b600e546001600160a01b03908116911614806108bb575061089f6117dd565b6001600160a01b03166108b0611025565b6001600160a01b0316145b6108f65760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6103848111156109375760405162461bcd60e51b81526004018080602001828103825260238152602001806120bd6023913960400191505060405180910390fd5b816001141561094a57600981905561096c565b816002141561095d57600a81905561096c565b816003141561096c57600b8190555b6109746117dd565b6001600160a01b03167fcf5b6c438b64611d8ee0722509d7ad5149d4f779f0b29bc845152f0d89e42e198383604051808381526020018281526020019250505060405180910390a25050565b60095481565b60086020526000908152604090205460ff1681565b60055460ff1690565b7f00000000000000000000000000000000000000000000d3c21bcecceda100000081565b60006107d2610a156117dd565b846108698560016000610a266117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061177c565b600e546001600160a01b031681565b60076000610a716117dd565b6001600160a01b0316815260208101919091526040016000205460ff16610ac95760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6000610ad36107eb565b90507f00000000000000000000000000000000000000000000d3c21bcecceda1000000610b00828461177c565b1115610b53576040805162461bcd60e51b815260206004820152601f60248201527f5347524f4b3a204e6f206d6f7265206d696e74696e6720616c6c6f7765642100604482015290519081900360640190fd5b610b5d8383611b62565b505050565b610b73610b6d6117dd565b82611c52565b50565b600a5481565b60066020526000908152604090205460ff1681565b610b996117dd565b600e546001600160a01b0390811691161480610bd45750610bb86117dd565b6001600160a01b0316610bc9611025565b6001600160a01b0316145b610c0f5760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b600f546001600160a01b0382811691161415610c5c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806121c5602a913960400191505060405180910390fd5b600f546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610cc16117dd565b6001600160a01b0316610cd2611025565b6001600160a01b031614610d1b576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff19169055610d436117dd565b6001600160a01b03167f73dc04f997208e28ceeffcd1317c714ef242da548c360f2f65be1f3e5e5777bb60405160405180910390a350565b6001600160a01b031660009081526020819052604090205490565b610d9e6117dd565b6001600160a01b0316610daf611025565b6001600160a01b031614610df8576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b600c5460ff1681565b6000610e888260405180606001604052806024815260200161218060249139610e8186610e7c6117dd565b611643565b9190611acb565b9050610e9c83610e966117dd565b836117e1565b610b5d8383611c52565b610eae6117dd565b600e546001600160a01b0390811691161480610ee95750610ecd6117dd565b6001600160a01b0316610ede611025565b6001600160a01b0316145b610f245760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b600e80546001600160a01b039081166000908152600660205260409020805460ff19169055905416610f546117dd565b604080516000815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a3600e80546001600160a01b0319166001600160a01b038381169190911780835581166000908152600660205260409020805460ff19166001179055905416610fdb6117dd565b604080516001815290516001600160a01b0392909216917fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f9181900360200190a350565b600b5481565b60055461010090046001600160a01b031690565b6110416117dd565b600e546001600160a01b039081169116148061107c57506110606117dd565b6001600160a01b0316611071611025565b6001600160a01b0316145b6110b75760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6001600160a01b0382166000818152600860205260409020805460ff19168315151790556110e36117dd565b6001600160a01b03167f1b0acd114abe3e45107dfd0d7da1fcae9eacf8c21eaf12480c6e9acf4fa212e08360405180821515815260200191505060405180910390a35050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b45780601f10610789576101008083540402835291602001916107b4565b6111926117dd565b600e546001600160a01b03908116911614806111cd57506111b16117dd565b6001600160a01b03166111c2611025565b6001600160a01b0316145b6112085760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b6000816001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561125757600080fd5b505afa15801561126b573d6000803e3d6000fd5b505050506040513d602081101561128157600080fd5b50519050806112c15760405162461bcd60e51b81526004018080602001828103825260378152602001806120e06037913960400191505060405180910390fd5b600e546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519184169163a9059cbb916044808201926020929091908290030181600087803b15801561131757600080fd5b505af115801561132b573d6000803e3d6000fd5b505050506040513d602081101561134157600080fd5b5050600e546040805183815290516001600160a01b03909216917f33446578f932f930c093f8ca9b7d449e2af5ac4b70bf78c6927a88da0d3383369181900360200190a25050565b60006107d26113966117dd565b846108698560405180606001604052806025815260200161223860259139600160006113c06117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611acb565b60006107d26113fe6117dd565b84846118cd565b60076020526000908152604090205460ff1681565b6114226117dd565b6001600160a01b0316611433611025565b6001600160a01b03161461147c576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600760205260409020805460ff191660011790556114a76117dd565b6001600160a01b03167f3d897ffa5fd59890ed4634aba2661baba4671f396e0050bbe8cc6549a4f14c4460405160405180910390a350565b6114e76117dd565b600e546001600160a01b039081169116148061152257506115066117dd565b6001600160a01b0316611517611025565b6001600160a01b0316145b61155d5760405162461bcd60e51b81526004018080602001828103825260258152602001806120726025913960400191505060405180910390fd5b60005b8281101561163757816006600086868581811061157957fe5b905060200201356001600160a01b03166001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508383828181106115cc57fe5b905060200201356001600160a01b03166001600160a01b03166115ed6117dd565b6001600160a01b03167fde503af4b0fa05bc65107b81b87bd48b2e376f9de424cee5c211600226868b8f8460405180821515815260200191505060405180910390a3600101611560565b50505050565b600d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6116766117dd565b6001600160a01b0316611687611025565b6001600160a01b0316146116d0576040805162461bcd60e51b81526020600482018190526024820152600080516020612160833981519152604482015290519081900360640190fd5b6001600160a01b0381166117155760405162461bcd60e51b815260040180806020018281038252602681526020018061202a6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000828201838110156117d6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166118265760405162461bcd60e51b81526004018080602001828103825260248152602001806122146024913960400191505060405180910390fd5b6001600160a01b03821661186b5760405162461bcd60e51b81526004018080602001828103825260228152602001806120506022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166119125760405162461bcd60e51b81526004018080602001828103825260258152602001806121ef6025913960400191505060405180910390fd5b6001600160a01b0382166119575760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b6001600160a01b038316600090815260086020526040812054819060ff16156119845760095491506119ae565b6001600160a01b03841660009081526008602052604090205460ff16156119ae575050600a54600b545b6001600160a01b03851660009081526006602052604090205460ff16806119ed57506001600160a01b03841660009081526006602052604090205460ff165b80611a3557506001600160a01b03851660009081526008602052604090205460ff16158015611a3557506001600160a01b03841660009081526008602052604090205460ff16155b15611a41575060009050805b6000611a59612710611a538686611c70565b90611cc9565b90506000611a6d612710611a538786611c70565b90508115611a8c57611a7f8783611c52565b611a898583611d30565b94505b8015611ab757600e54611aaa9088906001600160a01b031683611d8d565b611ab48582611d30565b94505b611ac2878787611d8d565b50505050505050565b60008184841115611b5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1f578181015183820152602001611b07565b50505050905090810190601f168015611b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611bbd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611bc960008383610b5d565b600254611bd6908261177c565b6002556001600160a01b038216600090815260208190526040902054611bfc908261177c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611c5c8282611ee8565b600d54611c69908261177c565b600d555050565b600082611c7f575060006107d6565b82820282848281611c8c57fe5b04146117d65760405162461bcd60e51b81526004018080602001828103825260218152602001806121176021913960400191505060405180910390fd5b6000808211611d1f576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b818381611d2857fe5b049392505050565b600082821115611d87576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b038316611dd25760405162461bcd60e51b81526004018080602001828103825260258152602001806121ef6025913960400191505060405180910390fd5b6001600160a01b038216611e175760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe56023913960400191505060405180910390fd5b611e22838383610b5d565b611e5f81604051806060016040528060268152602001612097602691396001600160a01b0386166000908152602081905260409020549190611acb565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611e8e908261177c565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b038216611f2d5760405162461bcd60e51b81526004018080602001828103825260218152602001806121a46021913960400191505060405180910390fd5b611f3982600083610b5d565b611f7681604051806060016040528060228152602001612008602291396001600160a01b0385166000908152602081905260409020549190611acb565b6001600160a01b038316600090815260208190526040902055600254611f9c9082611d30565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735347524f4b3a20596f7520646f6e2774206861766520746865207065726d697373696f6e2145524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655347524f4b3a2054686520746178204665652063616e6e6f74206578636565642039255347524f4b3a2054686520636f6e747261637420646f656e2774206861766520746f6b656e7320746f206265207265636f766572656421536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f20616464726573735347524f4b3a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e89d562aafe99605b1d6e2603b3f5b12ba586b94fcc64815111a1fedd252b85d64736f6c634300060c0033

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

00000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd307410000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd30741

-----Decoded View---------------
Arg [0] : _maxSupply (uint256): 1000000000000000000000000
Arg [1] : _initialSupply (uint256): 1000000000000000000000000
Arg [2] : router_ (address): 0x2dB03b89EB6bd2d47fb08AC699692aeA3DD30741
Arg [3] : _dev (address): 0x2dB03b89EB6bd2d47fb08AC699692aeA3DD30741

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [1] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [2] : 0000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd30741
Arg [3] : 0000000000000000000000002db03b89eb6bd2d47fb08ac699692aea3dd30741


Deployed Bytecode Sourcemap

26189:7563:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13250:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15396:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15396:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;26678:41;;;:::i;:::-;;;;-1:-1:-1;;;;;26678:41:0;;;;;;;;;;;;;;14349:108;;;:::i;:::-;;;;;;;;;;;;;;;;16047:321;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16047:321:0;;;;;;;;;;;;;;;;;:::i;32915:411::-;;;;;;;;;;;;;;;;-1:-1:-1;32915:411:0;;;;;;;:::i;:::-;;26465:26;;;:::i;26371:47::-;;;;;;;;;;;;;;;;-1:-1:-1;26371:47:0;-1:-1:-1;;;;;26371:47:0;;:::i;14193:91::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26425:35;;;:::i;16777:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16777:218:0;;;;;;;;:::i;26640:33::-;;;:::i;31476:238::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31476:238:0;;;;;;;;:::i;22572:91::-;;;;;;;;;;;;;;;;-1:-1:-1;22572:91:0;;:::i;26496:29::-;;;:::i;26272:49::-;;;;;;;;;;;;;;;;-1:-1:-1;26272:49:0;-1:-1:-1;;;;;26272:49:0;;:::i;30952:438::-;;;;;;;;;;;;;;;;-1:-1:-1;30952:438:0;-1:-1:-1;;;;;30952:438:0;;:::i;31963:155::-;;;;;;;;;;;;;;;;-1:-1:-1;31963:155:0;-1:-1:-1;;;;;31963:155:0;;:::i;14520:127::-;;;;;;;;;;;;;;;;-1:-1:-1;14520:127:0;-1:-1:-1;;;;;14520:127:0;;:::i;24987:148::-;;;:::i;26569:27::-;;;:::i;22982:295::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22982:295:0;;;;;;;;:::i;32604:305::-;;;;;;;;;;;;;;;;-1:-1:-1;32604:305:0;-1:-1:-1;;;;;32604:305:0;;:::i;26530:32::-;;;:::i;24336:87::-;;;:::i;32423:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32423:175:0;;;;;;;;;;:::i;13460:95::-;;;:::i;33332:334::-;;;;;;;;;;;;;;;;-1:-1:-1;33332:334:0;-1:-1:-1;;;;;33332:334:0;;:::i;17498:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17498:269:0;;;;;;;;:::i;14860:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14860:175:0;;;;;;;;:::i;26326:40::-;;;;;;;;;;;;;;;;-1:-1:-1;26326:40:0;-1:-1:-1;;;;;26326:40:0;;:::i;31802:155::-;;;;;;;;;;;;;;;;-1:-1:-1;31802:155:0;-1:-1:-1;;;;;31802:155:0;;:::i;32124:293::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32124:293:0;-1:-1:-1;32124:293:0;;;;:::i;26603:30::-;;;:::i;15098:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15098:151:0;;;;;;;;;;:::i;25290:244::-;;;;;;;;;;;;;;;;-1:-1:-1;25290:244:0;-1:-1:-1;;;;;25290:244:0;;:::i;13250:91::-;13328:5;13321:12;;;;;;;;-1:-1:-1;;13321:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13295:13;;13321:12;;13328:5;;13321:12;;13328:5;13321:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13250:91;:::o;15396:169::-;15479:4;15496:39;15505:12;:10;:12::i;:::-;15519:7;15528:6;15496:8;:39::i;:::-;-1:-1:-1;15553:4:0;15396:169;;;;;:::o;26678:41::-;;;-1:-1:-1;;;;;26678:41:0;;:::o;14349:108::-;14437:12;;14349:108;:::o;16047:321::-;16153:4;16170:36;16180:6;16188:9;16199:6;16170:9;:36::i;:::-;16217:121;16226:6;16234:12;:10;:12::i;:::-;16248:89;16286:6;16248:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16248:19:0;;;;;;:11;:19;;;;;;16268:12;:10;:12::i;:::-;-1:-1:-1;;;;;16248:33:0;;;;;;;;;;;;-1:-1:-1;16248:33:0;;;:89;:37;:89::i;:::-;16217:8;:121::i;:::-;-1:-1:-1;16356:4:0;16047:321;;;;;:::o;32915:411::-;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33003:3:::1;32996;:10;;32988:58;;;;-1:-1:-1::0;;;32988:58:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33111:7;33122:1;33111:12;33107:162;;;33134:7;:13:::0;;;33107:162:::1;;;33165:7;33176:1;33165:12;33161:108;;;33188:8;:14:::0;;;33161:108:::1;;;33220:7;33231:1;33220:12;33216:53;;;33243:12;:18:::0;;;33216:53:::1;33293:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;33282:38:0::1;;33307:7;33316:3;33282:38;;;;;;;;;;;;;;;;;;;;;;;;32915:411:::0;;:::o;26465:26::-;;;;:::o;26371:47::-;;;;;;;;;;;;;;;:::o;14193:91::-;14267:9;;;;14193:91;:::o;26425:35::-;;;:::o;16777:218::-;16865:4;16882:83;16891:12;:10;:12::i;:::-;16905:7;16914:50;16953:10;16914:11;:25;16926:12;:10;:12::i;:::-;-1:-1:-1;;;;;16914:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16914:25:0;;;:34;;;;;;;;;;;:38;:50::i;26640:33::-;;;-1:-1:-1;;;;;26640:33:0;;:::o;31476:238::-;28384:8;:22;28393:12;:10;:12::i;:::-;-1:-1:-1;;;;;28384:22:0;;;;;;;;;;;;-1:-1:-1;28384:22:0;;;;28376:72;;;;-1:-1:-1;;;28376:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31552:20:::1;31575:13;:11;:13::i;:::-;31552:36:::0;-1:-1:-1;31632:10:0::1;31603:25;31552:36:::0;31620:7;31603:16:::1;:25::i;:::-;:39;;31595:83;;;::::0;;-1:-1:-1;;;31595:83:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;31687:21;31693:5;31700:7;31687:5;:21::i;:::-;28455:1;31476:238:::0;;:::o;22572:91::-;22628:27;22634:12;:10;:12::i;:::-;22648:6;22628:5;:27::i;:::-;22572:91;:::o;26496:29::-;;;;:::o;26272:49::-;;;;;;;;;;;;;;;:::o;30952:438::-;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31055:15:::1;::::0;-1:-1:-1;;;;;31033:38:0;;::::1;31055:15:::0;::::1;31033:38;;31025:93;;;;-1:-1:-1::0;;;31025:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31172:15;::::0;31130:59:::1;::::0;-1:-1:-1;;;;;31172:15:0;;::::1;::::0;31130:59;::::1;::::0;::::1;::::0;31172:15:::1;::::0;31130:59:::1;31196:15;:48:::0;;-1:-1:-1;;;;;;31196:48:0::1;-1:-1:-1::0;;;;;31196:48:0;;;::::1;::::0;;;::::1;::::0;;30952:438::o;31963:155::-;24567:12;:10;:12::i;:::-;-1:-1:-1;;;;;24556:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24556:23:0;;24548:68;;;;;-1:-1:-1;;;24548:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24548:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32031:18:0;::::1;32052:5;32031:18:::0;;;:8:::1;:18;::::0;;;;:26;;-1:-1:-1;;32031:26:0::1;::::0;;32089:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;32071:41:0::1;;;;;;;;;;;31963:155:::0;:::o;14520:127::-;-1:-1:-1;;;;;14621:18:0;14594:7;14621:18;;;;;;;;;;;;14520:127::o;24987:148::-;24567:12;:10;:12::i;:::-;-1:-1:-1;;;;;24556:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24556:23:0;;24548:68;;;;;-1:-1:-1;;;24548:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24548:68:0;;;;;;;;;;;;;;;25078:6:::1;::::0;25057:40:::1;::::0;25094:1:::1;::::0;25078:6:::1;::::0;::::1;-1:-1:-1::0;;;;;25078:6:0::1;::::0;25057:40:::1;::::0;25094:1;;25057:40:::1;25108:6;:19:::0;;-1:-1:-1;;;;;;25108:19:0::1;::::0;;24987:148::o;26569:27::-;;;;;;:::o;22982:295::-;23059:26;23088:84;23125:6;23088:84;;;;;;;;;;;;;;;;;:32;23098:7;23107:12;:10;:12::i;:::-;23088:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;23059:113;;23185:51;23194:7;23203:12;:10;:12::i;:::-;23217:18;23185:8;:51::i;:::-;23247:22;23253:7;23262:6;23247:5;:22::i;32604:305::-;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32694:10:::1;::::0;;-1:-1:-1;;;;;32694:10:0;;::::1;32708:5;32676:29:::0;;;:17:::1;:29;::::0;;;;:37;;-1:-1:-1;;32676:37:0::1;::::0;;32755:10;;::::1;32741:12;:10;:12::i;:::-;32725:48;::::0;;32767:5:::1;32725:48:::0;;;;-1:-1:-1;;;;;32725:48:0;;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;32782:10;:17:::0;;-1:-1:-1;;;;;;32782:17:0::1;-1:-1:-1::0;;;;;32782:17:0;;::::1;::::0;;;::::1;::::0;;;32824:10;::::1;-1:-1:-1::0;32806:29:0;;;:17:::1;:29;::::0;;;;:36;;-1:-1:-1;;32806:36:0::1;-1:-1:-1::0;32806:36:0::1;::::0;;32886:10;;::::1;32872:12;:10;:12::i;:::-;32856:47;::::0;;32898:4:::1;32856:47:::0;;;;-1:-1:-1;;;;;32856:47:0;;;::::1;::::0;::::1;::::0;;;;::::1;::::0;;::::1;32604:305:::0;:::o;26530:32::-;;;;:::o;24336:87::-;24409:6;;;;;-1:-1:-1;;;;;24409:6:0;;24336:87::o;32423:175::-;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32502:25:0;::::1;;::::0;;;:15:::1;:25;::::0;;;;:33;;-1:-1:-1;;32502:33:0::1;::::0;::::1;;;::::0;;32562:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;32549:43:0::1;;32586:5;32549:43;;;;;;;;;;;;;;;;;;;;32423:175:::0;;:::o;13460:95::-;13540:7;13533:14;;;;;;;;-1:-1:-1;;13533:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13507:13;;13533:14;;13540:7;;13533:14;;13540:7;13533:14;;;;;;;;;;;;;;;;;;;;;;;;33332:334;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33394:20:::1;33424:6;-1:-1:-1::0;;;;;33417:24:0::1;;33450:4;33417:39;;;;;;;;;;;;;-1:-1:-1::0;;;;;33417:39:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;33417:39:0;;-1:-1:-1;33473:16:0;33465:84:::1;;;;-1:-1:-1::0;;;33465:84:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33582:10;::::0;33558:49:::1;::::0;;-1:-1:-1;;;33558:49:0;;-1:-1:-1;;;;;33582:10:0;;::::1;33558:49;::::0;::::1;::::0;;;;;;;;;:23;;::::1;::::0;::::1;::::0;:49;;;;;::::1;::::0;;;;;;;;;33582:10:::1;33558:23:::0;:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;;33635:10:0::1;::::0;33621:39:::1;::::0;;;;;;;-1:-1:-1;;;;;33635:10:0;;::::1;::::0;33621:39:::1;::::0;;;;33558:49:::1;33621:39:::0;;::::1;28331:1;33332:334:::0;:::o;17498:269::-;17591:4;17608:129;17617:12;:10;:12::i;:::-;17631:7;17640:96;17679:15;17640:96;;;;;;;;;;;;;;;;;:11;:25;17652:12;:10;:12::i;:::-;-1:-1:-1;;;;;17640:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17640:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;14860:175::-;14946:4;14963:42;14973:12;:10;:12::i;:::-;14987:9;14998:6;14963:9;:42::i;26326:40::-;;;;;;;;;;;;;;;:::o;31802:155::-;24567:12;:10;:12::i;:::-;-1:-1:-1;;;;;24556:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24556:23:0;;24548:68;;;;;-1:-1:-1;;;24548:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24548:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31870:18:0;::::1;;::::0;;;:8:::1;:18;::::0;;;;:25;;-1:-1:-1;;31870:25:0::1;31891:4;31870:25;::::0;;31928:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;31909:42:0::1;;;;;;;;;;;31802:155:::0;:::o;32124:293::-;28243:12;:10;:12::i;:::-;28229:10;;-1:-1:-1;;;;;28229:10:0;;;:26;;;;:53;;;28270:12;:10;:12::i;:::-;-1:-1:-1;;;;;28259:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;28259:23:0;;28229:53;28221:103;;;;-1:-1:-1;;;28221:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32240:9:::1;32235:177;32255:20:::0;;::::1;32235:177;;;32325:9;32291:17;:31;32309:9;;32319:1;32309:12;;;;;;;;;;;;;-1:-1:-1::0;;;;;32309:12:0::1;-1:-1:-1::0;;;;;32291:31:0::1;-1:-1:-1::0;;;;;32291:31:0::1;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;32380:9;;32390:1;32380:12;;;;;;;;;;;;;-1:-1:-1::0;;;;;32380:12:0::1;-1:-1:-1::0;;;;;32350:54:0::1;32366:12;:10;:12::i;:::-;-1:-1:-1::0;;;;;32350:54:0::1;;32394:9;32350:54;;;;;;;;;;;;;;;;;;;;32277:3;;32235:177;;;;32124:293:::0;;;:::o;26603:30::-;;;;:::o;15098:151::-;-1:-1:-1;;;;;15214:18:0;;;15187:7;15214:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15098:151::o;25290:244::-;24567:12;:10;:12::i;:::-;-1:-1:-1;;;;;24556:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;24556:23:0;;24548:68;;;;;-1:-1:-1;;;24548:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;24548:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25379:22:0;::::1;25371:73;;;;-1:-1:-1::0;;;25371:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25481:6;::::0;25460:38:::1;::::0;-1:-1:-1;;;;;25460:38:0;;::::1;::::0;25481:6:::1;::::0;::::1;;::::0;25460:38:::1;::::0;;;::::1;25509:6;:17:::0;;-1:-1:-1;;;;;25509:17:0;;::::1;;;-1:-1:-1::0;;;;;;25509:17:0;;::::1;::::0;;;::::1;::::0;;25290:244::o;6483:179::-;6541:7;6573:5;;;6597:6;;;;6589:46;;;;;-1:-1:-1;;;6589:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:1;6483:179;-1:-1:-1;;;6483:179:0:o;642:106::-;730:10;642:106;:::o;20645:346::-;-1:-1:-1;;;;;20747:19:0;;20739:68;;;;-1:-1:-1;;;20739:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20826:21:0;;20818:68;;;;-1:-1:-1;;;20818:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20899:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20951:32;;;;;;;;;;;;;;;;;20645:346;;;:::o;29614:1252::-;-1:-1:-1;;;;;29737:20:0;;29729:70;;;;-1:-1:-1;;;29729:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29814:23:0;;29806:71;;;;-1:-1:-1;;;29806:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29940:23:0;;29886:15;29940:23;;;:15;:23;;;;;;29886:15;;29940:23;;29936:171;;;29984:7;;29974:17;;29936:171;;;-1:-1:-1;;;;;30009:26:0;;;;;;:15;:26;;;;;;;;30005:102;;;-1:-1:-1;;30056:8:0;;30087:12;;30005:102;-1:-1:-1;;;;;30128:25:0;;;;;;:17;:25;;;;;;;;;:57;;-1:-1:-1;;;;;;30157:28:0;;;;;;:17;:28;;;;;;;;30128:57;30127:127;;;-1:-1:-1;;;;;;30199:23:0;;;;;;:15;:23;;;;;;;;30198:24;:55;;;;-1:-1:-1;;;;;;30227:26:0;;;;;;:15;:26;;;;;;;;30226:27;30198:55;30115:199;;;-1:-1:-1;30281:1:0;;-1:-1:-1;30281:1:0;30115:199;30322:21;30346:30;30370:5;30346:19;:6;30357:7;30346:10;:19::i;:::-;:23;;:30::i;:::-;30322:54;-1:-1:-1;30383:25:0;30411:34;30439:5;30411:23;:6;30422:11;30411:10;:23::i;:34::-;30383:62;-1:-1:-1;30458:17:0;;30454:154;;30486:28;30492:6;30500:13;30486:5;:28::i;:::-;30532:25;:6;30543:13;30532:10;:25::i;:::-;30523:34;;30454:154;30620:21;;30616:194;;30676:10;;30652:54;;30668:6;;-1:-1:-1;;;;;30676:10:0;30688:17;30652:15;:54::i;:::-;30726:29;:6;30737:17;30726:10;:29::i;:::-;30717:38;;30616:194;30818:42;30834:6;30842:9;30853:6;30818:15;:42::i;:::-;29614:1252;;;;;;;:::o;9310:166::-;9396:7;9432:12;9424:6;;;;9416:29;;;;-1:-1:-1;;;9416:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;9463:5:0;;;9310:166::o;19078:378::-;-1:-1:-1;;;;;19162:21:0;;19154:65;;;;;-1:-1:-1;;;19154:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19232:49;19261:1;19265:7;19274:6;19232:20;:49::i;:::-;19309:12;;:24;;19326:6;19309:16;:24::i;:::-;19294:12;:39;-1:-1:-1;;;;;19365:18:0;;:9;:18;;;;;;;;;;;:30;;19388:6;19365:22;:30::i;:::-;-1:-1:-1;;;;;19344:18:0;;:9;:18;;;;;;;;;;;:51;;;;19411:37;;;;;;;19344:18;;:9;;19411:37;;;;;;;;;;19078:378;;:::o;29377:151::-;29450:28;29462:7;29471:6;29450:11;:28::i;:::-;29499:11;;:23;;29515:6;29499:15;:23::i;:::-;29485:11;:37;-1:-1:-1;;29377:151:0:o;7362:220::-;7420:7;7444:6;7440:20;;-1:-1:-1;7459:1:0;7452:8;;7440:20;7483:5;;;7487:1;7483;:5;:1;7507:5;;;;;:10;7499:56;;;;-1:-1:-1;;;7499:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8060:153;8118:7;8150:1;8146;:5;8138:44;;;;;-1:-1:-1;;;8138:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;8204:1;8200;:5;;;;;;;8060:153;-1:-1:-1;;;8060:153:0:o;6945:158::-;7003:7;7036:1;7031;:6;;7023:49;;;;;-1:-1:-1;;;7023:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7090:5:0;;;6945:158::o;18257:539::-;-1:-1:-1;;;;;18363:20:0;;18355:70;;;;-1:-1:-1;;;18355:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18444:23:0;;18436:71;;;;-1:-1:-1;;;18436:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18520:47;18541:6;18549:9;18560:6;18520:20;:47::i;:::-;18600:71;18622:6;18600:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18600:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18580:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18705:20;;;;;;;:32;;18730:6;18705:24;:32::i;:::-;-1:-1:-1;;;;;18682:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18753:35;;;;;;;18682:20;;18753:35;;;;;;;;;;;;;18257:539;;;:::o;19789:418::-;-1:-1:-1;;;;;19873:21:0;;19865:67;;;;-1:-1:-1;;;19865:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19945:49;19966:7;19983:1;19987:6;19945:20;:49::i;:::-;20028:68;20051:6;20028:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20028:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;20007:18:0;;:9;:18;;;;;;;;;;:89;20122:12;;:24;;20139:6;20122:16;:24::i;:::-;20107:12;:39;20162:37;;;;;;;;20188:1;;-1:-1:-1;;;;;20162:37:0;;;;;;;;;;;;19789:418;;:::o

Swarm Source

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