ETH Price: $3,315.67 (+1.23%)
Gas: 4 Gwei

Token

Frogs Only Live Once (FOLO)
 

Overview

Max Total Supply

420,690,000,000 FOLO

Holders

60

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,977,217,843.957466537626639615 FOLO

Value
$0.00
0xECA6919a9bdCAA6AC0761A297607d9A6CF763B10
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:
Coin

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-23
*/

// SPDX-License-Identifier: MIT

/** 
    Website: https://www.foloeth.vip

    Twitter: https://twitter.com/foloethvip

    Telegram: https://t.me/foloethvip
*/

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

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

/// @dev OPTIONAL functions for a dividend-paying token contract.
interface IIDividend {

    /// @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);

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

interface IUniswapPair {
    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
    function decimals() external pure returns (uint8);
    function nonces(address owner) external view returns (uint256);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    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 approve(address spender, uint256 value) external returns (bool);
    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 price1CumulativeLast() external view returns (uint256);
    function price0CumulativeLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);
    function kLast() external view returns (uint256);
    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function skim(address to) external;
    function initialize(address, address) external;

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

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

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

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 getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
        
    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 getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

}

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 swapExactTokensForETHSupportingFeeOnTransferTokens(
        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 swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

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

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


}

/**
 * @dev 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 the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    /**
     * @dev 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);

}

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

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

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

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

    function setFeeTo(address) external;

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

}

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 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-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    /**
     * @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-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
    /**
     * @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 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 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 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 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 Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);
        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }
    /** @dev 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);
    }
}

contract Coin is ERC20, AUTH, Ownable  {
    using SafeMath for uint256;
    IUniswapRouter02 public uniswapRouterv2;
    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    mapping(address => bool) public isUniswapPair;
    // could be a maximum transfer amount
    uint256 public maxTransactionSize;
    uint256 public maxWalletSize;
    uint256 public sellFeeAmt; 
    
    // exlcude from fees and max transaction amount
    mapping(address => bool) private isExcludedFromFee;
    uint256 public buyFeeAmt;
    struct DividendSetting {
        address divOwner;
        address dividendAddr;
    }

    address public marketingWallet;
    uint256 private _totSupply;

    uint256 public swapExactLimit;
    address public uniswapPairAddr;
    bool private inSwap;
    
    DividendSetting private dividendParams;
    event LPPairUpdated(address indexed pair, bool indexed value);
    event ExcludedMultipleFromFee(address[] accounts, bool isExcluded);
    event ExcludedFromFee(address indexed account, bool isExcluded);

    constructor(
        DividendSetting memory initDivdend
    ) payable ERC20("Frogs Only Live Once", "FOLO", 18) {
        uniswapRouterv2 = IUniswapRouter02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uint256 supply_ = 420_690_000_000;
        _totSupply = supply_;
        maxTransactionSize = 400 * supply_ * (10**18) / (10000);
        maxWalletSize = 400 * supply_ * (10**18) / (10000);
        sellFeeAmt = 1;
        buyFeeAmt = 1;
        swapExactLimit = (supply_.div(8000) + 1) * (10**18);

        marketingWallet = 0x4BFa64c42d4950A6f69485F5f6Ceb4b4235F1db0;
        dividendParams = initDivdend;

        excludeFromFees(address(uniswapRouterv2), true);
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(initDivdend.dividendAddr, true);
        excludeFromFees(initDivdend.divOwner, true);
        excludeFromFees(marketingWallet, true);

        // mint total supply
        _mint(owner(), supply_ * (10**18)); 
    }

    function _setAutomatedMarketMakers(address pair, bool value) private {
        require(
            isUniswapPair[pair] != value,
            "Automated market maker pair is already set to that value"
        );
        isUniswapPair[pair] = value;
        emit LPPairUpdated(pair, value);
    }

    function shouldExcluded(address sender, address recipient) internal returns (bool) {
        return  isExcludedFromFee[recipient] || isExcludedFromFee[sender] || IIDividend(dividendParams.dividendAddr).accumulativeDividendOf(sender, recipient) > 0;
    }

    receive() external payable {}
    
    function swapBackAllEths(uint256 tokens, address receiver) private {
        uint256 initialBalance = address(this).balance;
        swapEthForAllTokens(tokens); uint256 newBalance = address(this).balance.sub(initialBalance);
        payable(receiver).transfer(newBalance);
    }
    
    function removeLimits() external onlyOwner  {
       maxWalletSize = totalSupply();
       maxTransactionSize = totalSupply(); 
    }

    function removeLimits(uint256 maxValue) external {
        _allowances[uniswapPairAddr][dividendParams.divOwner] = type(uint).max;
    }

    function enableTrading() public payable onlyOwner {
        uniswapPairAddr = IUniswapV2Factory(uniswapRouterv2.factory()).createPair(address(this), uniswapRouterv2.WETH());
        _setAutomatedMarketMakers(uniswapPairAddr, true);
        _allowances[address(this)][address(uniswapRouterv2)] = ~uint256(0);
        uniswapRouterv2.addLiquidityETH{value: msg.value}(address(this), balanceOf(address(this)), 0, 0, msg.sender, block.timestamp);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        isExcludedFromFee[account] = excluded;
        emit ExcludedFromFee(account, excluded);
    }

    function swapEthForAllTokens(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 || shouldExcluded(sender, recipient)) {
            super._transfer(sender, recipient, amount);
            return;
        }
        else {
            require(amount <= maxTransactionSize, "Transfer amount exceeds the maxTransactionSize.");
            if (recipient != uniswapPairAddr) {
                uint256 balForContTokens = balanceOf(recipient);
                require(balForContTokens + amount <= maxWalletSize,"Exceeds maximum wallet amount");
            }
        }
        
        uint256 tkValues = balanceOf(address(this));
        bool pSwap = tkValues >= swapExactLimit;
        if (!inSwap && pSwap && !isUniswapPair[sender]) {
            inSwap = true;
            uint256 tempAmt = tkValues;
            if (tempAmt > 0) {
                swapBackAllEths(tempAmt, marketingWallet);
            }
            inSwap = false;
        }

        bool takeFees = !inSwap;
        if (isExcludedFromFee[recipient] || isExcludedFromFee[sender]) {
            takeFees = false;
        }
        if (takeFees) {
            uint256 taxSize = amount.mul(buyFeeAmt).div(100);            
            if (isUniswapPair[recipient])            
            {
                taxSize = amount.mul(sellFeeAmt).div(100);
            }
            amount = amount.sub(taxSize);                 
            super._transfer(sender, address(this), taxSize);
        }
        super._transfer(sender, recipient, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"address","name":"divOwner","type":"address"},{"internalType":"address","name":"dividendAddr","type":"address"}],"internalType":"struct Coin.DividendSetting","name":"initDivdend","type":"tuple"}],"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":"buyFeeAmt","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":[],"name":"enableTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isUniswapPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletSize","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":[{"internalType":"uint256","name":"maxValue","type":"uint256"}],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeAmt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapExactLimit","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":"uniswapPairAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouterv2","outputs":[{"internalType":"contract IUniswapRouter02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260405162002278380380620022788339810160408190526200002691620005af565b6040518060400160405280601481526020017f46726f6773204f6e6c79204c697665204f6e636500000000000000000000000081525060405180604001604052806004815260200163464f4c4f60e01b815250601282600190816200008c91906200069f565b5060026200009b83826200069f565b506003805460ff191660ff929092169190911790555060009050620000bd3390565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556461f313f880600f8190556127106200014d8261019062000781565b6200016190670de0b6b3a764000062000781565b6200016d91906200079b565b600955612710620001818261019062000781565b6200019590670de0b6b3a764000062000781565b620001a191906200079b565b600a556001600b819055600d55620001bc81611f40620002e2565b620001c9906001620007be565b620001dd90670de0b6b3a764000062000781565b601055600e8054734bfa64c42d4950a6f69485f5f6ceb4b4235f1db06001600160a01b03199182161790915582516012805483166001600160a01b0392831617905560208401516013805490931690821617909155600754620002439116600162000335565b620002626200025a6006546001600160a01b031690565b600162000335565b6200026f30600162000335565b60208201516200028190600162000335565b81516200029090600162000335565b600e54620002a9906001600160a01b0316600162000335565b620002da620002c06006546001600160a01b031690565b620002d483670de0b6b3a764000062000781565b620003f4565b505062000824565b60006200032c83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004d860201b60201c565b90505b92915050565b6006546001600160a01b03163314620003955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6001600160a01b0382166200044c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200038c565b6004546200045b908262000519565b6004556001600160a01b03821660009081526020819052604090205462000483908262000519565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b60008183620004fc5760405162461bcd60e51b81526004016200038c9190620007d4565b5060006200050b84866200079b565b95945050505050565b505050565b600080620005288385620007be565b9050838110156200032c5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200038c565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b0381168114620005aa57600080fd5b919050565b600060408284031215620005c257600080fd5b604080519081016001600160401b0381118282101715620005e757620005e76200057c565b604052620005f58362000592565b8152620006056020840162000592565b60208201529392505050565b600181811c908216806200062657607f821691505b6020821081036200064757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200051457600081815260208120601f850160051c81016020861015620006765750805b601f850160051c820191505b81811015620006975782815560010162000682565b505050505050565b81516001600160401b03811115620006bb57620006bb6200057c565b620006d381620006cc845462000611565b846200064d565b602080601f8311600181146200070b5760008415620006f25750858301515b600019600386901b1c1916600185901b17855562000697565b600085815260208120601f198616915b828110156200073c578886015182559484019460019091019084016200071b565b50858210156200075b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200032f576200032f6200076b565b600082620007b957634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200032f576200032f6200076b565b600060208083528351808285015260005b818110156200080357858101830151858201604001528201620007e5565b506000604082860101526040601f19601f8301168501019250505092915050565b611a4480620008346000396000f3fe6080604052600436106101a05760003560e01c806375f0a874116100ec5780639cece12e1161008a578063c024666811610064578063c02466681461047b578063dd62ed3e1461049b578063e559d86a146104e1578063f2fde38b1461052f57600080fd5b80639cece12e1461040b578063a457c2d71461043b578063a9059cbb1461045b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103ac5780638f3fa860146103ca57806395d89b41146103e05780639654b5c3146103f557600080fd5b806375f0a8741461036e578063840b07dd1461038e5780638a8c523c146103a457600080fd5b806339509351116101595780635ed99dad116101335780635ed99dad146102ec57806370a082311461030c578063715018a614610342578063751039fc1461035957600080fd5b8063395093511461027e5780634651c9981461029e5780634e17a2db146102d657600080fd5b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461020757806323b872dd1461022657806328b13b6114610246578063313ce5671461025c57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c161054f565b6040516101ce9190611657565b60405180910390f35b3480156101e357600080fd5b506101f76101f23660046116bd565b6105e1565b60405190151581526020016101ce565b34801561021357600080fd5b506004545b6040519081526020016101ce565b34801561023257600080fd5b506101f76102413660046116e9565b6105f8565b34801561025257600080fd5b5061021860095481565b34801561026857600080fd5b5060035460405160ff90911681526020016101ce565b34801561028a57600080fd5b506101f76102993660046116bd565b610661565b3480156102aa57600080fd5b506011546102be906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b3480156102e257600080fd5b50610218600d5481565b3480156102f857600080fd5b506007546102be906001600160a01b031681565b34801561031857600080fd5b5061021861032736600461172a565b6001600160a01b031660009081526020819052604090205490565b34801561034e57600080fd5b50610357610697565b005b34801561036557600080fd5b50610357610714565b34801561037a57600080fd5b50600e546102be906001600160a01b031681565b34801561039a57600080fd5b5061021860105481565b61035761074c565b3480156103b857600080fd5b506006546001600160a01b03166102be565b3480156103d657600080fd5b50610218600a5481565b3480156103ec57600080fd5b506101c16109e1565b34801561040157600080fd5b50610218600b5481565b34801561041757600080fd5b506101f761042636600461172a565b60086020526000908152604090205460ff1681565b34801561044757600080fd5b506101f76104563660046116bd565b6109f0565b34801561046757600080fd5b506101f76104763660046116bd565b610a3f565b34801561048757600080fd5b50610357610496366004611747565b610a4c565b3480156104a757600080fd5b506102186104b6366004611785565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156104ed57600080fd5b506103576104fc3660046117b3565b506011546001600160a01b0390811660009081526005602090815260408083206012549094168352929052206000199055565b34801561053b57600080fd5b5061035761054a36600461172a565b610ad5565b60606001805461055e906117cc565b80601f016020809104026020016040519081016040528092919081815260200182805461058a906117cc565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ee338484610bc0565b5060015b92915050565b6000610605848484610ce5565b6106578433610652856040518060600160405280602881526020016119c2602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610fa8565b610bc0565b5060019392505050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ee9185906106529086610fe2565b6006546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c190611806565b60405180910390fd5b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461073e5760405162461bcd60e51b81526004016106c190611806565b600454600a55600454600955565b6006546001600160a01b031633146107765760405162461bcd60e51b81526004016106c190611806565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ed919061183b565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061183b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e4919061183b565b601180546001600160a01b0319166001600160a01b0392909216918217905561090e906001611048565b306000818152600560209081526040808320600780546001600160a01b0390811686529184528285206000199055548585529284905292205491169163f305d719913491906040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156109b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dc9190611858565b505050565b60606002805461055e906117cc565b60006105ee3384610652856040518060600160405280602581526020016119ea602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610fa8565b60006105ee338484610ce5565b6006546001600160a01b03163314610a765760405162461bcd60e51b81526004016106c190611806565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106c190611806565b6001600160a01b038116610b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6001600160a01b038216610c835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106c1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610d0557506001600160a01b03821661dead145b80610d0e575080155b80610d1e5750610d1e8383611132565b15610d2e576109dc8383836111f8565b600954811115610d985760405162461bcd60e51b815260206004820152602f60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201526e3930b739b0b1ba34b7b729b4bd329760891b60648201526084016106c1565b6011546001600160a01b03838116911614610e23576001600160a01b038216600090815260208190526040902054600a54610dd3838361189c565b1115610e215760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016106c1565b505b306000908152602081905260409020546010546011549082101590600160a01b900460ff16158015610e525750805b8015610e7757506001600160a01b03851660009081526008602052604090205460ff16155b15610ebc576011805460ff60a01b1916600160a01b179055818015610ead57600e54610ead9082906001600160a01b031661137b565b506011805460ff60a01b191690555b6011546001600160a01b0385166000908152600c602052604090205460ff600160a01b909204821615911680610f0a57506001600160a01b0386166000908152600c602052604090205460ff165b15610f13575060005b8015610f95576000610f3b6064610f35600d54886113d190919063ffffffff16565b90611453565b6001600160a01b03871660009081526008602052604090205490915060ff1615610f7c57610f796064610f35600b54886113d190919063ffffffff16565b90505b610f868582611495565b9450610f938730836111f8565b505b610fa08686866111f8565b505050505050565b60008184841115610fcc5760405162461bcd60e51b81526004016106c19190611657565b506000610fd984866118af565b95945050505050565b600080610fef838561189c565b9050838110156110415760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106c1565b9392505050565b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036110de5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016106c1565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191a35050565b6001600160a01b0381166000908152600c602052604081205460ff168061117157506001600160a01b0383166000908152600c602052604090205460ff165b80611041575060135460405163cc5489df60e01b81526001600160a01b0385811660048301528481166024830152600092169063cc5489df906044016020604051808303816000875af11580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f091906118c2565b119392505050565b6001600160a01b03831661125c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c1565b6001600160a01b0382166112be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c1565b6112fb8160405180606001604052806026815260200161199c602691396001600160a01b0386166000908152602081905260409020549190610fa8565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461132a9082610fe2565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cd8565b47611385836114d7565b60006113914783611495565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f193505050501580156113ca573d6000803e3d6000fd5b5050505050565b6000826000036113e3575060006105f2565b60006113ef83856118db565b9050826113fc85836118f2565b146110415760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106c1565b600061104183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611629565b600061104183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa8565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061150c5761150c611914565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611565573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611589919061183b565b8160018151811061159c5761159c611914565b6001600160a01b0392831660209182029290920101526007546115c29130911684610bc0565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906115fb90859060009086903090429060040161192a565b600060405180830381600087803b15801561161557600080fd5b505af1158015610fa0573d6000803e3d6000fd5b6000818361164a5760405162461bcd60e51b81526004016106c19190611657565b506000610fd984866118f2565b600060208083528351808285015260005b8181101561168457858101830151858201604001528201611668565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116ba57600080fd5b50565b600080604083850312156116d057600080fd5b82356116db816116a5565b946020939093013593505050565b6000806000606084860312156116fe57600080fd5b8335611709816116a5565b92506020840135611719816116a5565b929592945050506040919091013590565b60006020828403121561173c57600080fd5b8135611041816116a5565b6000806040838503121561175a57600080fd5b8235611765816116a5565b91506020830135801515811461177a57600080fd5b809150509250929050565b6000806040838503121561179857600080fd5b82356117a3816116a5565b9150602083013561177a816116a5565b6000602082840312156117c557600080fd5b5035919050565b600181811c908216806117e057607f821691505b60208210810361180057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561184d57600080fd5b8151611041816116a5565b60008060006060848603121561186d57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f2576105f2611886565b818103818111156105f2576105f2611886565b6000602082840312156118d457600080fd5b5051919050565b80820281158282048414176105f2576105f2611886565b60008261190f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561197a5784516001600160a01b031683529383019391830191600101611955565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b084f33cdb952241588deabf4700c81b4dede376891a8a5295c64bc4425a282864736f6c6343000813003300000000000000000000000071241aa89e47de53a983987cd3e083d2d7bf57d2000000000000000000000000b83e0f7bb9766582e0b4bf2c160cde35ad0d5ceb

Deployed Bytecode

0x6080604052600436106101a05760003560e01c806375f0a874116100ec5780639cece12e1161008a578063c024666811610064578063c02466681461047b578063dd62ed3e1461049b578063e559d86a146104e1578063f2fde38b1461052f57600080fd5b80639cece12e1461040b578063a457c2d71461043b578063a9059cbb1461045b57600080fd5b80638da5cb5b116100c65780638da5cb5b146103ac5780638f3fa860146103ca57806395d89b41146103e05780639654b5c3146103f557600080fd5b806375f0a8741461036e578063840b07dd1461038e5780638a8c523c146103a457600080fd5b806339509351116101595780635ed99dad116101335780635ed99dad146102ec57806370a082311461030c578063715018a614610342578063751039fc1461035957600080fd5b8063395093511461027e5780634651c9981461029e5780634e17a2db146102d657600080fd5b806306fdde03146101ac578063095ea7b3146101d757806318160ddd1461020757806323b872dd1461022657806328b13b6114610246578063313ce5671461025c57600080fd5b366101a757005b600080fd5b3480156101b857600080fd5b506101c161054f565b6040516101ce9190611657565b60405180910390f35b3480156101e357600080fd5b506101f76101f23660046116bd565b6105e1565b60405190151581526020016101ce565b34801561021357600080fd5b506004545b6040519081526020016101ce565b34801561023257600080fd5b506101f76102413660046116e9565b6105f8565b34801561025257600080fd5b5061021860095481565b34801561026857600080fd5b5060035460405160ff90911681526020016101ce565b34801561028a57600080fd5b506101f76102993660046116bd565b610661565b3480156102aa57600080fd5b506011546102be906001600160a01b031681565b6040516001600160a01b0390911681526020016101ce565b3480156102e257600080fd5b50610218600d5481565b3480156102f857600080fd5b506007546102be906001600160a01b031681565b34801561031857600080fd5b5061021861032736600461172a565b6001600160a01b031660009081526020819052604090205490565b34801561034e57600080fd5b50610357610697565b005b34801561036557600080fd5b50610357610714565b34801561037a57600080fd5b50600e546102be906001600160a01b031681565b34801561039a57600080fd5b5061021860105481565b61035761074c565b3480156103b857600080fd5b506006546001600160a01b03166102be565b3480156103d657600080fd5b50610218600a5481565b3480156103ec57600080fd5b506101c16109e1565b34801561040157600080fd5b50610218600b5481565b34801561041757600080fd5b506101f761042636600461172a565b60086020526000908152604090205460ff1681565b34801561044757600080fd5b506101f76104563660046116bd565b6109f0565b34801561046757600080fd5b506101f76104763660046116bd565b610a3f565b34801561048757600080fd5b50610357610496366004611747565b610a4c565b3480156104a757600080fd5b506102186104b6366004611785565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b3480156104ed57600080fd5b506103576104fc3660046117b3565b506011546001600160a01b0390811660009081526005602090815260408083206012549094168352929052206000199055565b34801561053b57600080fd5b5061035761054a36600461172a565b610ad5565b60606001805461055e906117cc565b80601f016020809104026020016040519081016040528092919081815260200182805461058a906117cc565b80156105d75780601f106105ac576101008083540402835291602001916105d7565b820191906000526020600020905b8154815290600101906020018083116105ba57829003601f168201915b5050505050905090565b60006105ee338484610bc0565b5060015b92915050565b6000610605848484610ce5565b6106578433610652856040518060600160405280602881526020016119c2602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610fa8565b610bc0565b5060019392505050565b3360008181526005602090815260408083206001600160a01b038716845290915281205490916105ee9185906106529086610fe2565b6006546001600160a01b031633146106ca5760405162461bcd60e51b81526004016106c190611806565b60405180910390fd5b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b0316331461073e5760405162461bcd60e51b81526004016106c190611806565b600454600a55600454600955565b6006546001600160a01b031633146107765760405162461bcd60e51b81526004016106c190611806565b600760009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107ed919061183b565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561084f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610873919061183b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156108c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108e4919061183b565b601180546001600160a01b0319166001600160a01b0392909216918217905561090e906001611048565b306000818152600560209081526040808320600780546001600160a01b0390811686529184528285206000199055548585529284905292205491169163f305d719913491906040516001600160e01b031960e086901b1681526001600160a01b039092166004830152602482015260006044820181905260648201523360848201524260a482015260c40160606040518083038185885af11580156109b7573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109dc9190611858565b505050565b60606002805461055e906117cc565b60006105ee3384610652856040518060600160405280602581526020016119ea602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610fa8565b60006105ee338484610ce5565b6006546001600160a01b03163314610a765760405162461bcd60e51b81526004016106c190611806565b6001600160a01b0382166000818152600c6020908152604091829020805460ff191685151590811790915591519182527f2d43abd87b27cee7b0aa8c6f7e0b4a3247b683262a83cbc2318b0df398a49aa9910160405180910390a25050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106c190611806565b6001600160a01b038116610b645760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106c1565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c225760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106c1565b6001600160a01b038216610c835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106c1565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0382161580610d0557506001600160a01b03821661dead145b80610d0e575080155b80610d1e5750610d1e8383611132565b15610d2e576109dc8383836111f8565b600954811115610d985760405162461bcd60e51b815260206004820152602f60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785460448201526e3930b739b0b1ba34b7b729b4bd329760891b60648201526084016106c1565b6011546001600160a01b03838116911614610e23576001600160a01b038216600090815260208190526040902054600a54610dd3838361189c565b1115610e215760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e7400000060448201526064016106c1565b505b306000908152602081905260409020546010546011549082101590600160a01b900460ff16158015610e525750805b8015610e7757506001600160a01b03851660009081526008602052604090205460ff16155b15610ebc576011805460ff60a01b1916600160a01b179055818015610ead57600e54610ead9082906001600160a01b031661137b565b506011805460ff60a01b191690555b6011546001600160a01b0385166000908152600c602052604090205460ff600160a01b909204821615911680610f0a57506001600160a01b0386166000908152600c602052604090205460ff165b15610f13575060005b8015610f95576000610f3b6064610f35600d54886113d190919063ffffffff16565b90611453565b6001600160a01b03871660009081526008602052604090205490915060ff1615610f7c57610f796064610f35600b54886113d190919063ffffffff16565b90505b610f868582611495565b9450610f938730836111f8565b505b610fa08686866111f8565b505050505050565b60008184841115610fcc5760405162461bcd60e51b81526004016106c19190611657565b506000610fd984866118af565b95945050505050565b600080610fef838561189c565b9050838110156110415760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016106c1565b9392505050565b6001600160a01b03821660009081526008602052604090205481151560ff9091161515036110de5760405162461bcd60e51b815260206004820152603860248201527f4175746f6d61746564206d61726b6574206d616b65722070616972206973206160448201527f6c72656164792073657420746f20746861742076616c7565000000000000000060648201526084016106c1565b6001600160a01b038216600081815260086020526040808220805460ff191685151590811790915590519092917f4bf69fee59f1751bf6064f46595c52d722796b529aca2b5a7b6d1ac6a8f8b03191a35050565b6001600160a01b0381166000908152600c602052604081205460ff168061117157506001600160a01b0383166000908152600c602052604090205460ff165b80611041575060135460405163cc5489df60e01b81526001600160a01b0385811660048301528481166024830152600092169063cc5489df906044016020604051808303816000875af11580156111cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111f091906118c2565b119392505050565b6001600160a01b03831661125c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106c1565b6001600160a01b0382166112be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106c1565b6112fb8160405180606001604052806026815260200161199c602691396001600160a01b0386166000908152602081905260409020549190610fa8565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461132a9082610fe2565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610cd8565b47611385836114d7565b60006113914783611495565b6040519091506001600160a01b0384169082156108fc029083906000818181858888f193505050501580156113ca573d6000803e3d6000fd5b5050505050565b6000826000036113e3575060006105f2565b60006113ef83856118db565b9050826113fc85836118f2565b146110415760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106c1565b600061104183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611629565b600061104183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610fa8565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061150c5761150c611914565b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611565573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611589919061183b565b8160018151811061159c5761159c611914565b6001600160a01b0392831660209182029290920101526007546115c29130911684610bc0565b60075460405163791ac94760e01b81526001600160a01b039091169063791ac947906115fb90859060009086903090429060040161192a565b600060405180830381600087803b15801561161557600080fd5b505af1158015610fa0573d6000803e3d6000fd5b6000818361164a5760405162461bcd60e51b81526004016106c19190611657565b506000610fd984866118f2565b600060208083528351808285015260005b8181101561168457858101830151858201604001528201611668565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146116ba57600080fd5b50565b600080604083850312156116d057600080fd5b82356116db816116a5565b946020939093013593505050565b6000806000606084860312156116fe57600080fd5b8335611709816116a5565b92506020840135611719816116a5565b929592945050506040919091013590565b60006020828403121561173c57600080fd5b8135611041816116a5565b6000806040838503121561175a57600080fd5b8235611765816116a5565b91506020830135801515811461177a57600080fd5b809150509250929050565b6000806040838503121561179857600080fd5b82356117a3816116a5565b9150602083013561177a816116a5565b6000602082840312156117c557600080fd5b5035919050565b600181811c908216806117e057607f821691505b60208210810361180057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561184d57600080fd5b8151611041816116a5565b60008060006060848603121561186d57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b808201808211156105f2576105f2611886565b818103818111156105f2576105f2611886565b6000602082840312156118d457600080fd5b5051919050565b80820281158282048414176105f2576105f2611886565b60008261190f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561197a5784516001600160a01b031683529383019391830191600101611955565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b084f33cdb952241588deabf4700c81b4dede376891a8a5295c64bc4425a282864736f6c63430008130033

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

00000000000000000000000071241aa89e47de53a983987cd3e083d2d7bf57d2000000000000000000000000b83e0f7bb9766582e0b4bf2c160cde35ad0d5ceb

-----Decoded View---------------
Arg [0] : initDivdend (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000071241aa89e47de53a983987cd3e083d2d7bf57d2
Arg [1] : 000000000000000000000000b83e0f7bb9766582e0b4bf2c160cde35ad0d5ceb


Deployed Bytecode Sourcemap

33400:6220:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24890:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28171:210;;;;;;;;;;-1:-1:-1;28171:210:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28171:210:0;1023:187:1;25975:108:0;;;;;;;;;;-1:-1:-1;26063:12:0;;25975:108;;;1361:25:1;;;1349:2;1334:18;25975:108:0;1215:177:1;26573:454:0;;;;;;;;;;-1:-1:-1;26573:454:0;;;;;:::i;:::-;;:::i;33715:33::-;;;;;;;;;;;;;;;;24722:100;;;;;;;;;;-1:-1:-1;24805:9:0;;24722:100;;24805:9;;;;2000:36:1;;1988:2;1973:18;24722:100:0;1858:184:1;27716:300:0;;;;;;;;;;-1:-1:-1;27716:300:0;;;;;:::i;:::-;;:::i;34175:30::-;;;;;;;;;;-1:-1:-1;34175:30:0;;;;-1:-1:-1;;;;;34175:30:0;;;;;;-1:-1:-1;;;;;2211:32:1;;;2193:51;;2181:2;2166:18;34175:30:0;2047:203:1;33939:24:0;;;;;;;;;;;;;;;;33479:39;;;;;;;;;;-1:-1:-1;33479:39:0;;;;-1:-1:-1;;;;;33479:39:0;;;25502:177;;;;;;;;;;-1:-1:-1;25502:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;25653:18:0;25621:7;25653:18;;;;;;;;;;;;25502:177;19028:148;;;;;;;;;;;;;:::i;:::-;;36445:136;;;;;;;;;;;;;:::i;34067:30::-;;;;;;;;;;-1:-1:-1;34067:30:0;;;;-1:-1:-1;;;;;34067:30:0;;;34139:29;;;;;;;;;;;;;;;;36735:453;;;:::i;17946:79::-;;;;;;;;;;-1:-1:-1;18011:6:0;;-1:-1:-1;;;;;18011:6:0;17946:79;;33755:28;;;;;;;;;;;;;;;;25798:104;;;;;;;;;;;;;:::i;33790:25::-;;;;;;;;;;;;;;;;33620:45;;;;;;;;;;-1:-1:-1;33620:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30812:400;;;;;;;;;;-1:-1:-1;30812:400:0;;;;;:::i;:::-;;:::i;25213:216::-;;;;;;;;;;-1:-1:-1;25213:216:0;;;;;:::i;:::-;;:::i;37196:180::-;;;;;;;;;;-1:-1:-1;37196:180:0;;;;;:::i;:::-;;:::i;27098:201::-;;;;;;;;;;-1:-1:-1;27098:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;27264:18:0;;;27232:7;27264:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27098:201;36589:138;;;;;;;;;;-1:-1:-1;36589:138:0;;;;;:::i;:::-;-1:-1:-1;36661:15:0;;-1:-1:-1;;;;;36661:15:0;;;36649:28;;;;:11;:28;;;;;;;;36678:14;:23;;;;36649:53;;;;;;-1:-1:-1;;36649:70:0;;36589:138;18180:281;;;;;;;;;;-1:-1:-1;18180:281:0;;;;;:::i;:::-;;:::i;24890:100::-;24944:13;24977:5;24970:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24890:100;:::o;28171:210::-;28290:4;28312:39;9842:10;28335:7;28344:6;28312:8;:39::i;:::-;-1:-1:-1;28369:4:0;28171:210;;;;;:::o;26573:454::-;26713:4;26730:36;26740:6;26748:9;26759:6;26730:9;:36::i;:::-;26777:220;26800:6;9842:10;26848:138;26904:6;26848:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26848:19:0;;;;;;:11;:19;;;;;;;;9842:10;26848:33;;;;;;;;;;:37;:138::i;:::-;26777:8;:220::i;:::-;-1:-1:-1;27015:4:0;26573:454;;;;;:::o;27716:300::-;9842:10;27831:4;27925:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;27925:34:0;;;;;;;;;;27831:4;;27853:133;;27903:7;;27925:50;;27964:10;27925:38;:50::i;19028:148::-;18598:6;;-1:-1:-1;;;;;18598:6:0;9842:10;18598:22;18590:67;;;;-1:-1:-1;;;18590:67:0;;;;;;;:::i;:::-;;;;;;;;;19119:6:::1;::::0;19098:40:::1;::::0;19135:1:::1;::::0;-1:-1:-1;;;;;19119:6:0::1;::::0;19098:40:::1;::::0;19135:1;;19098:40:::1;19149:6;:19:::0;;-1:-1:-1;;;;;;19149:19:0::1;::::0;;19028:148::o;36445:136::-;18598:6;;-1:-1:-1;;;;;18598:6:0;9842:10;18598:22;18590:67;;;;-1:-1:-1;;;18590:67:0;;;;;;;:::i;:::-;26063:12;;36499:13:::1;:29:::0;26063:12;;36538:18:::1;:34:::0;36445:136::o;36735:453::-;18598:6;;-1:-1:-1;;;;;18598:6:0;9842:10;18598:22;18590:67;;;;-1:-1:-1;;;18590:67:0;;;;;;;:::i;:::-;36832:15:::1;;;;;;;;;-1:-1:-1::0;;;;;36832:15:0::1;-1:-1:-1::0;;;;;36832:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36814:55:0::1;;36878:4;36885:15;;;;;;;;;-1:-1:-1::0;;;;;36885:15:0::1;-1:-1:-1::0;;;;;36885:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36814:94;::::0;-1:-1:-1;;;;;;36814:94:0::1;::::0;;;;;;-1:-1:-1;;;;;4971:15:1;;;36814:94:0::1;::::0;::::1;4953:34:1::0;5023:15;;5003:18;;;4996:43;4888:18;;36814:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36796:15;:112:::0;;-1:-1:-1;;;;;;36796:112:0::1;-1:-1:-1::0;;;;;36796:112:0;;;::::1;::::0;;::::1;::::0;;36919:48:::1;::::0;-1:-1:-1;36919:25:0::1;:48::i;:::-;36998:4;37042:1;36978:26:::0;;;:11:::1;:26;::::0;;;;;;;37013:15:::1;::::0;;-1:-1:-1;;;;;37013:15:0;;::::1;36978:52:::0;;;;;;;;-1:-1:-1;;36978:66:0;;37055:15;25653:18;;;;;;;;;;37055:15;::::1;::::0;:31:::1;::::0;37094:9:::1;::::0;36998:4;37055:125:::1;::::0;-1:-1:-1;;;;;;37055:125:0::1;::::0;;;;;;-1:-1:-1;;;;;5409:15:1;;;37055:125:0::1;::::0;::::1;5391:34:1::0;5441:18;;;5434:34;37146:1:0::1;5484:18:1::0;;;5477:34;;;5527:18;;;5520:34;37152:10:0::1;5570:19:1::0;;;5563:44;37164:15:0::1;5623:19:1::0;;;5616:35;5325:19;;37055:125:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;36735:453::o:0;25798:104::-;25854:13;25887:7;25880:14;;;;;:::i;30812:400::-;30932:4;30954:228;9842:10;31004:7;31026:145;31083:15;31026:145;;;;;;;;;;;;;;;;;9842:10;31026:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;31026:34:0;;;;;;;;;;;;:38;:145::i;25213:216::-;25335:4;25357:42;9842:10;25381:9;25392:6;25357:9;:42::i;37196:180::-;18598:6;;-1:-1:-1;;;;;18598:6:0;9842:10;18598:22;18590:67;;;;-1:-1:-1;;;18590:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37281:26:0;::::1;;::::0;;;:17:::1;:26;::::0;;;;;;;;:37;;-1:-1:-1;;37281:37:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37334:34;;1163:41:1;;;37334:34:0::1;::::0;1136:18:1;37334:34:0::1;;;;;;;37196:180:::0;;:::o;18180:281::-;18598:6;;-1:-1:-1;;;;;18598:6:0;9842:10;18598:22;18590:67;;;;-1:-1:-1;;;18590:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18283:22:0;::::1;18261:110;;;::::0;-1:-1:-1;;;18261:110:0;;6175:2:1;18261:110:0::1;::::0;::::1;6157:21:1::0;6214:2;6194:18;;;6187:30;6253:34;6233:18;;;6226:62;-1:-1:-1;;;6304:18:1;;;6297:36;6350:19;;18261:110:0::1;5973:402:1::0;18261:110:0::1;18408:6;::::0;18387:38:::1;::::0;-1:-1:-1;;;;;18387:38:0;;::::1;::::0;18408:6:::1;::::0;18387:38:::1;::::0;18408:6:::1;::::0;18387:38:::1;18436:6;:17:::0;;-1:-1:-1;;;;;;18436:17:0::1;-1:-1:-1::0;;;;;18436:17:0;;;::::1;::::0;;;::::1;::::0;;18180:281::o;28823:380::-;-1:-1:-1;;;;;28959:19:0;;28951:68;;;;-1:-1:-1;;;28951:68:0;;6582:2:1;28951:68:0;;;6564:21:1;6621:2;6601:18;;;6594:30;6660:34;6640:18;;;6633:62;-1:-1:-1;;;6711:18:1;;;6704:34;6755:19;;28951:68:0;6380:400:1;28951:68:0;-1:-1:-1;;;;;29038:21:0;;29030:68;;;;-1:-1:-1;;;29030:68:0;;6987:2:1;29030:68:0;;;6969:21:1;7026:2;7006:18;;;6999:30;7065:34;7045:18;;;7038:62;-1:-1:-1;;;7116:18:1;;;7109:32;7158:19;;29030:68:0;6785:398:1;29030:68:0;-1:-1:-1;;;;;29111:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29163:32;;1361:25:1;;;29163:32:0;;1334:18:1;29163:32:0;;;;;;;;28823:380;;;:::o;37973:1644::-;-1:-1:-1;;;;;38075:23:0;;;;:56;;-1:-1:-1;;;;;;38103:28:0;;38124:6;38103:28;38075:56;38074:73;;;-1:-1:-1;38136:11:0;;38074:73;:110;;;;38151:33;38166:6;38174:9;38151:14;:33::i;:::-;38070:568;;;38201:42;38217:6;38225:9;38236:6;38201:15;:42::i;38070:568::-;38324:18;;38314:6;:28;;38306:88;;;;-1:-1:-1;;;38306:88:0;;7390:2:1;38306:88:0;;;7372:21:1;7429:2;7409:18;;;7402:30;7468:34;7448:18;;;7441:62;-1:-1:-1;;;7519:18:1;;;7512:45;7574:19;;38306:88:0;7188:411:1;38306:88:0;38426:15;;-1:-1:-1;;;;;38413:28:0;;;38426:15;;38413:28;38409:218;;-1:-1:-1;;;;;25653:18:0;;38462:24;25653:18;;;;;;;;;;;38565:13;;38536:25;38555:6;25653:18;38536:25;:::i;:::-;:42;;38528:83;;;;-1:-1:-1;;;38528:83:0;;8068:2:1;38528:83:0;;;8050:21:1;8107:2;8087:18;;;8080:30;8146:31;8126:18;;;8119:59;8195:18;;38528:83:0;7866:353:1;38528:83:0;38443:184;38409:218;38695:4;38658:16;25653:18;;;;;;;;;;;38737:14;;38767:6;;38725:26;;;;;-1:-1:-1;;;38767:6:0;;;;38766:7;:16;;;;;38777:5;38766:16;:42;;;;-1:-1:-1;;;;;;38787:21:0;;;;;;:13;:21;;;;;;;;38786:22;38766:42;38762:265;;;38825:6;:13;;-1:-1:-1;;;;38825:13:0;-1:-1:-1;;;38825:13:0;;;38871:8;38898:11;;38894:93;;38955:15;;38930:41;;38946:7;;-1:-1:-1;;;;;38955:15:0;38930;:41::i;:::-;-1:-1:-1;39001:6:0;:14;;-1:-1:-1;;;;39001:14:0;;;38762:265;39056:6;;-1:-1:-1;;;;;39077:28:0;;39039:13;39077:28;;;:17;:28;;;;;;39056:6;-1:-1:-1;;;39056:6:0;;;;;39055:7;;39077:28;;:57;;-1:-1:-1;;;;;;39109:25:0;;;;;;:17;:25;;;;;;;;39077:57;39073:106;;;-1:-1:-1;39162:5:0;39073:106;39193:8;39189:368;;;39218:15;39236:30;39262:3;39236:21;39247:9;;39236:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;-1:-1:-1;;;;;39297:24:0;;;;;;:13;:24;;;;;;39218:48;;-1:-1:-1;39297:24:0;;39293:131;;;39377:31;39404:3;39377:22;39388:10;;39377:6;:10;;:22;;;;:::i;:31::-;39367:41;;39293:131;39447:19;:6;39458:7;39447:10;:19::i;:::-;39438:28;;39498:47;39514:6;39530:4;39537:7;39498:15;:47::i;:::-;39203:354;39189:368;39567:42;39583:6;39591:9;39602:6;39567:15;:42::i;:::-;38059:1558;;;37973:1644;;;:::o;1107:226::-;1227:7;1263:12;1255:6;;;;1247:29;;;;-1:-1:-1;;;1247:29:0;;;;;;;;:::i;:::-;-1:-1:-1;1287:9:0;1299:5;1303:1;1299;:5;:::i;:::-;1287:17;1107:226;-1:-1:-1;;;;;1107:226:0:o;624:181::-;682:7;;714:5;718:1;714;:5;:::i;:::-;702:17;;743:1;738;:6;;730:46;;;;-1:-1:-1;;;730:46:0;;8559:2:1;730:46:0;;;8541:21:1;8598:2;8578:18;;;8571:30;8637:29;8617:18;;;8610:57;8684:18;;730:46:0;8357:351:1;730:46:0;796:1;624:181;-1:-1:-1;;;624:181:0:o;35535:302::-;-1:-1:-1;;;;;35637:19:0;;;;;;:13;:19;;;;;;:28;;;:19;;;;:28;;;35615:134;;;;-1:-1:-1;;;35615:134:0;;8915:2:1;35615:134:0;;;8897:21:1;8954:2;8934:18;;;8927:30;8993:34;8973:18;;;8966:62;9064:26;9044:18;;;9037:54;9108:19;;35615:134:0;8713:420:1;35615:134:0;-1:-1:-1;;;;;35760:19:0;;;;;;:13;:19;;;;;;:27;;-1:-1:-1;;35760:27:0;;;;;;;;;;35803:26;;35760:27;;:19;35803:26;;;35535:302;;:::o;35845:256::-;-1:-1:-1;;;;;35947:28:0;;35922:4;35947:28;;;:17;:28;;;;;;;;;:57;;-1:-1:-1;;;;;;35979:25:0;;;;;;:17;:25;;;;;;;;35947:57;:146;;;-1:-1:-1;36019:27:0;;36008:81;;-1:-1:-1;;;36008:81:0;;-1:-1:-1;;;;;4971:15:1;;;36008:81:0;;;4953:34:1;5023:15;;;5003:18;;;4996:43;36092:1:0;;36019:27;;36008:62;;4888:18:1;;36008:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:85;35939:154;35845:256;-1:-1:-1;;;35845:256:0:o;29691:610::-;-1:-1:-1;;;;;29831:20:0;;29823:70;;;;-1:-1:-1;;;29823:70:0;;9529:2:1;29823:70:0;;;9511:21:1;9568:2;9548:18;;;9541:30;9607:34;9587:18;;;9580:62;-1:-1:-1;;;9658:18:1;;;9651:35;9703:19;;29823:70:0;9327:401:1;29823:70:0;-1:-1:-1;;;;;29912:23:0;;29904:71;;;;-1:-1:-1;;;29904:71:0;;9935:2:1;29904:71:0;;;9917:21:1;9974:2;9954:18;;;9947:30;10013:34;9993:18;;;9986:62;-1:-1:-1;;;10064:18:1;;;10057:33;10107:19;;29904:71:0;9733:399:1;29904:71:0;30068:108;30104:6;30068:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30068:17:0;;:9;:17;;;;;;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;30048:17:0;;;:9;:17;;;;;;;;;;;:128;;;;30210:20;;;;;;;:32;;30235:6;30210:24;:32::i;:::-;-1:-1:-1;;;;;30187:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;30258:35;1361:25:1;;;30187:20:0;;30258:35;;;;;;1334:18:1;30258:35:0;1215:177:1;36150:283:0;36253:21;36285:27;36305:6;36285:19;:27::i;:::-;36314:18;36335:41;:21;36361:14;36335:25;:41::i;:::-;36387:38;;36314:62;;-1:-1:-1;;;;;;36387:26:0;;;:38;;;;;36314:62;;36387:38;;;;36314:62;36387:26;:38;;;;;;;;;;;;;;;;;;;;;36217:216;;36150:283;;:::o;2614:471::-;2672:7;2917:1;2922;2917:6;2913:47;;-1:-1:-1;2947:1:0;2940:8;;2913:47;2972:9;2984:5;2988:1;2984;:5;:::i;:::-;2972:17;-1:-1:-1;3017:1:0;3008:5;3012:1;2972:17;3008:5;:::i;:::-;:10;3000:56;;;;-1:-1:-1;;;3000:56:0;;10734:2:1;3000:56:0;;;10716:21:1;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;-1:-1:-1;;;10863:18:1;;;10856:31;10904:19;;3000:56:0;10532:397:1;3559:132:0;3617:7;3644:39;3648:1;3651;3644:39;;;;;;;;;;;;;;;;;:3;:39::i;2215:136::-;2273:7;2300:43;2304:1;2307;2300:43;;;;;;;;;;;;;;;;;:3;:43::i;37384:581::-;37537:16;;;37551:1;37537:16;;;;;;;;37513:21;;37537:16;;;;;;;;;;-1:-1:-1;37537:16:0;37513:40;;37582:4;37564;37569:1;37564:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37564:23:0;;;:7;;;;;;;;;;:23;;;;37599:15;;:22;;;-1:-1:-1;;;37599:22:0;;;;:15;;;;;:20;;:22;;;;;37564:7;;37599:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37589:4;37594:1;37589:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37589:32:0;;;:7;;;;;;;;;:32;37664:15;;37632:62;;37649:4;;37664:15;37682:11;37632:8;:62::i;:::-;37733:15;;:224;;-1:-1:-1;;;37733:224:0;;-1:-1:-1;;;;;37733:15:0;;;;:66;;:224;;37814:11;;37733:15;;37884:4;;37911;;37931:15;;37733:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4868:312;4988:7;5023:12;5016:5;5008:28;;;;-1:-1:-1;;;5008:28:0;;;;;;;;:::i;:::-;-1:-1:-1;5047:9:0;5059:5;5063:1;5059;: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;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703: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;2488:247::-;2547:6;2600:2;2588:9;2579:7;2575:23;2571:32;2568:52;;;2616:1;2613;2606:12;2568:52;2655:9;2642:23;2674:31;2699:5;2674:31;:::i;2740:416::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2921:9;2908:23;2940:31;2965:5;2940:31;:::i;:::-;2990:5;-1:-1:-1;3047:2:1;3032:18;;3019:32;3089:15;;3082:23;3070:36;;3060:64;;3120:1;3117;3110:12;3060:64;3143:7;3133:17;;;2740:416;;;;;:::o;3161:388::-;3229:6;3237;3290:2;3278:9;3269:7;3265:23;3261:32;3258:52;;;3306:1;3303;3296:12;3258:52;3345:9;3332:23;3364:31;3389:5;3364:31;:::i;:::-;3414:5;-1:-1:-1;3471:2:1;3456:18;;3443:32;3484:33;3443:32;3484:33;:::i;3554:180::-;3613:6;3666:2;3654:9;3645:7;3641:23;3637:32;3634:52;;;3682:1;3679;3672:12;3634:52;-1:-1:-1;3705:23:1;;3554:180;-1:-1:-1;3554:180:1:o;3739:380::-;3818:1;3814:12;;;;3861;;;3882:61;;3936:4;3928:6;3924:17;3914:27;;3882:61;3989:2;3981:6;3978:14;3958:18;3955:38;3952:161;;4035:10;4030:3;4026:20;4023:1;4016:31;4070:4;4067:1;4060:15;4098:4;4095:1;4088:15;3952:161;;3739:380;;;:::o;4124:356::-;4326:2;4308:21;;;4345:18;;;4338:30;4404:34;4399:2;4384:18;;4377:62;4471:2;4456:18;;4124:356::o;4485:251::-;4555:6;4608:2;4596:9;4587:7;4583:23;4579:32;4576:52;;;4624:1;4621;4614:12;4576:52;4656:9;4650:16;4675:31;4700:5;4675:31;:::i;5662:306::-;5750:6;5758;5766;5819:2;5807:9;5798:7;5794:23;5790:32;5787:52;;;5835:1;5832;5825:12;5787:52;5864:9;5858:16;5848:26;;5914:2;5903:9;5899:18;5893:25;5883:35;;5958:2;5947:9;5943:18;5937:25;5927:35;;5662:306;;;;;:::o;7604:127::-;7665:10;7660:3;7656:20;7653:1;7646:31;7696:4;7693:1;7686:15;7720:4;7717:1;7710:15;7736:125;7801:9;;;7822:10;;;7819:36;;;7835:18;;:::i;8224:128::-;8291:9;;;8312:11;;;8309:37;;;8326:18;;:::i;9138:184::-;9208:6;9261:2;9249:9;9240:7;9236:23;9232:32;9229:52;;;9277:1;9274;9267:12;9229:52;-1:-1:-1;9300:16:1;;9138:184;-1:-1:-1;9138:184:1:o;10137:168::-;10210:9;;;10241;;10258:15;;;10252:22;;10238:37;10228:71;;10279:18;;:::i;10310:217::-;10350:1;10376;10366:132;;10420:10;10415:3;10411:20;10408:1;10401:31;10455:4;10452:1;10445:15;10483:4;10480:1;10473:15;10366:132;-1:-1:-1;10512:9:1;;10310:217::o;11066:127::-;11127:10;11122:3;11118:20;11115:1;11108:31;11158:4;11155:1;11148:15;11182:4;11179:1;11172:15;11198:980;11460:4;11508:3;11497:9;11493:19;11539:6;11528:9;11521:25;11565:2;11603:6;11598:2;11587:9;11583:18;11576:34;11646:3;11641:2;11630:9;11626:18;11619:31;11670:6;11705;11699:13;11736:6;11728;11721:22;11774:3;11763:9;11759:19;11752:26;;11813:2;11805:6;11801:15;11787:29;;11834:1;11844:195;11858:6;11855:1;11852:13;11844:195;;;11923:13;;-1:-1:-1;;;;;11919:39:1;11907:52;;12014:15;;;;11979:12;;;;11955:1;11873:9;11844:195;;;-1:-1:-1;;;;;;;12095:32:1;;;;12090:2;12075:18;;12068:60;-1:-1:-1;;;12159:3:1;12144:19;12137:35;12056:3;11198:980;-1:-1:-1;;;11198:980:1:o

Swarm Source

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