ETH Price: $2,396.66 (-0.31%)

Token

OneCoin (OC)
 

Overview

Max Total Supply

15,000,000 OC

Holders

112

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
45,298.40210168271166537 OC

Value
$0.00
0x30bae2c28178e596c53d1b9822722da19c955b45
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:
OneCoin

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-03
*/

// Website  https://oldonecoin.com/
// Tg       https://t.me/OldOneCoinPortal
// Twitter  https://twitter.com/onecoinerc20
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

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

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

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @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_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev 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
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be 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 Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/lsd.sol


pragma solidity ^0.8.0;







contract OneCoin is ERC20, Ownable {
    uint256 private constant PERCENT_DENOMENATOR = 1000;

    address private _marketingWallet;

    mapping(address => bool) private _isTaxExcluded;
    mapping(address => bool) private _excludeLimit;

    uint256 public marketingTax = (PERCENT_DENOMENATOR * 3) / 100;
    uint256 public additionalSellTax = (PERCENT_DENOMENATOR * 17) / 100;

    uint256 public maxTx = (PERCENT_DENOMENATOR * 1) / 100;
    uint256 public maxWallet = (PERCENT_DENOMENATOR * 2) / 100;
    bool public enableLimits = true;

    bool private _taxesOff;

    uint256 private _liquifyRate = (PERCENT_DENOMENATOR * 1) / 100;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private _swapEnabled = true;
    bool private _swapping = false;

    modifier swapLock() {
        _swapping = true;
        _;
        _swapping = false;
    }

    constructor() ERC20('OneCoin', 'OC')  {
        _mint(owner(), 15_000_000 * 10 ** 18);

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );
        _marketingWallet = owner();
        uniswapV2Router = _uniswapV2Router;
        _isTaxExcluded[address(this)] = true;
        _isTaxExcluded[msg.sender] = true;
        _excludeLimit[address(this)] = true;
        _excludeLimit[msg.sender] = true;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual override {
        bool _isOwner = sender == owner() || recipient == owner();
        uint256 contractTokenBalance = balanceOf(address(this));

        bool _isBuy = sender == uniswapV2Pair && recipient != address(uniswapV2Router);
        bool _isSell = recipient == uniswapV2Pair;
        bool _isSwap = _isBuy || _isSell;

        if (_isSwap && enableLimits) {
            bool _skipCheck = _excludeLimit[recipient] || _excludeLimit[sender];
            uint256 _maxTx = totalSupply() * maxTx / PERCENT_DENOMENATOR;
            require(_maxTx >= amount || _skipCheck, "Tx amount exceed limit");
            if (_isBuy) {
                uint256 _maxWallet = totalSupply() * maxWallet / PERCENT_DENOMENATOR;
                require(_maxWallet >= balanceOf(recipient) + amount || _skipCheck, "Total amount exceed wallet limit");
            }
        }

        uint256 _minSwap = (balanceOf(uniswapV2Pair) * _liquifyRate) / PERCENT_DENOMENATOR;
        bool _overMin = contractTokenBalance >= _minSwap;

        if (_swapEnabled && !_swapping && !_isOwner && _overMin && sender != uniswapV2Pair) {
            _swap(_minSwap, _isSell);
        }

        uint256 tax = 0;
        if (_isSwap && !_taxesOff && !(_isTaxExcluded[sender] || _isTaxExcluded[recipient])) {
            tax = (amount * calcTotalTax(_isSell)) / PERCENT_DENOMENATOR;
            if (tax > 0) {
                super._transfer(sender, address(this), tax);
            }
        }
        super._transfer(sender, recipient, amount - tax);
    }

    function _swap(uint256 _amountToSwap, bool isSell) private swapLock {
        _swapTokensForEth(_amountToSwap);
        payable(_marketingWallet).transfer(address(this).balance);
    }

    function _swapTokensForEth(uint256 tokensToSwap) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokensToSwap);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokensToSwap,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}

    function calcTotalTax(bool isSell) private returns (uint256) {
        if (isSell) {
            return marketingTax + additionalSellTax;
        }
        return marketingTax;
    }

    function setAdditionalSellTax(uint256 _tax) external onlyOwner {
        additionalSellTax = _tax;
        require(additionalSellTax + marketingTax <= (PERCENT_DENOMENATOR * 40) / 100, 'taxes cannot be above 40%');
    }

    function setMaxWallet(uint256 _maxWallet) external onlyOwner {
        require(_maxWallet >= 10, 'max wallet cannot be below 0.1%');
        maxWallet = _maxWallet;
    }

    function setMaxTx(uint256 _maxTx) external onlyOwner {
        require(_maxTx >= 10, 'max tx cannot be below 0.1%');
        maxTx = _maxTx;
    }

    function setMarketingTax(uint256 _tax) external onlyOwner {
        marketingTax = _tax;
        require(additionalSellTax + marketingTax <= (PERCENT_DENOMENATOR * 40) / 100, 'taxes cannot be above 40%');
    }

    function setEnableLimits(bool _enable) external onlyOwner {
        enableLimits = _enable;
    }

    function setLiquifyRate(uint256 _rate) external onlyOwner {
        _liquifyRate = _rate;
        require(_rate <= PERCENT_DENOMENATOR / 10, 'cannot be more than 10%');
    }

    function setIsTaxExcluded(address _wallet, bool _isExcluded) external onlyOwner {
        _isTaxExcluded[_wallet] = _isExcluded;
    }

    function setTaxesOff(bool _areOff) external onlyOwner {
        _taxesOff = _areOff;
    }

    function setSwapEnabled(bool _enabled) external onlyOwner {
        _swapEnabled = _enabled;
    }

    function forceSwap() external swapLock onlyOwner {
        _swapTokensForEth(balanceOf(address(this)));
        (bool success,) = address(_marketingWallet).call{value : address(this).balance}("");
    }

    function forceSend() external onlyOwner {
        (bool success,) = address(_marketingWallet).call{value : address(this).balance}("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[],"name":"additionalSellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"forceSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwap","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":[],"name":"marketingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setAdditionalSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"setIsTaxExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setLiquifyRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setMarketingTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_areOff","type":"bool"}],"name":"setTaxesOff","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526064620000156103e86003620004e0565b62000021919062000502565b6009556064620000356103e86011620004e0565b62000041919062000502565b600a556064620000556103e86001620004e0565b62000061919062000502565b600b556064620000756103e86002620004e0565b62000081919062000502565b600c55600d805460ff19166001908117909155606490620000a6906103e890620004e0565b620000b2919062000502565b600e556010805461ffff60a01b1916600160a01b179055348015620000d657600080fd5b506040518060400160405280600781526020016627b732a1b7b4b760c91b815250604051806040016040528060028152602001614f4360f01b8152508160039081620001239190620005c9565b506004620001328282620005c9565b5050506200014f620001496200038760201b60201c565b6200038b565b62000178620001666005546001600160a01b031690565b6a0c685fa11e01ec6f000000620003dd565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001f6919062000695565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000244573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026a919062000695565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002de919062000695565b601080546001600160a01b0319166001600160a01b0392831617905560055416600680546001600160a01b039283166001600160a01b031991821617909155600f8054939092169216919091179055306000818152600760209081526040808320805460ff1990811660019081179092553380865283862080548316841790559585526008909352818420805484168217905593835290912080549091169091179055620006e2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004385760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200044c9190620006c7565b90915550506001600160a01b038216600090815260208190526040812080548392906200047b908490620006c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620004fd57620004fd620004ca565b500290565b6000826200052057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200055057607f821691505b6020821081036200057157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004c557600081815260208120601f850160051c81016020861015620005a05750805b601f850160051c820191505b81811015620005c157828155600101620005ac565b505050505050565b81516001600160401b03811115620005e557620005e562000525565b620005fd81620005f684546200053b565b8462000577565b602080601f8311600181146200063557600084156200061c5750858301515b600019600386901b1c1916600185901b178555620005c1565b600085815260208120601f198616915b82811015620006665788860151825594840194600190910190840162000645565b5085821015620006855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006a857600080fd5b81516001600160a01b0381168114620006c057600080fd5b9392505050565b60008219821115620006dd57620006dd620004ca565b500190565b61183280620006f26000396000f3fe6080604052600436106101e75760003560e01c806370a0823111610102578063bc33718211610095578063e01af92c11610064578063e01af92c14610567578063f2fde38b14610587578063f8b45b05146105a7578063fbeedd88146105bd57600080fd5b8063bc337182146104f2578063d6594eda14610512578063dd62ed3e14610532578063df778d261461055257600080fd5b80638da5cb5b116100d15780638da5cb5b1461047f57806395d89b411461049d578063a457c2d7146104b2578063a9059cbb146104d257600080fd5b806370a0823114610408578063715018a61461043e5780637437681e14610453578063876809f51461046957600080fd5b80631e8e385b1161017a57806349bd5a5e1161014957806349bd5a5e1461038e5780634a827cee146103ae5780635d0044ca146103ce5780636902ca61146103ee57600080fd5b80631e8e385b1461031257806323b872dd14610332578063313ce56714610352578063395093511461036e57600080fd5b806314ea796d116101b657806314ea796d146102855780631694505e146102a557806318160ddd146102dd5780631d2cb02d146102fc57600080fd5b8063045494f4146101f357806306fdde0314610215578063095ea7b31461024057806312b77e8a1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e3660046114fb565b6105dd565b005b34801561022157600080fd5b5061022a6105f8565b604051610237919061151d565b60405180910390f35b34801561024c57600080fd5b5061026061025b366004611587565b61068a565b6040519015158152602001610237565b34801561027c57600080fd5b506102136106a2565b34801561029157600080fd5b506102136102a03660046114fb565b610702565b3480156102b157600080fd5b50600f546102c5906001600160a01b031681565b6040516001600160a01b039091168152602001610237565b3480156102e957600080fd5b506002545b604051908152602001610237565b34801561030857600080fd5b506102ee60095481565b34801561031e57600080fd5b5061021361032d3660046115b3565b610724565b34801561033e57600080fd5b5061026061034d3660046115cc565b6107b0565b34801561035e57600080fd5b5060405160128152602001610237565b34801561037a57600080fd5b50610260610389366004611587565b6107d4565b34801561039a57600080fd5b506010546102c5906001600160a01b031681565b3480156103ba57600080fd5b506102136103c93660046115b3565b6107f6565b3480156103da57600080fd5b506102136103e93660046115b3565b610812565b3480156103fa57600080fd5b50600d546102609060ff1681565b34801561041457600080fd5b506102ee61042336600461160d565b6001600160a01b031660009081526020819052604090205490565b34801561044a57600080fd5b50610213610870565b34801561045f57600080fd5b506102ee600b5481565b34801561047557600080fd5b506102ee600a5481565b34801561048b57600080fd5b506005546001600160a01b03166102c5565b3480156104a957600080fd5b5061022a610884565b3480156104be57600080fd5b506102606104cd366004611587565b610893565b3480156104de57600080fd5b506102606104ed366004611587565b61090e565b3480156104fe57600080fd5b5061021361050d3660046115b3565b61091c565b34801561051e57600080fd5b5061021361052d3660046115b3565b61097a565b34801561053e57600080fd5b506102ee61054d36600461162a565b6109e3565b34801561055e57600080fd5b50610213610a0e565b34801561057357600080fd5b506102136105823660046114fb565b610aa7565b34801561059357600080fd5b506102136105a236600461160d565b610acd565b3480156105b357600080fd5b506102ee600c5481565b3480156105c957600080fd5b506102136105d8366004611663565b610b43565b6105e5610b76565b600d805460ff1916911515919091179055565b60606003805461060790611698565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611698565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b600033610698818585610bd0565b5060019392505050565b6106aa610b76565b6006546040516000916001600160a01b03169047908381818185875af1925050503d80600081146106f7576040519150601f19603f3d011682016040523d82523d6000602084013e6106fc565b606091505b50505050565b61070a610b76565b600d80549115156101000261ff0019909216919091179055565b61072c610b76565b600a81905560646107406103e860286116e8565b61074a9190611707565b600954600a5461075a9190611729565b11156107ad5760405162461bcd60e51b815260206004820152601960248201527f74617865732063616e6e6f742062652061626f7665203430250000000000000060448201526064015b60405180910390fd5b50565b6000336107be858285610cf4565b6107c9858585610d68565b506001949350505050565b6000336106988185856107e783836109e3565b6107f19190611729565b610bd0565b6107fe610b76565b600981905560646107406103e860286116e8565b61081a610b76565b600a81101561086b5760405162461bcd60e51b815260206004820152601f60248201527f6d61782077616c6c65742063616e6e6f742062652062656c6f7720302e31250060448201526064016107a4565b600c55565b610878610b76565b61088260006110df565b565b60606004805461060790611698565b600033816108a182866109e3565b9050838110156109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107a4565b6107c98286868403610bd0565b600033610698818585610d68565b610924610b76565b600a8110156109755760405162461bcd60e51b815260206004820152601b60248201527f6d61782074782063616e6e6f742062652062656c6f7720302e3125000000000060448201526064016107a4565b600b55565b610982610b76565b600e819055610994600a6103e8611707565b8111156107ad5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206265206d6f7265207468616e2031302500000000000000000060448201526064016107a4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6010805460ff60a81b1916600160a81b179055610a29610b76565b30600090815260208190526040902054610a4290611131565b6006546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b50506010805460ff60a81b191690555050565b610aaf610b76565b60108054911515600160a01b0260ff60a01b19909216919091179055565b610ad5610b76565b6001600160a01b038116610b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a4565b6107ad816110df565b610b4b610b76565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a4565b6001600160a01b038316610c325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a4565b6001600160a01b038216610c935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d0084846109e3565b905060001981146106fc5781811015610d5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107a4565b6106fc8484848403610bd0565b6000610d7c6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610da857506005546001600160a01b038481169116145b30600090815260208190526040812054601054929350916001600160a01b038781169116148015610de75750600f546001600160a01b03868116911614155b6010549091506001600160a01b0386811691161460008280610e065750815b9050808015610e175750600d5460ff165b15610f88576001600160a01b03871660009081526008602052604081205460ff1680610e5b57506001600160a01b03891660009081526008602052604090205460ff165b905060006103e8600b54610e6e60025490565b610e7891906116e8565b610e829190611707565b90508781101580610e905750815b610ed55760405162461bcd60e51b8152602060048201526016602482015275151e08185b5bdd5b9d08195e18d95959081b1a5b5a5d60521b60448201526064016107a4565b8415610f855760006103e8600c54610eec60025490565b610ef691906116e8565b610f009190611707565b905088610f228b6001600160a01b031660009081526020819052604090205490565b610f2c9190611729565b81101580610f375750825b610f835760405162461bcd60e51b815260206004820181905260248201527f546f74616c20616d6f756e74206578636565642077616c6c6574206c696d697460448201526064016107a4565b505b50505b600e546010546001600160a01b031660009081526020819052604081205490916103e891610fb691906116e8565b610fc09190611707565b6010549091508186101590600160a01b900460ff168015610feb5750601054600160a81b900460ff16155b8015610ff5575086155b8015610ffe5750805b801561101857506010546001600160a01b038b8116911614155b1561102757611027828561128b565b600083801561103e5750600d54610100900460ff16155b801561108657506001600160a01b038b1660009081526007602052604090205460ff168061108457506001600160a01b038a1660009081526007602052604090205460ff165b155b156110be576103e8611097866112f2565b6110a1908b6116e8565b6110ab9190611707565b905080156110be576110be8b3083611318565b6110d28b8b6110cd848d611741565b611318565b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061116657611166611758565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e3919061176e565b816001815181106111f6576111f6611758565b6001600160a01b039283166020918202929092010152600f5461121c9130911684610bd0565b600f5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061125590859060009086903090429060040161178b565b600060405180830381600087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050505050565b6010805460ff60a81b1916600160a81b1790556112a782611131565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112e0573d6000803e3d6000fd5b50506010805460ff60a81b1916905550565b6000811561131057600a5460095461130a9190611729565b92915050565b505060095490565b6001600160a01b03831661137c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107a4565b6001600160a01b0382166113de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107a4565b6001600160a01b038316600090815260208190526040902054818110156114565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061148d908490611729565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d991815260200190565b60405180910390a36106fc565b803580151581146114f657600080fd5b919050565b60006020828403121561150d57600080fd5b611516826114e6565b9392505050565b600060208083528351808285015260005b8181101561154a5785810183015185820160400152820161152e565b8181111561155c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146107ad57600080fd5b6000806040838503121561159a57600080fd5b82356115a581611572565b946020939093013593505050565b6000602082840312156115c557600080fd5b5035919050565b6000806000606084860312156115e157600080fd5b83356115ec81611572565b925060208401356115fc81611572565b929592945050506040919091013590565b60006020828403121561161f57600080fd5b813561151681611572565b6000806040838503121561163d57600080fd5b823561164881611572565b9150602083013561165881611572565b809150509250929050565b6000806040838503121561167657600080fd5b823561168181611572565b915061168f602084016114e6565b90509250929050565b600181811c908216806116ac57607f821691505b6020821081036116cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611702576117026116d2565b500290565b60008261172457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561173c5761173c6116d2565b500190565b600082821015611753576117536116d2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561178057600080fd5b815161151681611572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117db5784516001600160a01b0316835293830193918301916001016117b6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220be1bd0132185b0f77393655583313a0103a17d1ede24bd2f387ee24ae549452764736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806370a0823111610102578063bc33718211610095578063e01af92c11610064578063e01af92c14610567578063f2fde38b14610587578063f8b45b05146105a7578063fbeedd88146105bd57600080fd5b8063bc337182146104f2578063d6594eda14610512578063dd62ed3e14610532578063df778d261461055257600080fd5b80638da5cb5b116100d15780638da5cb5b1461047f57806395d89b411461049d578063a457c2d7146104b2578063a9059cbb146104d257600080fd5b806370a0823114610408578063715018a61461043e5780637437681e14610453578063876809f51461046957600080fd5b80631e8e385b1161017a57806349bd5a5e1161014957806349bd5a5e1461038e5780634a827cee146103ae5780635d0044ca146103ce5780636902ca61146103ee57600080fd5b80631e8e385b1461031257806323b872dd14610332578063313ce56714610352578063395093511461036e57600080fd5b806314ea796d116101b657806314ea796d146102855780631694505e146102a557806318160ddd146102dd5780631d2cb02d146102fc57600080fd5b8063045494f4146101f357806306fdde0314610215578063095ea7b31461024057806312b77e8a1461027057600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e3660046114fb565b6105dd565b005b34801561022157600080fd5b5061022a6105f8565b604051610237919061151d565b60405180910390f35b34801561024c57600080fd5b5061026061025b366004611587565b61068a565b6040519015158152602001610237565b34801561027c57600080fd5b506102136106a2565b34801561029157600080fd5b506102136102a03660046114fb565b610702565b3480156102b157600080fd5b50600f546102c5906001600160a01b031681565b6040516001600160a01b039091168152602001610237565b3480156102e957600080fd5b506002545b604051908152602001610237565b34801561030857600080fd5b506102ee60095481565b34801561031e57600080fd5b5061021361032d3660046115b3565b610724565b34801561033e57600080fd5b5061026061034d3660046115cc565b6107b0565b34801561035e57600080fd5b5060405160128152602001610237565b34801561037a57600080fd5b50610260610389366004611587565b6107d4565b34801561039a57600080fd5b506010546102c5906001600160a01b031681565b3480156103ba57600080fd5b506102136103c93660046115b3565b6107f6565b3480156103da57600080fd5b506102136103e93660046115b3565b610812565b3480156103fa57600080fd5b50600d546102609060ff1681565b34801561041457600080fd5b506102ee61042336600461160d565b6001600160a01b031660009081526020819052604090205490565b34801561044a57600080fd5b50610213610870565b34801561045f57600080fd5b506102ee600b5481565b34801561047557600080fd5b506102ee600a5481565b34801561048b57600080fd5b506005546001600160a01b03166102c5565b3480156104a957600080fd5b5061022a610884565b3480156104be57600080fd5b506102606104cd366004611587565b610893565b3480156104de57600080fd5b506102606104ed366004611587565b61090e565b3480156104fe57600080fd5b5061021361050d3660046115b3565b61091c565b34801561051e57600080fd5b5061021361052d3660046115b3565b61097a565b34801561053e57600080fd5b506102ee61054d36600461162a565b6109e3565b34801561055e57600080fd5b50610213610a0e565b34801561057357600080fd5b506102136105823660046114fb565b610aa7565b34801561059357600080fd5b506102136105a236600461160d565b610acd565b3480156105b357600080fd5b506102ee600c5481565b3480156105c957600080fd5b506102136105d8366004611663565b610b43565b6105e5610b76565b600d805460ff1916911515919091179055565b60606003805461060790611698565b80601f016020809104026020016040519081016040528092919081815260200182805461063390611698565b80156106805780601f1061065557610100808354040283529160200191610680565b820191906000526020600020905b81548152906001019060200180831161066357829003601f168201915b5050505050905090565b600033610698818585610bd0565b5060019392505050565b6106aa610b76565b6006546040516000916001600160a01b03169047908381818185875af1925050503d80600081146106f7576040519150601f19603f3d011682016040523d82523d6000602084013e6106fc565b606091505b50505050565b61070a610b76565b600d80549115156101000261ff0019909216919091179055565b61072c610b76565b600a81905560646107406103e860286116e8565b61074a9190611707565b600954600a5461075a9190611729565b11156107ad5760405162461bcd60e51b815260206004820152601960248201527f74617865732063616e6e6f742062652061626f7665203430250000000000000060448201526064015b60405180910390fd5b50565b6000336107be858285610cf4565b6107c9858585610d68565b506001949350505050565b6000336106988185856107e783836109e3565b6107f19190611729565b610bd0565b6107fe610b76565b600981905560646107406103e860286116e8565b61081a610b76565b600a81101561086b5760405162461bcd60e51b815260206004820152601f60248201527f6d61782077616c6c65742063616e6e6f742062652062656c6f7720302e31250060448201526064016107a4565b600c55565b610878610b76565b61088260006110df565b565b60606004805461060790611698565b600033816108a182866109e3565b9050838110156109015760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107a4565b6107c98286868403610bd0565b600033610698818585610d68565b610924610b76565b600a8110156109755760405162461bcd60e51b815260206004820152601b60248201527f6d61782074782063616e6e6f742062652062656c6f7720302e3125000000000060448201526064016107a4565b600b55565b610982610b76565b600e819055610994600a6103e8611707565b8111156107ad5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f74206265206d6f7265207468616e2031302500000000000000000060448201526064016107a4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6010805460ff60a81b1916600160a81b179055610a29610b76565b30600090815260208190526040902054610a4290611131565b6006546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610a8f576040519150601f19603f3d011682016040523d82523d6000602084013e610a94565b606091505b50506010805460ff60a81b191690555050565b610aaf610b76565b60108054911515600160a01b0260ff60a01b19909216919091179055565b610ad5610b76565b6001600160a01b038116610b3a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a4565b6107ad816110df565b610b4b610b76565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108825760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107a4565b6001600160a01b038316610c325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107a4565b6001600160a01b038216610c935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107a4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610d0084846109e3565b905060001981146106fc5781811015610d5b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107a4565b6106fc8484848403610bd0565b6000610d7c6005546001600160a01b031690565b6001600160a01b0316846001600160a01b03161480610da857506005546001600160a01b038481169116145b30600090815260208190526040812054601054929350916001600160a01b038781169116148015610de75750600f546001600160a01b03868116911614155b6010549091506001600160a01b0386811691161460008280610e065750815b9050808015610e175750600d5460ff165b15610f88576001600160a01b03871660009081526008602052604081205460ff1680610e5b57506001600160a01b03891660009081526008602052604090205460ff165b905060006103e8600b54610e6e60025490565b610e7891906116e8565b610e829190611707565b90508781101580610e905750815b610ed55760405162461bcd60e51b8152602060048201526016602482015275151e08185b5bdd5b9d08195e18d95959081b1a5b5a5d60521b60448201526064016107a4565b8415610f855760006103e8600c54610eec60025490565b610ef691906116e8565b610f009190611707565b905088610f228b6001600160a01b031660009081526020819052604090205490565b610f2c9190611729565b81101580610f375750825b610f835760405162461bcd60e51b815260206004820181905260248201527f546f74616c20616d6f756e74206578636565642077616c6c6574206c696d697460448201526064016107a4565b505b50505b600e546010546001600160a01b031660009081526020819052604081205490916103e891610fb691906116e8565b610fc09190611707565b6010549091508186101590600160a01b900460ff168015610feb5750601054600160a81b900460ff16155b8015610ff5575086155b8015610ffe5750805b801561101857506010546001600160a01b038b8116911614155b1561102757611027828561128b565b600083801561103e5750600d54610100900460ff16155b801561108657506001600160a01b038b1660009081526007602052604090205460ff168061108457506001600160a01b038a1660009081526007602052604090205460ff165b155b156110be576103e8611097866112f2565b6110a1908b6116e8565b6110ab9190611707565b905080156110be576110be8b3083611318565b6110d28b8b6110cd848d611741565b611318565b5050505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061116657611166611758565b6001600160a01b03928316602091820292909201810191909152600f54604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156111bf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111e3919061176e565b816001815181106111f6576111f6611758565b6001600160a01b039283166020918202929092010152600f5461121c9130911684610bd0565b600f5460405163791ac94760e01b81526001600160a01b039091169063791ac9479061125590859060009086903090429060040161178b565b600060405180830381600087803b15801561126f57600080fd5b505af1158015611283573d6000803e3d6000fd5b505050505050565b6010805460ff60a81b1916600160a81b1790556112a782611131565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156112e0573d6000803e3d6000fd5b50506010805460ff60a81b1916905550565b6000811561131057600a5460095461130a9190611729565b92915050565b505060095490565b6001600160a01b03831661137c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107a4565b6001600160a01b0382166113de5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107a4565b6001600160a01b038316600090815260208190526040902054818110156114565760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107a4565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061148d908490611729565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d991815260200190565b60405180910390a36106fc565b803580151581146114f657600080fd5b919050565b60006020828403121561150d57600080fd5b611516826114e6565b9392505050565b600060208083528351808285015260005b8181101561154a5785810183015185820160400152820161152e565b8181111561155c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b03811681146107ad57600080fd5b6000806040838503121561159a57600080fd5b82356115a581611572565b946020939093013593505050565b6000602082840312156115c557600080fd5b5035919050565b6000806000606084860312156115e157600080fd5b83356115ec81611572565b925060208401356115fc81611572565b929592945050506040919091013590565b60006020828403121561161f57600080fd5b813561151681611572565b6000806040838503121561163d57600080fd5b823561164881611572565b9150602083013561165881611572565b809150509250929050565b6000806040838503121561167657600080fd5b823561168181611572565b915061168f602084016114e6565b90509250929050565b600181811c908216806116ac57607f821691505b6020821081036116cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611702576117026116d2565b500290565b60008261172457634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561173c5761173c6116d2565b500190565b600082821015611753576117536116d2565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561178057600080fd5b815161151681611572565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117db5784516001600160a01b0316835293830193918301916001016117b6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220be1bd0132185b0f77393655583313a0103a17d1ede24bd2f387ee24ae549452764736f6c634300080f0033

Deployed Bytecode Sourcemap

28710:5952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33660:99;;;;;;;;;;-1:-1:-1;33660:99:0;;;;;:::i;:::-;;:::i;:::-;;17853:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20204:201;;;;;;;;;;-1:-1:-1;20204:201:0;;;;;:::i;:::-;;:::i;:::-;;;1587:14:1;;1580:22;1562:41;;1550:2;1535:18;20204:201:0;1422:187:1;34517:142:0;;;;;;;;;;;;;:::i;34096:92::-;;;;;;;;;;-1:-1:-1;34096:92:0;;;;;:::i;:::-;;:::i;29374:41::-;;;;;;;;;;-1:-1:-1;29374:41:0;;;;-1:-1:-1;;;;;29374:41:0;;;;;;-1:-1:-1;;;;;1804:32:1;;;1786:51;;1774:2;1759:18;29374:41:0;1614:229:1;18973:108:0;;;;;;;;;;-1:-1:-1;19061:12:0;;18973:108;;;1994:25:1;;;1982:2;1967:18;18973:108:0;1848:177:1;28962:61:0;;;;;;;;;;;;;;;;32870:223;;;;;;;;;;-1:-1:-1;32870:223:0;;;;;:::i;:::-;;:::i;20985:295::-;;;;;;;;;;-1:-1:-1;20985:295:0;;;;;:::i;:::-;;:::i;18815:93::-;;;;;;;;;;-1:-1:-1;18815:93:0;;18898:2;2818:36:1;;2806:2;2791:18;18815:93:0;2676:184:1;21689:238:0;;;;;;;;;;-1:-1:-1;21689:238:0;;;;;:::i;:::-;;:::i;29422:28::-;;;;;;;;;;-1:-1:-1;29422:28:0;;;;-1:-1:-1;;;;;29422:28:0;;;33439:213;;;;;;;;;;-1:-1:-1;33439:213:0;;;;;:::i;:::-;;:::i;33101:173::-;;;;;;;;;;-1:-1:-1;33101:173:0;;;;;:::i;:::-;;:::i;29232:31::-;;;;;;;;;;-1:-1:-1;29232:31:0;;;;;;;;19144:127;;;;;;;;;;-1:-1:-1;19144:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;19245:18:0;19218:7;19245:18;;;;;;;;;;;;19144:127;11276:103;;;;;;;;;;;;;:::i;29106:54::-;;;;;;;;;;;;;;;;29030:67;;;;;;;;;;;;;;;;10628:87;;;;;;;;;;-1:-1:-1;10701:6:0;;-1:-1:-1;;;;;10701:6:0;10628:87;;18072:104;;;;;;;;;;;;;:::i;22430:436::-;;;;;;;;;;-1:-1:-1;22430:436:0;;;;;:::i;:::-;;:::i;19477:193::-;;;;;;;;;;-1:-1:-1;19477:193:0;;;;;:::i;:::-;;:::i;33282:149::-;;;;;;;;;;-1:-1:-1;33282:149:0;;;;;:::i;:::-;;:::i;33767:177::-;;;;;;;;;;-1:-1:-1;33767:177:0;;;;;:::i;:::-;;:::i;19733:151::-;;;;;;;;;;-1:-1:-1;19733:151:0;;;;;:::i;:::-;;:::i;34304:205::-;;;;;;;;;;;;;:::i;34196:100::-;;;;;;;;;;-1:-1:-1;34196:100:0;;;;;:::i;:::-;;:::i;11534:201::-;;;;;;;;;;-1:-1:-1;11534:201:0;;;;;:::i;:::-;;:::i;29167:58::-;;;;;;;;;;;;;;;;33952:136;;;;;;;;;;-1:-1:-1;33952:136:0;;;;;:::i;:::-;;:::i;33660:99::-;10514:13;:11;:13::i;:::-;33729:12:::1;:22:::0;;-1:-1:-1;;33729:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33660:99::o;17853:100::-;17907:13;17940:5;17933:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17853:100;:::o;20204:201::-;20287:4;9259:10;20343:32;9259:10;20359:7;20368:6;20343:8;:32::i;:::-;-1:-1:-1;20393:4:0;;20204:201;-1:-1:-1;;;20204:201:0:o;34517:142::-;10514:13;:11;:13::i;:::-;34594:16:::1;::::0;34586:65:::1;::::0;34569:12:::1;::::0;-1:-1:-1;;;;;34594:16:0::1;::::0;34625:21:::1;::::0;34569:12;34586:65;34569:12;34586:65;34625:21;34594:16;34586:65:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;34517:142:0:o;34096:92::-;10514:13;:11;:13::i;:::-;34161:9:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;34161:19:0;;::::1;::::0;;;::::1;::::0;;34096:92::o;32870:223::-;10514:13;:11;:13::i;:::-;32944:17:::1;:24:::0;;;33052:3:::1;33024:24;28799:4;33046:2;33024:24;:::i;:::-;33023:32;;;;:::i;:::-;33007:12;;32987:17;;:32;;;;:::i;:::-;:68;;32979:106;;;::::0;-1:-1:-1;;;32979:106:0;;5495:2:1;32979:106:0::1;::::0;::::1;5477:21:1::0;5534:2;5514:18;;;5507:30;5573:27;5553:18;;;5546:55;5618:18;;32979:106:0::1;;;;;;;;;32870:223:::0;:::o;20985:295::-;21116:4;9259:10;21174:38;21190:4;9259:10;21205:6;21174:15;:38::i;:::-;21223:27;21233:4;21239:2;21243:6;21223:9;:27::i;:::-;-1:-1:-1;21268:4:0;;20985:295;-1:-1:-1;;;;20985:295:0:o;21689:238::-;21777:4;9259:10;21833:64;9259:10;21849:7;21886:10;21858:25;9259:10;21849:7;21858:9;:25::i;:::-;:38;;;;:::i;:::-;21833:8;:64::i;33439:213::-;10514:13;:11;:13::i;:::-;33508:12:::1;:19:::0;;;33611:3:::1;33583:24;28799:4;33605:2;33583:24;:::i;33101:173::-:0;10514:13;:11;:13::i;:::-;33195:2:::1;33181:10;:16;;33173:60;;;::::0;-1:-1:-1;;;33173:60:0;;5849:2:1;33173:60:0::1;::::0;::::1;5831:21:1::0;5888:2;5868:18;;;5861:30;5927:33;5907:18;;;5900:61;5978:18;;33173:60:0::1;5647:355:1::0;33173:60:0::1;33244:9;:22:::0;33101:173::o;11276:103::-;10514:13;:11;:13::i;:::-;11341:30:::1;11368:1;11341:18;:30::i;:::-;11276:103::o:0;18072:104::-;18128:13;18161:7;18154:14;;;;;:::i;22430:436::-;22523:4;9259:10;22523:4;22606:25;9259:10;22623:7;22606:9;:25::i;:::-;22579:52;;22670:15;22650:16;:35;;22642:85;;;;-1:-1:-1;;;22642:85:0;;6209:2:1;22642:85:0;;;6191:21:1;6248:2;6228:18;;;6221:30;6287:34;6267:18;;;6260:62;-1:-1:-1;;;6338:18:1;;;6331:35;6383:19;;22642:85:0;6007:401:1;22642:85:0;22763:60;22772:5;22779:7;22807:15;22788:16;:34;22763:8;:60::i;19477:193::-;19556:4;9259:10;19612:28;9259:10;19629:2;19633:6;19612:9;:28::i;33282:149::-;10514:13;:11;:13::i;:::-;33364:2:::1;33354:6;:12;;33346:52;;;::::0;-1:-1:-1;;;33346:52:0;;6615:2:1;33346:52:0::1;::::0;::::1;6597:21:1::0;6654:2;6634:18;;;6627:30;6693:29;6673:18;;;6666:57;6740:18;;33346:52:0::1;6413:351:1::0;33346:52:0::1;33409:5;:14:::0;33282:149::o;33767:177::-;10514:13;:11;:13::i;:::-;33836:12:::1;:20:::0;;;33884:24:::1;33906:2;28799:4;33884:24;:::i;:::-;33875:5;:33;;33867:69;;;::::0;-1:-1:-1;;;33867:69:0;;6971:2:1;33867:69:0::1;::::0;::::1;6953:21:1::0;7010:2;6990:18;;;6983:30;7049:25;7029:18;;;7022:53;7092:18;;33867:69:0::1;6769:347:1::0;19733:151:0;-1:-1:-1;;;;;19849:18:0;;;19822:7;19849:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19733:151::o;34304:205::-;29568:9;:16;;-1:-1:-1;;;;29568:16:0;-1:-1:-1;;;29568:16:0;;;10514:13:::1;:11;:13::i;:::-;34400:4:::2;19218:7:::0;19245:18;;;;;;;;;;;34364:43:::2;::::0;:17:::2;:43::i;:::-;34444:16;::::0;34436:65:::2;::::0;34419:12:::2;::::0;-1:-1:-1;;;;;34444:16:0::2;::::0;34475:21:::2;::::0;34419:12;34436:65;34419:12;34436:65;34475:21;34444:16;34436:65:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;29607:9:0;:17;;-1:-1:-1;;;;29607:17:0;;;-1:-1:-1;;34304:205:0:o;34196:100::-;10514:13;:11;:13::i;:::-;34265:12:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;34265:23:0::1;-1:-1:-1::0;;;;34265:23:0;;::::1;::::0;;;::::1;::::0;;34196:100::o;11534:201::-;10514:13;:11;:13::i;:::-;-1:-1:-1;;;;;11623:22:0;::::1;11615:73;;;::::0;-1:-1:-1;;;11615:73:0;;7323:2:1;11615:73:0::1;::::0;::::1;7305:21:1::0;7362:2;7342:18;;;7335:30;7401:34;7381:18;;;7374:62;-1:-1:-1;;;7452:18:1;;;7445:36;7498:19;;11615:73:0::1;7121:402:1::0;11615:73:0::1;11699:28;11718:8;11699:18;:28::i;33952:136::-:0;10514:13;:11;:13::i;:::-;-1:-1:-1;;;;;34043:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:37;;-1:-1:-1;;34043:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33952:136::o;10793:132::-;10701:6;;-1:-1:-1;;;;;10701:6:0;9259:10;10857:23;10849:68;;;;-1:-1:-1;;;10849:68:0;;7730:2:1;10849:68:0;;;7712:21:1;;;7749:18;;;7742:30;7808:34;7788:18;;;7781:62;7860:18;;10849:68:0;7528:356:1;26055:380:0;-1:-1:-1;;;;;26191:19:0;;26183:68;;;;-1:-1:-1;;;26183:68:0;;8091:2:1;26183:68:0;;;8073:21:1;8130:2;8110:18;;;8103:30;8169:34;8149:18;;;8142:62;-1:-1:-1;;;8220:18:1;;;8213:34;8264:19;;26183:68:0;7889:400:1;26183:68:0;-1:-1:-1;;;;;26270:21:0;;26262:68;;;;-1:-1:-1;;;26262:68:0;;8496:2:1;26262:68:0;;;8478:21:1;8535:2;8515:18;;;8508:30;8574:34;8554:18;;;8547:62;-1:-1:-1;;;8625:18:1;;;8618:32;8667:19;;26262:68:0;8294:398:1;26262:68:0;-1:-1:-1;;;;;26343:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26395:32;;1994:25:1;;;26395:32:0;;1967:18:1;26395:32:0;;;;;;;26055:380;;;:::o;26726:453::-;26861:24;26888:25;26898:5;26905:7;26888:9;:25::i;:::-;26861:52;;-1:-1:-1;;26928:16:0;:37;26924:248;;27010:6;26990:16;:26;;26982:68;;;;-1:-1:-1;;;26982:68:0;;8899:2:1;26982:68:0;;;8881:21:1;8938:2;8918:18;;;8911:30;8977:31;8957:18;;;8950:59;9026:18;;26982:68:0;8697:353:1;26982:68:0;27094:51;27103:5;27110:7;27138:6;27119:16;:25;27094:8;:51::i;30277:1673::-;30418:13;30444:7;10701:6;;-1:-1:-1;;;;;10701:6:0;;10628:87;30444:7;-1:-1:-1;;;;;30434:17:0;:6;-1:-1:-1;;;;;30434:17:0;;:41;;;-1:-1:-1;10701:6:0;;-1:-1:-1;;;;;30455:20:0;;;10701:6;;30455:20;30434:41;30535:4;30486:28;19245:18;;;;;;;;;;;30578:13;;30418:57;;-1:-1:-1;19245:18:0;-1:-1:-1;;;;;30568:23:0;;;30578:13;;30568:23;:64;;;;-1:-1:-1;30616:15:0;;-1:-1:-1;;;;;30595:37:0;;;30616:15;;30595:37;;30568:64;30671:13;;30554:78;;-1:-1:-1;;;;;;30658:26:0;;;30671:13;;30658:26;30643:12;30554:78;;30710:17;;;30720:7;30710:17;30695:32;;30744:7;:23;;;;-1:-1:-1;30755:12:0;;;;30744:23;30740:528;;;-1:-1:-1;;;;;30802:24:0;;30784:15;30802:24;;;:13;:24;;;;;;;;;:49;;-1:-1:-1;;;;;;30830:21:0;;;;;;:13;:21;;;;;;;;30802:49;30784:67;;30866:14;28799:4;30899:5;;30883:13;19061:12;;;18973:108;30883:13;:21;;;;:::i;:::-;:43;;;;:::i;:::-;30866:60;;30959:6;30949;:16;;:30;;;;30969:10;30949:30;30941:65;;;;-1:-1:-1;;;30941:65:0;;9257:2:1;30941:65:0;;;9239:21:1;9296:2;9276:18;;;9269:30;-1:-1:-1;;;9315:18:1;;;9308:52;9377:18;;30941:65:0;9055:346:1;30941:65:0;31025:6;31021:236;;;31052:18;28799:4;31089:9;;31073:13;19061:12;;;18973:108;31073:13;:25;;;;:::i;:::-;:47;;;;:::i;:::-;31052:68;;31184:6;31161:20;31171:9;-1:-1:-1;;;;;19245:18:0;19218:7;19245:18;;;;;;;;;;;;19144:127;31161:20;:29;;;;:::i;:::-;31147:10;:43;;:57;;;;31194:10;31147:57;31139:102;;;;-1:-1:-1;;;31139:102:0;;9608:2:1;31139:102:0;;;9590:21:1;;;9627:18;;;9620:30;9686:34;9666:18;;;9659:62;9738:18;;31139:102:0;9406:356:1;31139:102:0;31033:224;31021:236;30769:499;;30740:528;31327:12;;31310:13;;-1:-1:-1;;;;;31310:13:0;31280:16;19245:18;;;;;;;;;;;31280:16;;28799:4;;31300:39;;;;:::i;:::-;31299:63;;;;:::i;:::-;31438:12;;31280:82;;-1:-1:-1;31389:32:0;;;;;-1:-1:-1;;;31438:12:0;;;;:26;;;;-1:-1:-1;31455:9:0;;-1:-1:-1;;;31455:9:0;;;;31454:10;31438:26;:39;;;;;31469:8;31468:9;31438:39;:51;;;;;31481:8;31438:51;:78;;;;-1:-1:-1;31503:13:0;;-1:-1:-1;;;;;31493:23:0;;;31503:13;;31493:23;;31438:78;31434:135;;;31533:24;31539:8;31549:7;31533:5;:24::i;:::-;31581:11;31611:7;:21;;;;-1:-1:-1;31623:9:0;;;;;;;31622:10;31611:21;:79;;;;-1:-1:-1;;;;;;31638:22:0;;;;;;:14;:22;;;;;;;;;:51;;-1:-1:-1;;;;;;31664:25:0;;;;;;:14;:25;;;;;;;;31638:51;31636:54;31611:79;31607:277;;;28799:4;31723:21;31736:7;31723:12;:21::i;:::-;31714:30;;:6;:30;:::i;:::-;31713:54;;;;:::i;:::-;31707:60;-1:-1:-1;31786:7:0;;31782:91;;31814:43;31830:6;31846:4;31853:3;31814:15;:43::i;:::-;31894:48;31910:6;31918:9;31929:12;31938:3;31929:6;:12;:::i;:::-;31894:15;:48::i;:::-;30407:1543;;;;;;;;30277:1673;;;:::o;11895:191::-;11988:6;;;-1:-1:-1;;;;;12005:17:0;;;-1:-1:-1;;;;;;12005:17:0;;;;;;;12038:40;;11988:6;;;12005:17;11988:6;;12038:40;;11969:16;;12038:40;11958:128;11895:191;:::o;32153:477::-;32245:16;;;32259:1;32245:16;;;;;;;;32221:21;;32245:16;;;;;;;;;;-1:-1:-1;32245:16:0;32221:40;;32290:4;32272;32277:1;32272:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32272:23:0;;;:7;;;;;;;;;;:23;;;;32316:15;;:22;;;-1:-1:-1;;;32316:22:0;;;;:15;;;;;:20;;:22;;;;;32272:7;;32316:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32306:4;32311:1;32306:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32306:32:0;;;:7;;;;;;;;;:32;32383:15;;32351:63;;32368:4;;32383:15;32401:12;32351:8;:63::i;:::-;32425:15;;:197;;-1:-1:-1;;;32425:197:0;;-1:-1:-1;;;;;32425:15:0;;;;:66;;:197;;32506:12;;32425:15;;32549:4;;32576;;32596:15;;32425:197;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32210:420;32153:477;:::o;31958:187::-;29568:9;:16;;-1:-1:-1;;;;29568:16:0;-1:-1:-1;;;29568:16:0;;;32037:32:::1;32055:13:::0;32037:17:::1;:32::i;:::-;32088:16;::::0;32080:57:::1;::::0;-1:-1:-1;;;;;32088:16:0;;::::1;::::0;32115:21:::1;32080:57:::0;::::1;;;::::0;32088:16:::1;32080:57:::0;32088:16;32080:57;32115:21;32088:16;32080:57;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;29607:9:0;:17;;-1:-1:-1;;;;29607:17:0;;;-1:-1:-1;31958:187:0:o;32675:::-;32727:7;32751:6;32747:78;;;32796:17;;32781:12;;:32;;;;:::i;:::-;32774:39;32675:187;-1:-1:-1;;32675:187:0:o;32747:78::-;-1:-1:-1;;32842:12:0;;;32675:187::o;23336:671::-;-1:-1:-1;;;;;23467:18:0;;23459:68;;;;-1:-1:-1;;;23459:68:0;;11604:2:1;23459:68:0;;;11586:21:1;11643:2;11623:18;;;11616:30;11682:34;11662:18;;;11655:62;-1:-1:-1;;;11733:18:1;;;11726:35;11778:19;;23459:68:0;11402:401:1;23459:68:0;-1:-1:-1;;;;;23546:16:0;;23538:64;;;;-1:-1:-1;;;23538:64:0;;12010:2:1;23538:64:0;;;11992:21:1;12049:2;12029:18;;;12022:30;12088:34;12068:18;;;12061:62;-1:-1:-1;;;12139:18:1;;;12132:33;12182:19;;23538:64:0;11808:399:1;23538:64:0;-1:-1:-1;;;;;23688:15:0;;23666:19;23688:15;;;;;;;;;;;23722:21;;;;23714:72;;;;-1:-1:-1;;;23714:72:0;;12414:2:1;23714:72:0;;;12396:21:1;12453:2;12433:18;;;12426:30;12492:34;12472:18;;;12465:62;-1:-1:-1;;;12543:18:1;;;12536:36;12589:19;;23714:72:0;12212:402:1;23714:72:0;-1:-1:-1;;;;;23822:15:0;;;:9;:15;;;;;;;;;;;23840:20;;;23822:38;;23882:13;;;;;;;;:23;;23854:6;;23822:9;23882:23;;23854:6;;23882:23;:::i;:::-;;;;;;;;23938:2;-1:-1:-1;;;;;23923:26:0;23932:4;-1:-1:-1;;;;;23923:26:0;;23942:6;23923:26;;;;1994:25:1;;1982:2;1967:18;;1848:177;23923:26:0;;;;;;;;23962:37;27779:125;14:160:1;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;108:60;14:160;;;:::o;179:180::-;235:6;288:2;276:9;267:7;263:23;259:32;256:52;;;304:1;301;294:12;256:52;327:26;343:9;327:26;:::i;:::-;317:36;179:180;-1:-1:-1;;;179:180:1:o;364:597::-;476:4;505:2;534;523:9;516:21;566:6;560:13;609:6;604:2;593:9;589:18;582:34;634:1;644:140;658:6;655:1;652:13;644:140;;;753:14;;;749:23;;743:30;719:17;;;738:2;715:26;708:66;673:10;;644:140;;;802:6;799:1;796:13;793:91;;;872:1;867:2;858:6;847:9;843:22;839:31;832:42;793:91;-1:-1:-1;945:2:1;924:15;-1:-1:-1;;920:29:1;905:45;;;;952:2;901:54;;364:597;-1:-1:-1;;;364:597:1:o;966:131::-;-1:-1:-1;;;;;1041:31:1;;1031:42;;1021:70;;1087:1;1084;1077:12;1102:315;1170:6;1178;1231:2;1219:9;1210:7;1206:23;1202:32;1199:52;;;1247:1;1244;1237:12;1199:52;1286:9;1273:23;1305:31;1330:5;1305:31;:::i;:::-;1355:5;1407:2;1392:18;;;;1379:32;;-1:-1:-1;;;1102:315:1:o;2030:180::-;2089:6;2142:2;2130:9;2121:7;2117:23;2113:32;2110:52;;;2158:1;2155;2148:12;2110:52;-1:-1:-1;2181:23:1;;2030:180;-1:-1:-1;2030:180:1:o;2215:456::-;2292:6;2300;2308;2361:2;2349:9;2340:7;2336:23;2332:32;2329:52;;;2377:1;2374;2367:12;2329:52;2416:9;2403:23;2435:31;2460:5;2435:31;:::i;:::-;2485:5;-1:-1:-1;2542:2:1;2527:18;;2514:32;2555:33;2514:32;2555:33;:::i;:::-;2215:456;;2607:7;;-1:-1:-1;;;2661:2:1;2646:18;;;;2633:32;;2215:456::o;3073:247::-;3132:6;3185:2;3173:9;3164:7;3160:23;3156:32;3153:52;;;3201:1;3198;3191:12;3153:52;3240:9;3227:23;3259:31;3284:5;3259:31;:::i;3325:388::-;3393:6;3401;3454:2;3442:9;3433:7;3429:23;3425:32;3422:52;;;3470:1;3467;3460:12;3422:52;3509:9;3496:23;3528:31;3553:5;3528:31;:::i;:::-;3578:5;-1:-1:-1;3635:2:1;3620:18;;3607:32;3648:33;3607:32;3648:33;:::i;:::-;3700:7;3690:17;;;3325:388;;;;;:::o;3718:315::-;3783:6;3791;3844:2;3832:9;3823:7;3819:23;3815:32;3812:52;;;3860:1;3857;3850:12;3812:52;3899:9;3886:23;3918:31;3943:5;3918:31;:::i;:::-;3968:5;-1:-1:-1;3992:35:1;4023:2;4008:18;;3992:35;:::i;:::-;3982:45;;3718:315;;;;;:::o;4038:380::-;4117:1;4113:12;;;;4160;;;4181:61;;4235:4;4227:6;4223:17;4213:27;;4181:61;4288:2;4280:6;4277:14;4257:18;4254:38;4251:161;;4334:10;4329:3;4325:20;4322:1;4315:31;4369:4;4366:1;4359:15;4397:4;4394:1;4387:15;4251:161;;4038:380;;;:::o;4633:127::-;4694:10;4689:3;4685:20;4682:1;4675:31;4725:4;4722:1;4715:15;4749:4;4746:1;4739:15;4765:168;4805:7;4871:1;4867;4863:6;4859:14;4856:1;4853:21;4848:1;4841:9;4834:17;4830:45;4827:71;;;4878:18;;:::i;:::-;-1:-1:-1;4918:9:1;;4765:168::o;4938:217::-;4978:1;5004;4994:132;;5048:10;5043:3;5039:20;5036:1;5029:31;5083:4;5080:1;5073:15;5111:4;5108:1;5101:15;4994:132;-1:-1:-1;5140:9:1;;4938:217::o;5160:128::-;5200:3;5231:1;5227:6;5224:1;5221:13;5218:39;;;5237:18;;:::i;:::-;-1:-1:-1;5273:9:1;;5160:128::o;9767:125::-;9807:4;9835:1;9832;9829:8;9826:34;;;9840:18;;:::i;:::-;-1:-1:-1;9877:9:1;;9767:125::o;10029:127::-;10090:10;10085:3;10081:20;10078:1;10071:31;10121:4;10118:1;10111:15;10145:4;10142:1;10135:15;10161:251;10231:6;10284:2;10272:9;10263:7;10259:23;10255:32;10252:52;;;10300:1;10297;10290:12;10252:52;10332:9;10326:16;10351:31;10376:5;10351:31;:::i;10417:980::-;10679:4;10727:3;10716:9;10712:19;10758:6;10747:9;10740:25;10784:2;10822:6;10817:2;10806:9;10802:18;10795:34;10865:3;10860:2;10849:9;10845:18;10838:31;10889:6;10924;10918:13;10955:6;10947;10940:22;10993:3;10982:9;10978:19;10971:26;;11032:2;11024:6;11020:15;11006:29;;11053:1;11063:195;11077:6;11074:1;11071:13;11063:195;;;11142:13;;-1:-1:-1;;;;;11138:39:1;11126:52;;11233:15;;;;11198:12;;;;11174:1;11092:9;11063:195;;;-1:-1:-1;;;;;;;11314:32:1;;;;11309:2;11294:18;;11287:60;-1:-1:-1;;;11378:3:1;11363:19;11356:35;11275:3;10417:980;-1:-1:-1;;;10417:980:1:o

Swarm Source

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