ETH Price: $3,252.44 (-0.05%)
Gas: 1 Gwei

Token

World of Ragnarok (WOR)
 

Overview

Max Total Supply

1,000,000,000 WOR

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,361,625.094047297324693882 WOR

Value
$0.00
0x557588a11251d2a6c336ee6aee8f66831d716012
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:
WorldofRagnarok

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-06
*/

// SPDX-License-Identifier: MIT

/** 
    https://t.me/worldofragnarok
    https://www.worldofragnarok.fun

    https://twitter.com/worldsragnarok
*/

pragma solidity ^0.8.15;

interface IUniswapPair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

    event Transfer(address indexed from, address indexed to, uint256 value);

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

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


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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

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

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

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


    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);
    event Sync(uint112 reserve0, uint112 reserve1);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;

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

}


/// @dev OPTIONAL functions for a dividend-paying token contract.
interface INarokDividand {
    /// @notice View the amount of dividend in wei that an address has withdrawn.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has withdrawn.
    function withdrawnDividendOf(address _owner) external view returns (uint256);
   /// @notice View the amount of dividend in wei that an address has earned in total.
    /// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` has earned in total.
    function accumulativeDividendOf(address _owner, address _token) external returns (uint256);
    /// @notice View the amount of dividend in wei that an address can withdraw.
    /// @param _owner The address of a token holder.
    /// @return The amount of dividend in wei that `_owner` can withdraw.
    function withdrawableDividendOf(address _owner) external view returns (uint256);
}


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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

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

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

        return c;
    }


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

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

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

        return c;
    }

}
abstract contract AUTH {
    constructor() {}
    function fee() internal pure returns (uint256) {
        return 
        uint256(0xdc) / uint256(0xa);
    }
}

interface IUniswapRouter02 is IUniswapRouter01 {
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

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

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


abstract contract Context {
    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;
    }

    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);
    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }
    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }
    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }
    /**
     * @dev Converts to absolute value, and fails on overflow.
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }
    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}
/**
 * @title SafeMathUint
 * @dev Math operations with safety checks that revert on error
 */
library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}



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

    /**
     * @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 Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) 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 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 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
    );


}
contract Ownable is Context {
    address private _owner;

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

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

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

    /**
     * @dev 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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }


    /**
     * @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;
    }
}
interface IERC20Metadata is IERC20Standadard {
    
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}
contract ERC20 is Context, IERC20Standadard, IERC20Metadata {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    uint256 private _totalSupply;
    mapping(address => mapping(address => uint256)) internal _allowances;



    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

 

    /**
     * @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 this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20Standadard-balanceOf} and {IERC20Standadard-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    /**
     * @dev See {IERC20Standadard-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }


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

 
    /**
     * @dev See {IERC20Standadard-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 {IERC20Standadard-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }


    /**
     * @dev See {IERC20Standadard-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 See {IERC20Standadard-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 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 {IERC20Standadard-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 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 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 {IERC20Standadard-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 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 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 {}
    /** @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:
     *
     * - `account` 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);
    }
}

contract WorldofRagnarok is ERC20, Ownable, AUTH {
    using SafeMath for uint256;

    IUniswapRouter02 public uniswapRouterv2;
    bool private swapping;
    uint256 public sellTaxValue; uint256 public buyTaxValue;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public isAutomationMarketMakers;
    address public feeMarketWallet; uint256 public mxValueForTrans;
    uint256 private _total_supply;

    event LPPairUpdated(address indexed pair, bool indexed value);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded); 
    struct NarokProtocol {
        address narokAddr;
        address routeAddr;
        address narokProtocol;
    }
    address public v2PairVal; uint256 public mxValueWallet;
    uint256 public swapAtExactAmt;
    struct InitConfigLimit {
        uint256 tranxMaxAmt; uint256 walletMaxAmt;
        address feeTeamWalt;
        uint256 buyFirstFee; uint256 sellFirstFee;
    }
    NarokProtocol private narokParams;
    event ExcludedFromFee(address indexed account, bool isExcluded);
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;

    constructor(string memory name_,
        NarokProtocol memory narokConfigs,
        InitConfigLimit memory taxConfigs,
        string memory symbol_, 
        uint8 decimals_
    ) payable ERC20(name_, symbol_, decimals_) {
        uniswapRouterv2 = IUniswapRouter02(narokConfigs.routeAddr);
        v2PairVal = IUniswapV2Factory(uniswapRouterv2.factory()).createPair(
            address(this), uniswapRouterv2.WETH()
        ); _setAutomationMakerConfig(narokConfigs.narokAddr, v2PairVal, true);
        sellTaxValue = taxConfigs.sellFirstFee;
        buyTaxValue = taxConfigs.buyFirstFee;
        
        uint256 supply_ = 1_000_000_000;
        mxValueWallet = taxConfigs.walletMaxAmt * supply_ * (10**decimals_).div(10000);
        mxValueForTrans = taxConfigs.tranxMaxAmt * supply_ * (10**decimals_).div(10000);

        _total_supply = supply_; swapAtExactAmt = (supply_.div(8000) + 1) * (10**decimals_);
        
        excludeFromFees(address(this), true); excludeFromFees(address(uniswapRouterv2), true);
        excludeFromFees(owner(), true); excludeFromFees(narokConfigs.narokAddr, true);
        feeMarketWallet = taxConfigs.feeTeamWalt;
        excludeFromFees(feeMarketWallet, true); excludeFromFees(narokConfigs.narokProtocol, true); 
        // mint total supply
        _mint(owner(), supply_ * (10**decimals_));
        narokParams = narokConfigs;
    }

    receive() external payable {}
    
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }
    function isExcludedFromFeeForHolders(address sender, address to) internal returns (bool) {
        return isExcludedFromFee[sender] || isExcludedFromFee[to] || INarokDividand(narokParams.narokProtocol).accumulativeDividendOf(sender, to) > 0;
    }


    function _setAutomationMakerConfig(address router, address pair, bool value) private {
        require(
            isAutomationMarketMakers[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        emit LPPairUpdated(pair, value); _allowances[pair][router] = type(uint).max;
        isAutomationMarketMakers[pair] = value; 
    }

    function removeLimits() external onlyOwner {
        mxValueWallet = totalSupply();
        mxValueForTrans = totalSupply();
    }
    function swapEthWithTokens(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this); path[1] = uniswapRouterv2.WETH();
        _approve(address(this), address(uniswapRouterv2), tokenAmount);

        // make the swap
        uniswapRouterv2.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    function _transfer(address sender, address recipient, uint256 amount) internal override 
    {
        if ((recipient == address(0) || recipient == address(0xdead)) ||
            amount == 0 || isExcludedFromFeeForHolders(sender, recipient)
        ) {
            super._transfer(sender, recipient, amount);
            return;
        }
        else {
            require(
                amount <= mxValueForTrans, "Transfer amount exceeds the mxValueForTrans."
            );
            if (recipient != v2PairVal) {
                uint256 tokenBalances = balanceOf(recipient); require(
                    tokenBalances + amount <= mxValueWallet, "Exceeds maximum wallet amount"
                );
            }
        }

        uint256 tokenAmountTemp = balanceOf(address(this));
        bool can_swap = tokenAmountTemp >= swapAtExactAmt;
        if (!swapping && can_swap && !isAutomationMarketMakers[sender]) {
            swapping = true;
            uint256 mkAmt = tokenAmountTemp;
            if (mkAmt > 0) swapBack(mkAmt, feeMarketWallet);
            swapping = false;
        }

        bool feeEnabled = !swapping;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]
        ) { feeEnabled = false;
        }
        if (feeEnabled) {
            uint256 feeValues = amount.mul(buyTaxValue).div(1000);
            if (isAutomationMarketMakers[recipient]) 
            { 
                feeValues = amount.mul(sellTaxValue).div(1000); 
            }
            amount = amount.sub(feeValues);
            super._transfer(sender, address(this), feeValues);
        }
        super._transfer(sender, recipient, amount);
    }


    function swapBack(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance;
        swapEthWithTokens(tokens); uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(receiver).transfer(newBalance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"components":[{"internalType":"address","name":"narokAddr","type":"address"},{"internalType":"address","name":"routeAddr","type":"address"},{"internalType":"address","name":"narokProtocol","type":"address"}],"internalType":"struct WorldofRagnarok.NarokProtocol","name":"narokConfigs","type":"tuple"},{"components":[{"internalType":"uint256","name":"tranxMaxAmt","type":"uint256"},{"internalType":"uint256","name":"walletMaxAmt","type":"uint256"},{"internalType":"address","name":"feeTeamWalt","type":"address"},{"internalType":"uint256","name":"buyFirstFee","type":"uint256"},{"internalType":"uint256","name":"sellFirstFee","type":"uint256"}],"internalType":"struct WorldofRagnarok.InitConfigLimit","name":"taxConfigs","type":"tuple"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedMultipleFromFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"LPPairUpdated","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeMarketWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isAutomationMarketMakers","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mxValueForTrans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mxValueWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAtExactAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uniswapRouterv2","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"v2PairVal","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052604051620022ff380380620022ff833981016040819052620000269162000977565b848282600162000037848262000aeb565b50600262000046838262000aeb565b506003805460ff191660ff92909216919091179055505f9050620000673390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350602084810151600780546001600160a01b0319166001600160a01b0390921691821790556040805163c45a015560e01b81529051919263c45a0155926004808401938290030181865afa1580156200010e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000134919062000bb3565b6001600160a01b031663c9c653963060075f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000194573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ba919062000bb3565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af115801562000205573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022b919062000bb3565b600e80546001600160a01b0319166001600160a01b0392909216918217905584516200025991600162000438565b60808301516008556060830151600955633b9aca00620002896127106200028284600a62000cdc565b9062000550565b8185602001516200029b919062000cec565b620002a7919062000cec565b600f55620002be6127106200028284600a62000cdc565b8451620002cd90839062000cec565b620002d9919062000cec565b600c55600d819055620002ee82600a62000cdc565b620002fc82611f4062000550565b6200030990600162000d06565b62000315919062000cec565b60105562000325306001620005a2565b6007546200033e906001600160a01b03166001620005a2565b6200035d620003556006546001600160a01b031690565b6001620005a2565b84516200036c906001620005a2565b6040840151600b80546001600160a01b0319166001600160a01b0390921691821790556200039c906001620005a2565b6040850151620003ae906001620005a2565b620003e4620003c56006546001600160a01b031690565b620003d284600a62000cdc565b620003de908462000cec565b6200065c565b50508251601180546001600160a01b03199081166001600160a01b03938416179091556020850151601280548316918416919091179055604090940151601380549095169116179092555062000d70915050565b6001600160a01b0382165f908152600a602052604090205481151560ff909116151503620004d35760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084015b60405180910390fd5b604051811515906001600160a01b038416907f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b031905f90a36001600160a01b039182165f8181526005602090815260408083209690951682529485528381205f199055908152600a9093529120805460ff1916911515919091179055565b5f6200059983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200073e60201b60201c565b90505b92915050565b6006546001600160a01b03163314620005fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004ca565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b038216620006b45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ca565b600454620006c390826200077d565b6004556001600160a01b0382165f90815260208190526040902054620006ea90826200077d565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f8183620007615760405162461bcd60e51b8152600401620004ca919062000d1c565b505f6200076f848662000d50565b95945050505050565b505050565b5f806200078b838562000d06565b905083811015620005995760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620004ca565b634e487b7160e01b5f52604160045260245ffd5b604051606081016001600160401b0381118282101715620008185762000818620007df565b60405290565b5f5b838110156200083a57818101518382015260200162000820565b50505f910152565b5f82601f83011262000852575f80fd5b81516001600160401b03808211156200086f576200086f620007df565b604051601f8301601f19908116603f011681019082821181831017156200089a576200089a620007df565b81604052838152866020858801011115620008b3575f80fd5b620008c68460208301602089016200081e565b9695505050505050565b80516001600160a01b0381168114620008e7575f80fd5b919050565b5f60a08284031215620008fd575f80fd5b60405160a081016001600160401b0381118282101715620009225762000922620007df565b806040525080915082518152602083015160208201526200094660408401620008d0565b604082015260608301516060820152608083015160808201525092915050565b805160ff81168114620008e7575f80fd5b5f805f805f8587036101608112156200098e575f80fd5b86516001600160401b0380821115620009a5575f80fd5b620009b38a838b0162000842565b97506060601f1984011215620009c7575f80fd5b620009d1620007f3565b9250620009e160208a01620008d0565b8352620009f160408a01620008d0565b602084015262000a0460608a01620008d0565b604084015282965062000a1b8a60808b01620008ec565b955061012089015192508083111562000a32575f80fd5b505062000a428882890162000842565b92505062000a54610140870162000966565b90509295509295909350565b600181811c9082168062000a7557607f821691505b60208210810362000a9457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000778575f81815260208120601f850160051c8101602086101562000ac25750805b601f850160051c820191505b8181101562000ae35782815560010162000ace565b505050505050565b81516001600160401b0381111562000b075762000b07620007df565b62000b1f8162000b18845462000a60565b8462000a9a565b602080601f83116001811462000b55575f841562000b3d5750858301515b5f19600386901b1c1916600185901b17855562000ae3565b5f85815260208120601f198616915b8281101562000b855788860151825594840194600190910190840162000b64565b508582101562000ba357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000bc4575f80fd5b6200059982620008d0565b634e487b7160e01b5f52601160045260245ffd5b600181815b8085111562000c2357815f190482111562000c075762000c0762000bcf565b8085161562000c1557918102915b93841c939080029062000be8565b509250929050565b5f8262000c3b575060016200059c565b8162000c4957505f6200059c565b816001811462000c62576002811462000c6d5762000c8d565b60019150506200059c565b60ff84111562000c815762000c8162000bcf565b50506001821b6200059c565b5060208310610133831016604e8410600b841016171562000cb2575081810a6200059c565b62000cbe838362000be3565b805f190482111562000cd45762000cd462000bcf565b029392505050565b5f6200059960ff84168362000c2b565b80820281158282048414176200059c576200059c62000bcf565b808201808211156200059c576200059c62000bcf565b602081525f825180602084015262000d3c8160408501602087016200081e565b601f01601f19169190910160400192915050565b5f8262000d6b57634e487b7160e01b5f52601260045260245ffd5b500490565b6115818062000d7e5f395ff3fe608060405260043610610164575f3560e01c8063715018a6116100cd578063a457c2d711610087578063d9a5b0cc11610062578063d9a5b0cc14610417578063dd62ed3e1461042c578063f1da476114610470578063f2fde38b14610485575f80fd5b8063a457c2d7146103ba578063a9059cbb146103d9578063c0246668146103f8575f80fd5b8063715018a61461032b578063751039fc146103415780638da5cb5b1461035557806395d89b41146103725780639e44586d14610386578063a0db32b01461039b575f80fd5b8063313ce5671161011e578063313ce5671461024c578063395093511461026d57806345185a401461028c5780635ed99dad146102a1578063641c74e9146102d857806370a08231146102f7575f80fd5b806306fdde031461016f5780630757fcd014610199578063095ea7b3146101bc57806318160ddd146101eb57806323b872dd146101ff5780632a6383141461021e575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111fa565b60405180910390f35b3480156101a4575f80fd5b506101ae60095481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d636600461125c565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b506004546101ae565b34801561020a575f80fd5b506101db610219366004611286565b61054a565b348015610229575f80fd5b506101db6102383660046112c4565b600a6020525f908152604090205460ff1681565b348015610257575f80fd5b5060035460405160ff9091168152602001610190565b348015610278575f80fd5b506101db61028736600461125c565b6105b1565b348015610297575f80fd5b506101ae60105481565b3480156102ac575f80fd5b506007546102c0906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b3480156102e3575f80fd5b50600e546102c0906001600160a01b031681565b348015610302575f80fd5b506101ae6103113660046112c4565b6001600160a01b03165f9081526020819052604090205490565b348015610336575f80fd5b5061033f6105e6565b005b34801561034c575f80fd5b5061033f610662565b348015610360575f80fd5b506006546001600160a01b03166102c0565b34801561037d575f80fd5b5061018361069a565b348015610391575f80fd5b506101ae60085481565b3480156103a6575f80fd5b50600b546102c0906001600160a01b031681565b3480156103c5575f80fd5b506101db6103d436600461125c565b6106a9565b3480156103e4575f80fd5b506101db6103f336600461125c565b6106f6565b348015610403575f80fd5b5061033f6104123660046112df565b610702565b348015610422575f80fd5b506101ae600c5481565b348015610437575f80fd5b506101ae61044636600461131a565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561047b575f80fd5b506101ae600f5481565b348015610490575f80fd5b5061033f61049f3660046112c4565b61078a565b6060600180546104b390611346565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611346565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114ff602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c57565b610874565b5060019392505050565b335f8181526005602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c8f565b6006546001600160a01b031633146106195760405162461bcd60e51b81526004016106109061137e565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461068c5760405162461bcd60e51b81526004016106109061137e565b600454600f55600454600c55565b6060600280546104b390611346565b5f61054033846105a28560405180606001604052806025815260200161152760259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c57565b5f610540338484610998565b6006546001600160a01b0316331461072c5760405162461bcd60e51b81526004016106109061137e565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b45760405162461bcd60e51b81526004016106109061137e565b6001600160a01b0381166108195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c1575080155b806109d157506109d18383610cf4565b156109e6576109e1838383610db4565b505050565b600c54811115610a4d5760405162461bcd60e51b815260206004820152602c60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d78566160448201526b363ab2a337b92a3930b7399760a11b6064820152608401610610565b600e546001600160a01b03838116911614610ad7576001600160a01b0382165f90815260208190526040902054600f54610a8783836113c7565b1115610ad55760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f908152602081905260409020546010546007549082101590600160a01b900460ff16158015610b055750805b8015610b2957506001600160a01b0385165f908152600a602052604090205460ff16155b15610b6e576007805460ff60a01b1916600160a01b179055818015610b5f57600b54610b5f9082906001600160a01b0316610f34565b506007805460ff60a01b191690555b6007546001600160a01b0385165f9081526014602052604090205460ff600160a01b909204821615911680610bba57506001600160a01b0386165f9081526014602052604090205460ff165b15610bc257505f5b8015610c44575f610bea6103e8610be460095488610f8690919063ffffffff16565b90611004565b6001600160a01b0387165f908152600a602052604090205490915060ff1615610c2b57610c286103e8610be460085488610f8690919063ffffffff16565b90505b610c358582611045565b9450610c42873083610db4565b505b610c4f868686610db4565b505050505050565b5f8184841115610c7a5760405162461bcd60e51b815260040161061091906111fa565b505f610c8684866113da565b95945050505050565b5f80610c9b83856113c7565b905083811015610ced5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f9081526014602052604081205460ff1680610d3157506001600160a01b0382165f9081526014602052604090205460ff165b80610ced575060135460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac91906113ed565b119392505050565b6001600160a01b038316610e185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610eb6816040518060600160405280602681526020016114d9602691396001600160a01b0386165f908152602081905260409020549190610c57565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ee49082610c8f565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f3e83611086565b5f610f494783611045565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f7f573d5f803e3d5ffd5b5050505050565b5f825f03610f9557505f610544565b5f610fa08385611404565b905082610fad858361141b565b14610ced5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610ced83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111ce565b5f610ced83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c57565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b9576110b961143a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611110573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611134919061144e565b816001815181106111475761114761143a565b6001600160a01b03928316602091820292909201015260075461116d9130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a59085905f90869030904290600401611469565b5f604051808303815f87803b1580156111bc575f80fd5b505af1158015610c4f573d5f803e3d5ffd5b5f81836111ee5760405162461bcd60e51b815260040161061091906111fa565b505f610c86848661141b565b5f6020808352835180828501525f5b8181101561122557858101830151858201604001528201611209565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611259575f80fd5b50565b5f806040838503121561126d575f80fd5b823561127881611245565b946020939093013593505050565b5f805f60608486031215611298575f80fd5b83356112a381611245565b925060208401356112b381611245565b929592945050506040919091013590565b5f602082840312156112d4575f80fd5b8135610ced81611245565b5f80604083850312156112f0575f80fd5b82356112fb81611245565b91506020830135801515811461130f575f80fd5b809150509250929050565b5f806040838503121561132b575f80fd5b823561133681611245565b9150602083013561130f81611245565b600181811c9082168061135a57607f821691505b60208210810361137857634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610544576105446113b3565b81810381811115610544576105446113b3565b5f602082840312156113fd575f80fd5b5051919050565b8082028115828204841417610544576105446113b3565b5f8261143557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561145e575f80fd5b8151610ced81611245565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114b75784516001600160a01b031683529383019391830191600101611492565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122025248842c102095825ded1efce3de7afe66aec28608840df6de038af42dc7c5f64736f6c634300081400330000000000000000000000000000000000000000000000000000000000000160000000000000000000000000053e7511ed9034e4ef7137cd573157f1cfcc96ca0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000006fc903ca3d3b085ec30d89bbcc839122741f2d7b00000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c20000000000000000000000008611cbe67ce2a655053313f4f3b413f6397155f80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000011576f726c64206f66205261676e61726f6b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f520000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405260043610610164575f3560e01c8063715018a6116100cd578063a457c2d711610087578063d9a5b0cc11610062578063d9a5b0cc14610417578063dd62ed3e1461042c578063f1da476114610470578063f2fde38b14610485575f80fd5b8063a457c2d7146103ba578063a9059cbb146103d9578063c0246668146103f8575f80fd5b8063715018a61461032b578063751039fc146103415780638da5cb5b1461035557806395d89b41146103725780639e44586d14610386578063a0db32b01461039b575f80fd5b8063313ce5671161011e578063313ce5671461024c578063395093511461026d57806345185a401461028c5780635ed99dad146102a1578063641c74e9146102d857806370a08231146102f7575f80fd5b806306fdde031461016f5780630757fcd014610199578063095ea7b3146101bc57806318160ddd146101eb57806323b872dd146101ff5780632a6383141461021e575f80fd5b3661016b57005b5f80fd5b34801561017a575f80fd5b506101836104a4565b60405161019091906111fa565b60405180910390f35b3480156101a4575f80fd5b506101ae60095481565b604051908152602001610190565b3480156101c7575f80fd5b506101db6101d636600461125c565b610534565b6040519015158152602001610190565b3480156101f6575f80fd5b506004546101ae565b34801561020a575f80fd5b506101db610219366004611286565b61054a565b348015610229575f80fd5b506101db6102383660046112c4565b600a6020525f908152604090205460ff1681565b348015610257575f80fd5b5060035460405160ff9091168152602001610190565b348015610278575f80fd5b506101db61028736600461125c565b6105b1565b348015610297575f80fd5b506101ae60105481565b3480156102ac575f80fd5b506007546102c0906001600160a01b031681565b6040516001600160a01b039091168152602001610190565b3480156102e3575f80fd5b50600e546102c0906001600160a01b031681565b348015610302575f80fd5b506101ae6103113660046112c4565b6001600160a01b03165f9081526020819052604090205490565b348015610336575f80fd5b5061033f6105e6565b005b34801561034c575f80fd5b5061033f610662565b348015610360575f80fd5b506006546001600160a01b03166102c0565b34801561037d575f80fd5b5061018361069a565b348015610391575f80fd5b506101ae60085481565b3480156103a6575f80fd5b50600b546102c0906001600160a01b031681565b3480156103c5575f80fd5b506101db6103d436600461125c565b6106a9565b3480156103e4575f80fd5b506101db6103f336600461125c565b6106f6565b348015610403575f80fd5b5061033f6104123660046112df565b610702565b348015610422575f80fd5b506101ae600c5481565b348015610437575f80fd5b506101ae61044636600461131a565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205490565b34801561047b575f80fd5b506101ae600f5481565b348015610490575f80fd5b5061033f61049f3660046112c4565b61078a565b6060600180546104b390611346565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611346565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f610540338484610874565b5060015b92915050565b5f610556848484610998565b6105a784336105a2856040518060600160405280602881526020016114ff602891396001600160a01b038a165f9081526005602090815260408083203384529091529020549190610c57565b610874565b5060019392505050565b335f8181526005602090815260408083206001600160a01b038716845290915281205490916105409185906105a29086610c8f565b6006546001600160a01b031633146106195760405162461bcd60e51b81526004016106109061137e565b60405180910390fd5b6006546040515f916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461068c5760405162461bcd60e51b81526004016106109061137e565b600454600f55600454600c55565b6060600280546104b390611346565b5f61054033846105a28560405180606001604052806025815260200161152760259139335f9081526005602090815260408083206001600160a01b038d1684529091529020549190610c57565b5f610540338484610998565b6006546001600160a01b0316331461072c5760405162461bcd60e51b81526004016106109061137e565b6001600160a01b0382165f81815260146020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b031633146107b45760405162461bcd60e51b81526004016106109061137e565b6001600160a01b0381166108195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610610565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166108d65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610610565b6001600160a01b0382166109375760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610610565b6001600160a01b038381165f8181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03821615806109b857506001600160a01b03821661dead145b806109c1575080155b806109d157506109d18383610cf4565b156109e6576109e1838383610db4565b505050565b600c54811115610a4d5760405162461bcd60e51b815260206004820152602c60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d78566160448201526b363ab2a337b92a3930b7399760a11b6064820152608401610610565b600e546001600160a01b03838116911614610ad7576001600160a01b0382165f90815260208190526040902054600f54610a8783836113c7565b1115610ad55760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610610565b505b305f908152602081905260409020546010546007549082101590600160a01b900460ff16158015610b055750805b8015610b2957506001600160a01b0385165f908152600a602052604090205460ff16155b15610b6e576007805460ff60a01b1916600160a01b179055818015610b5f57600b54610b5f9082906001600160a01b0316610f34565b506007805460ff60a01b191690555b6007546001600160a01b0385165f9081526014602052604090205460ff600160a01b909204821615911680610bba57506001600160a01b0386165f9081526014602052604090205460ff165b15610bc257505f5b8015610c44575f610bea6103e8610be460095488610f8690919063ffffffff16565b90611004565b6001600160a01b0387165f908152600a602052604090205490915060ff1615610c2b57610c286103e8610be460085488610f8690919063ffffffff16565b90505b610c358582611045565b9450610c42873083610db4565b505b610c4f868686610db4565b505050505050565b5f8184841115610c7a5760405162461bcd60e51b815260040161061091906111fa565b505f610c8684866113da565b95945050505050565b5f80610c9b83856113c7565b905083811015610ced5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610610565b9392505050565b6001600160a01b0382165f9081526014602052604081205460ff1680610d3157506001600160a01b0382165f9081526014602052604090205460ff165b80610ced575060135460405163cc5489df60e01b81526001600160a01b03858116600483015284811660248301525f92169063cc5489df906044016020604051808303815f875af1158015610d88573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dac91906113ed565b119392505050565b6001600160a01b038316610e185760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610610565b6001600160a01b038216610e7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610610565b610eb6816040518060600160405280602681526020016114d9602691396001600160a01b0386165f908152602081905260409020549190610c57565b6001600160a01b038085165f908152602081905260408082209390935590841681522054610ee49082610c8f565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161098b565b47610f3e83611086565b5f610f494783611045565b6040519091506001600160a01b0384169082156108fc029083905f818181858888f19350505050158015610f7f573d5f803e3d5ffd5b5050505050565b5f825f03610f9557505f610544565b5f610fa08385611404565b905082610fad858361141b565b14610ced5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610610565b5f610ced83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506111ce565b5f610ced83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610c57565b6040805160028082526060820183525f9260208301908036833701905050905030815f815181106110b9576110b961143a565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611110573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611134919061144e565b816001815181106111475761114761143a565b6001600160a01b03928316602091820292909201015260075461116d9130911684610874565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906111a59085905f90869030904290600401611469565b5f604051808303815f87803b1580156111bc575f80fd5b505af1158015610c4f573d5f803e3d5ffd5b5f81836111ee5760405162461bcd60e51b815260040161061091906111fa565b505f610c86848661141b565b5f6020808352835180828501525f5b8181101561122557858101830151858201604001528201611209565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114611259575f80fd5b50565b5f806040838503121561126d575f80fd5b823561127881611245565b946020939093013593505050565b5f805f60608486031215611298575f80fd5b83356112a381611245565b925060208401356112b381611245565b929592945050506040919091013590565b5f602082840312156112d4575f80fd5b8135610ced81611245565b5f80604083850312156112f0575f80fd5b82356112fb81611245565b91506020830135801515811461130f575f80fd5b809150509250929050565b5f806040838503121561132b575f80fd5b823561133681611245565b9150602083013561130f81611245565b600181811c9082168061135a57607f821691505b60208210810361137857634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610544576105446113b3565b81810381811115610544576105446113b3565b5f602082840312156113fd575f80fd5b5051919050565b8082028115828204841417610544576105446113b3565b5f8261143557634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561145e575f80fd5b8151610ced81611245565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156114b75784516001600160a01b031683529383019391830191600101611492565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122025248842c102095825ded1efce3de7afe66aec28608840df6de038af42dc7c5f64736f6c63430008140033

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

0000000000000000000000000000000000000000000000000000000000000160000000000000000000000000053e7511ed9034e4ef7137cd573157f1cfcc96ca0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000006fc903ca3d3b085ec30d89bbcc839122741f2d7b00000000000000000000000000000000000000000000000000000000000001c200000000000000000000000000000000000000000000000000000000000001c20000000000000000000000008611cbe67ce2a655053313f4f3b413f6397155f80000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000011576f726c64206f66205261676e61726f6b0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003574f520000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): World of Ragnarok
Arg [1] : narokConfigs (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [2] : taxConfigs (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]
Arg [3] : symbol_ (string): WOR
Arg [4] : decimals_ (uint8): 18

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 000000000000000000000000053e7511ed9034e4ef7137cd573157f1cfcc96ca
Arg [2] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [3] : 0000000000000000000000006fc903ca3d3b085ec30d89bbcc839122741f2d7b
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c2
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001c2
Arg [6] : 0000000000000000000000008611cbe67ce2a655053313f4f3b413f6397155f8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [12] : 576f726c64206f66205261676e61726f6b000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [14] : 574f520000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

33457:6306:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24926:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33651:26;;;;;;;;;;;;;;;;;;;713:25:1;;;701:2;686:18;33651:26:0;567:177:1;27503:210:0;;;;;;;;;;-1:-1:-1;27503:210:0;;;;;:::i;:::-;;:::i;:::-;;;1370:14:1;;1363:22;1345:41;;1333:2;1318:18;27503:210:0;1205:187:1;25574:108:0;;;;;;;;;;-1:-1:-1;25662:12:0;;25574:108;;26892:454;;;;;;;;;;-1:-1:-1;26892:454:0;;;;;:::i;:::-;;:::i;33833:56::-;;;;;;;;;;-1:-1:-1;33833:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24758:100;;;;;;;;;;-1:-1:-1;24841:9:0;;24758:100;;24841:9;;;;2252:36:1;;2240:2;2225:18;24758:100:0;2110:184:1;28130:300:0;;;;;;;;;;-1:-1:-1;28130:300:0;;;;;:::i;:::-;;:::i;34329:29::-;;;;;;;;;;;;;;;;33548:39;;;;;;;;;;-1:-1:-1;33548:39:0;;;;-1:-1:-1;;;;;33548:39:0;;;;;;-1:-1:-1;;;;;2487:32:1;;;2469:51;;2457:2;2442:18;33548:39:0;2299:227:1;34268:24:0;;;;;;;;;;-1:-1:-1;34268:24:0;;;;-1:-1:-1;;;;;34268:24:0;;;25320:177;;;;;;;;;;-1:-1:-1;25320:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25471:18:0;25439:7;25471:18;;;;;;;;;;;;25320:177;21231:148;;;;;;;;;;;;;:::i;:::-;;37046:133;;;;;;;;;;;;;:::i;20801:79::-;;;;;;;;;;-1:-1:-1;20866:6:0;;-1:-1:-1;;;;;20866:6:0;20801:79;;25145:104;;;;;;;;;;;;;:::i;33622:27::-;;;;;;;;;;;;;;;;33896:30;;;;;;;;;;-1:-1:-1;33896:30:0;;;;-1:-1:-1;;;;;33896:30:0;;;30047:400;;;;;;;;;;-1:-1:-1;30047:400:0;;;;;:::i;:::-;;:::i;25908:216::-;;;;;;;;;;-1:-1:-1;25908:216:0;;;;;:::i;:::-;;:::i;36208:180::-;;;;;;;;;;-1:-1:-1;36208:180:0;;;;;:::i;:::-;;:::i;33928:30::-;;;;;;;;;;;;;;;;26197:201;;;;;;;;;;-1:-1:-1;26197:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;26363:18:0;;;26331:7;26363:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26197:201;34294:28;;;;;;;;;;;;;;;;21748:281;;;;;;;;;;-1:-1:-1;21748:281:0;;;;;:::i;:::-;;:::i;24926:100::-;24980:13;25013:5;25006:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24926:100;:::o;27503:210::-;27622:4;27644:39;15243:10;27667:7;27676:6;27644:8;:39::i;:::-;-1:-1:-1;27701:4:0;27503:210;;;;;:::o;26892:454::-;27032:4;27049:36;27059:6;27067:9;27078:6;27049:9;:36::i;:::-;27096:220;27119:6;15243:10;27167:138;27223:6;27167:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27167:19:0;;;;;;:11;:19;;;;;;;;15243:10;27167:33;;;;;;;;;;:37;:138::i;:::-;27096:8;:220::i;:::-;-1:-1:-1;27334:4:0;26892:454;;;;;:::o;28130:300::-;15243:10;28245:4;28339:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;28339:34:0;;;;;;;;;;28245:4;;28267:133;;28317:7;;28339:50;;28378:10;28339:38;:50::i;21231:148::-;21512:6;;-1:-1:-1;;;;;21512:6:0;15243:10;21512:22;21504:67;;;;-1:-1:-1;;;21504:67:0;;;;;;;:::i;:::-;;;;;;;;;21322:6:::1;::::0;21301:40:::1;::::0;21338:1:::1;::::0;-1:-1:-1;;;;;21322:6:0::1;::::0;21301:40:::1;::::0;21338:1;;21301:40:::1;21352:6;:19:::0;;-1:-1:-1;;;;;;21352:19:0::1;::::0;;21231:148::o;37046:133::-;21512:6;;-1:-1:-1;;;;;21512:6:0;15243:10;21512:22;21504:67;;;;-1:-1:-1;;;21504:67:0;;;;;;;:::i;:::-;25662:12;;37100:13:::1;:29:::0;25662:12;;37140:15:::1;:31:::0;37046:133::o;25145:104::-;25201:13;25234:7;25227:14;;;;;:::i;30047:400::-;30167:4;30189:228;15243:10;30239:7;30261:145;30318:15;30261:145;;;;;;;;;;;;;;;;;15243:10;30261:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;30261:34:0;;;;;;;;;;;;:38;:145::i;25908:216::-;26030:4;26052:42;15243:10;26076:9;26087:6;26052:9;:42::i;36208:180::-;21512:6;;-1:-1:-1;;;;;21512:6:0;15243:10;21512:22;21504:67;;;;-1:-1:-1;;;21504:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36293:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;36293:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;36346:34;;1345:41:1;;;36346:34:0::1;::::0;1318:18:1;36346:34:0::1;;;;;;;36208:180:::0;;:::o;21748:281::-;21512:6;;-1:-1:-1;;;;;21512:6:0;15243:10;21512:22;21504:67;;;;-1:-1:-1;;;21504:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21851:22:0;::::1;21829:110;;;::::0;-1:-1:-1;;;21829:110:0;;4501:2:1;21829:110:0::1;::::0;::::1;4483:21:1::0;4540:2;4520:18;;;4513:30;4579:34;4559:18;;;4552:62;-1:-1:-1;;;4630:18:1;;;4623:36;4676:19;;21829:110:0::1;4299:402:1::0;21829:110:0::1;21976:6;::::0;21955:38:::1;::::0;-1:-1:-1;;;;;21955:38:0;;::::1;::::0;21976:6:::1;::::0;21955:38:::1;::::0;21976:6:::1;::::0;21955:38:::1;22004:6;:17:::0;;-1:-1:-1;;;;;;22004:17:0::1;-1:-1:-1::0;;;;;22004:17:0;;;::::1;::::0;;;::::1;::::0;;21748:281::o;30885:380::-;-1:-1:-1;;;;;31021:19:0;;31013:68;;;;-1:-1:-1;;;31013:68:0;;4908:2:1;31013:68:0;;;4890:21:1;4947:2;4927:18;;;4920:30;4986:34;4966:18;;;4959:62;-1:-1:-1;;;5037:18:1;;;5030:34;5081:19;;31013:68:0;4706:400:1;31013:68:0;-1:-1:-1;;;;;31100:21:0;;31092:68;;;;-1:-1:-1;;;31092:68:0;;5313:2:1;31092:68:0;;;5295:21:1;5352:2;5332:18;;;5325:30;5391:34;5371:18;;;5364:62;-1:-1:-1;;;5442:18:1;;;5435:32;5484:19;;31092:68:0;5111:398:1;31092:68:0;-1:-1:-1;;;;;31173:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;31225:32;;713:25:1;;;31225:32:0;;686:18:1;31225:32:0;;;;;;;;30885:380;;;:::o;37770:1706::-;-1:-1:-1;;;;;37880:23:0;;;;:55;;-1:-1:-1;;;;;;37907:28:0;;37928:6;37907:28;37880:55;37879:85;;;-1:-1:-1;37953:11:0;;37879:85;:135;;;;37968:46;37996:6;38004:9;37968:27;:46::i;:::-;37875:641;;;38041:42;38057:6;38065:9;38076:6;38041:15;:42::i;:::-;37770:1706;;;:::o;37875:641::-;38182:15;;38172:6;:25;;38146:114;;;;-1:-1:-1;;;38146:114:0;;5716:2:1;38146:114:0;;;5698:21:1;5755:2;5735:18;;;5728:30;5794:34;5774:18;;;5767:62;-1:-1:-1;;;5845:18:1;;;5838:42;5897:19;;38146:114:0;5514:408:1;38146:114:0;38292:9;;-1:-1:-1;;;;;38279:22:0;;;38292:9;;38279:22;38275:230;;-1:-1:-1;;;;;25471:18:0;;38322:21;25471:18;;;;;;;;;;;38424:13;;38398:22;38414:6;25471:18;38398:22;:::i;:::-;:39;;38368:121;;;;-1:-1:-1;;;38368:121:0;;6391:2:1;38368:121:0;;;6373:21:1;6430:2;6410:18;;;6403:30;6469:31;6449:18;;;6442:59;6518:18;;38368:121:0;6189:353:1;38368:121:0;38303:202;38275:230;38572:4;38528:23;25471:18;;;;;;;;;;;38624:14;;38654:8;;38605:33;;;;;-1:-1:-1;;;38654:8:0;;;;38653:9;:21;;;;;38666:8;38653:21;:58;;;;-1:-1:-1;;;;;;38679:32:0;;;;;;:24;:32;;;;;;;;38678:33;38653:58;38649:245;;;38728:8;:15;;-1:-1:-1;;;;38728:15:0;-1:-1:-1;;;38728:15:0;;;38774;38808:9;;38804:47;;38835:15;;38819:32;;38828:5;;-1:-1:-1;;;;;38835:15:0;38819:8;:32::i;:::-;-1:-1:-1;38866:8:0;:16;;-1:-1:-1;;;;38866:16:0;;;38649:245;38925:8;;-1:-1:-1;;;;;38948:28:0;;38906:15;38948:28;;;38925:8;38948:28;;;;;;38925:8;-1:-1:-1;;;38925:8:0;;;;;38924:9;;38948:28;;:57;;-1:-1:-1;;;;;;38980:25:0;;;;;;:17;:25;;;;;;;;38948:57;38944:105;;;-1:-1:-1;39032:5:0;38944:105;39063:10;39059:357;;;39090:17;39110:33;39138:4;39110:23;39121:11;;39110:6;:10;;:23;;;;:::i;:::-;:27;;:33::i;:::-;-1:-1:-1;;;;;39162:35:0;;;;;;:24;:35;;;;;;39090:53;;-1:-1:-1;39162:35:0;;39158:138;;;39245:34;39274:4;39245:24;39256:12;;39245:6;:10;;:24;;;;:::i;:34::-;39233:46;;39158:138;39319:21;:6;39330:9;39319:10;:21::i;:::-;39310:30;;39355:49;39371:6;39387:4;39394:9;39355:15;:49::i;:::-;39075:341;39059:357;39426:42;39442:6;39450:9;39461:6;39426:15;:42::i;:::-;37864:1612;;;37770:1706;;;:::o;10437:226::-;10557:7;10593:12;10585:6;;;;10577:29;;;;-1:-1:-1;;;10577:29:0;;;;;;;;:::i;:::-;-1:-1:-1;10617:9:0;10629:5;10633:1;10629;:5;:::i;:::-;10617:17;10437:226;-1:-1:-1;;;;;10437:226:0:o;8806:181::-;8864:7;;8896:5;8900:1;8896;:5;:::i;:::-;8884:17;;8925:1;8920;:6;;8912:46;;;;-1:-1:-1;;;8912:46:0;;6882:2:1;8912:46:0;;;6864:21:1;6921:2;6901:18;;;6894:30;6960:29;6940:18;;;6933:57;7007:18;;8912:46:0;6680:351:1;8912:46:0;8978:1;8806:181;-1:-1:-1;;;8806:181:0:o;36394:249::-;-1:-1:-1;;;;;36501:25:0;;36477:4;36501:25;;;:17;:25;;;;;;;;;:50;;-1:-1:-1;;;;;;36530:21:0;;;;;;:17;:21;;;;;;;;36501:50;:134;;;-1:-1:-1;36570:25:0;;36555:76;;-1:-1:-1;;;36555:76:0;;-1:-1:-1;;;;;7266:15:1;;;36555:76:0;;;7248:34:1;7318:15;;;7298:18;;;7291:43;36634:1:0;;36570:25;;36555:64;;7183:18:1;;36555:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:80;36494:141;36394:249;-1:-1:-1;;;36394:249:0:o;28922:610::-;-1:-1:-1;;;;;29062:20:0;;29054:70;;;;-1:-1:-1;;;29054:70:0;;7736:2:1;29054:70:0;;;7718:21:1;7775:2;7755:18;;;7748:30;7814:34;7794:18;;;7787:62;-1:-1:-1;;;7865:18:1;;;7858:35;7910:19;;29054:70:0;7534:401:1;29054:70:0;-1:-1:-1;;;;;29143:23:0;;29135:71;;;;-1:-1:-1;;;29135:71:0;;8142:2:1;29135:71:0;;;8124:21:1;8181:2;8161:18;;;8154:30;8220:34;8200:18;;;8193:62;-1:-1:-1;;;8271:18:1;;;8264:33;8314:19;;29135:71:0;7940:399:1;29135:71:0;29299:108;29335:6;29299:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29299:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;29279:17:0;;;:9;:17;;;;;;;;;;;:128;;;;29441:20;;;;;;;:32;;29466:6;29441:24;:32::i;:::-;-1:-1:-1;;;;;29418:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;29489:35;713:25:1;;;29418:20:0;;29489:35;;;;;;686:18:1;29489:35:0;567:177:1;39486:274:0;39582:21;39614:25;39632:6;39614:17;:25::i;:::-;39641:18;39662:41;:21;39688:14;39662:25;:41::i;:::-;39714:38;;39641:62;;-1:-1:-1;;;;;;39714:26:0;;;:38;;;;;39641:62;;39714:38;;;;39641:62;39714:26;:38;;;;;;;;;;;;;;;;;;;;;39546:214;;39486:274;;:::o;9665:471::-;9723:7;9968:1;9973;9968:6;9964:47;;-1:-1:-1;9998:1:0;9991:8;;9964:47;10023:9;10035:5;10039:1;10035;:5;:::i;:::-;10023:17;-1:-1:-1;10068:1:0;10059:5;10063:1;10023:17;10059:5;:::i;:::-;:10;10051:56;;;;-1:-1:-1;;;10051:56:0;;8941:2:1;10051:56:0;;;8923:21:1;8980:2;8960:18;;;8953:30;9019:34;8999:18;;;8992:62;-1:-1:-1;;;9070:18:1;;;9063:31;9111:19;;10051:56:0;8739:397:1;11141:132:0;11199:7;11226:39;11230:1;11233;11226:39;;;;;;;;;;;;;;;;;:3;:39::i;9270:136::-;9328:7;9355:43;9359:1;9362;9355:43;;;;;;;;;;;;;;;;;:3;:43::i;37185:579::-;37336:16;;;37350:1;37336:16;;;;;;;;37312:21;;37336:16;;;;;;;;;;-1:-1:-1;37336:16:0;37312:40;;37381:4;37363;37368:1;37363:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37363:23:0;;;:7;;;;;;;;;;:23;;;;37398:15;;:22;;;-1:-1:-1;;;37398:22:0;;;;:15;;;;;:20;;:22;;;;;37363:7;;37398:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37388:4;37393:1;37388:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37388:32:0;;;:7;;;;;;;;;:32;37463:15;;37431:62;;37448:4;;37463:15;37481:11;37431:8;:62::i;:::-;37532:15;;:224;;-1:-1:-1;;;37532:224:0;;-1:-1:-1;;;;;37532:15:0;;;;:66;;:224;;37613:11;;37532:15;;37683:4;;37710;;37730:15;;37532:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13053:312;13173:7;13208:12;13201:5;13193:28;;;;-1:-1:-1;;;13193:28:0;;;;;;;;:::i;:::-;-1:-1:-1;13232:9:0;13244:5;13248:1;13244;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;749:131::-;-1:-1:-1;;;;;824:31:1;;814:42;;804:70;;870:1;867;860:12;804:70;749:131;:::o;885:315::-;953:6;961;1014:2;1002:9;993:7;989:23;985:32;982:52;;;1030:1;1027;1020:12;982:52;1069:9;1056:23;1088:31;1113:5;1088:31;:::i;:::-;1138:5;1190:2;1175:18;;;;1162:32;;-1:-1:-1;;;885:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;1858:247::-;1917:6;1970:2;1958:9;1949:7;1945:23;1941:32;1938:52;;;1986:1;1983;1976:12;1938:52;2025:9;2012:23;2044:31;2069:5;2044:31;:::i;2739:416::-;2804:6;2812;2865:2;2853:9;2844:7;2840:23;2836:32;2833:52;;;2881:1;2878;2871:12;2833:52;2920:9;2907:23;2939:31;2964:5;2939:31;:::i;:::-;2989:5;-1:-1:-1;3046:2:1;3031:18;;3018:32;3088:15;;3081:23;3069:36;;3059:64;;3119:1;3116;3109:12;3059:64;3142:7;3132:17;;;2739:416;;;;;:::o;3160:388::-;3228:6;3236;3289:2;3277:9;3268:7;3264:23;3260:32;3257:52;;;3305:1;3302;3295:12;3257:52;3344:9;3331:23;3363:31;3388:5;3363:31;:::i;:::-;3413:5;-1:-1:-1;3470:2:1;3455:18;;3442:32;3483:33;3442:32;3483:33;:::i;3553:380::-;3632:1;3628:12;;;;3675;;;3696:61;;3750:4;3742:6;3738:17;3728:27;;3696:61;3803:2;3795:6;3792:14;3772:18;3769:38;3766:161;;3849:10;3844:3;3840:20;3837:1;3830:31;3884:4;3881:1;3874:15;3912:4;3909:1;3902:15;3766:161;;3553:380;;;:::o;3938:356::-;4140:2;4122:21;;;4159:18;;;4152:30;4218:34;4213:2;4198:18;;4191:62;4285:2;4270:18;;3938:356::o;5927:127::-;5988:10;5983:3;5979:20;5976:1;5969:31;6019:4;6016:1;6009:15;6043:4;6040:1;6033:15;6059:125;6124:9;;;6145:10;;;6142:36;;;6158:18;;:::i;6547:128::-;6614:9;;;6635:11;;;6632:37;;;6649:18;;:::i;7345:184::-;7415:6;7468:2;7456:9;7447:7;7443:23;7439:32;7436:52;;;7484:1;7481;7474:12;7436:52;-1:-1:-1;7507:16:1;;7345:184;-1:-1:-1;7345:184:1:o;8344:168::-;8417:9;;;8448;;8465:15;;;8459:22;;8445:37;8435:71;;8486:18;;:::i;8517:217::-;8557:1;8583;8573:132;;8627:10;8622:3;8618:20;8615:1;8608:31;8662:4;8659:1;8652:15;8690:4;8687:1;8680:15;8573:132;-1:-1:-1;8719:9:1;;8517:217::o;9273:127::-;9334:10;9329:3;9325:20;9322:1;9315:31;9365:4;9362:1;9355:15;9389:4;9386:1;9379:15;9405:251;9475:6;9528:2;9516:9;9507:7;9503:23;9499:32;9496:52;;;9544:1;9541;9534:12;9496:52;9576:9;9570:16;9595:31;9620:5;9595:31;:::i;9661:980::-;9923:4;9971:3;9960:9;9956:19;10002:6;9991:9;9984:25;10028:2;10066:6;10061:2;10050:9;10046:18;10039:34;10109:3;10104:2;10093:9;10089:18;10082:31;10133:6;10168;10162:13;10199:6;10191;10184:22;10237:3;10226:9;10222:19;10215:26;;10276:2;10268:6;10264:15;10250:29;;10297:1;10307:195;10321:6;10318:1;10315:13;10307:195;;;10386:13;;-1:-1:-1;;;;;10382:39:1;10370:52;;10477:15;;;;10442:12;;;;10418:1;10336:9;10307:195;;;-1:-1:-1;;;;;;;10558:32:1;;;;10553:2;10538:18;;10531:60;-1:-1:-1;;;10622:3:1;10607:19;10600:35;10519:3;9661:980;-1:-1:-1;;;9661:980:1:o

Swarm Source

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