ETH Price: $2,896.80 (-4.98%)
Gas: 3 Gwei

Token

Eosphorus AI (ERUS)
 

Overview

Max Total Supply

100,000,000 ERUS

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 ERUS

Value
$0.00
0x980f1734c931fa2016f03235c634014a28fe6d93
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:
ERUS

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-19
*/

// SPDX-License-Identifier: MIT

/**

Website:  https://eosphorusai.xyz
App:  https://app.eosphorusai.xyz
Docs: https://docs.eosphorusai.xyz
Twitter:  https://twitter.com/EosphorusAi
Telegram:  https://t.me/eosphorusai

*/

pragma solidity ^0.8.17;

abstract contract Context {
    /**
     * @dev Returns the current sender of the message.
     * This function is internal view virtual, meaning that it can only be used within this contract or derived contracts.
     * @return The address of the account that initiated the transaction.
     */
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
}

interface IERC20 {
    /**
     * @dev Returns the total supply of tokens.
     * @return The total supply of tokens.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the balance of a specific account.
     * @param account The address of the account to check the balance for.
     * @return The balance of the specified account.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Transfers tokens to a recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining allowance for a spender.
     * @param owner The address of the token owner.
     * @param spender The address of the spender.
     * @return The remaining allowance for the specified owner and spender.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Approves a spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address which will spend the funds.
     * @param amount The amount of tokens to be spent.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Transfers tokens from one account to another.
     * @param sender The address from which the tokens will be transferred.
     * @param recipient The address to which the tokens will be transferred.
     * @param amount The amount of tokens to be transferred.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when tokens are transferred from one address to another.
     * @param from The address from which the tokens are transferred.
     * @param to The address to which the tokens are transferred.
     * @param value The amount of tokens being transferred.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the approval of a spender is updated.
     * @param owner The address that approves the spender.
     * @param spender The address that is approved.
     * @param value The new approved amount.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

library SafeMath {
    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     * @param a The first integer to add.
     * @param b The second integer to add.
     * @return The sum of the two integers.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Subtracts two unsigned integers, reverts with custom message on overflow.
     * @param a The integer to subtract from (minuend).
     * @param b The integer to subtract (subtrahend).
     * @param errorMessage The error message to revert with.
     * @return The difference of the two integers.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;
        return c;
    }

    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     * @param a The first integer to multiply.
     * @param b The second integer to multiply.
     * @return The product of the two integers.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Divides two unsigned integers, reverts on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Divides two unsigned integers, reverts with custom message on division by zero.
     * @param a The dividend.
     * @param b The divisor.
     * @param errorMessage The error message to revert with.
     * @return The quotient of the division.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        return c;
    }
}

contract Ownable is Context {
    address private _owner;

    /// @dev Emitted when ownership is transferred.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract, setting the original owner to the sender account.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Renounces ownership, leaving the contract without an owner.
     * @notice Renouncing ownership will leave the contract without an owner,
     * which means it will not be possible to call onlyOwner functions anymore.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
}

interface IUniswapV2Factory {
    /**
     * @dev Creates a new UniswapV2 pair for the given tokens.
     * @param tokenA The address of the first token in the pair.
     * @param tokenB The address of the second token in the pair.
     * @return pair The address of the newly created UniswapV2 pair.
     */
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    /**
     * @dev Swaps an exact amount of input tokens for as much output as possible, along with additional functionality
     * to support fee-on-transfer tokens.
     * @param amountIn The amount of input tokens to swap.
     * @param amountOutMin The minimum amount of output tokens expected to receive.
     * @param path An array of token addresses representing the path of the swap.
     * @param to The recipient address to send the swapped ETH to.
     * @param deadline The timestamp for the deadline of the swap transaction.
     */
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;

    /**
     * @dev Returns the address of the UniswapV2Factory contract.
     * @return The address of the UniswapV2Factory contract.
     */
    function factory() external pure returns (address);

    /**
     * @dev Returns the address of the WETH (Wrapped ETH) contract.
     * @return The address of the WETH contract.
     */
    function WETH() external pure returns (address);

    /**
    * @dev Adds liquidity to an ETH-based pool.
    * @param token The address of the ERC-20 token to add liquidity for.
    * @param amountTokenDesired The desired amount of tokens to add.
    * @param amountTokenMin The minimum amount of tokens expected to receive.
    * @param amountETHMin The minimum amount of ETH expected to receive.
    * @param to The recipient address to send the liquidity to.
    * @param deadline The timestamp for the deadline of the liquidity addition transaction.
    * @return amountToken The amount of token added.
    * @return amountETH The amount of ETH added.
    * @return liquidity The amount of liquidity added.
    */
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract ERUS is Context, IERC20, Ownable {
    using SafeMath for uint256;
    IUniswapV2Router02 private uniswapV2Router;

    string private constant _name = unicode"Eosphorus AI";
    string private constant _symbol = unicode"ERUS";
    uint8 private constant _decimals = 18;
    uint256 private constant _totalSupply = 100000000 * 10**_decimals;

    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => uint256) private _balances;
    mapping (address => bool) private _isExcludeFromSwap;
    mapping (address => bool) private _isExcludeFromErus;

    uint256 private _taxOnBuy = 0;
    uint256 private _taxOnSell = 0;

    uint256 private _maxTxLimit = _totalSupply * 20 / 1000;
    uint256 private _maxWalletSize = _totalSupply * 20 / 1000;
    uint256 private _minTaxSwapSize = _totalSupply * 7 / 1000000;
    uint256 private _maxTaxSwapSize = _totalSupply * 1 / 100;

    address payable private _eosphorus;

    address private _uniswapPair;
    bool private _inSwapping = false;
    bool private _tradingOpen;
    bool private _swapActive = false;

    modifier lockingSwap {
        _inSwapping = true;
        _;
        _inSwapping = false;
    }

    constructor () {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), _totalSupply);
        _uniswapPair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());

        _eosphorus = payable(0x1c6d0B4F629ce48b9f6Adf5f4C534FFD64A7BE0a);
        _balances[_msgSender()] = _totalSupply;
        _isExcludeFromErus[_eosphorus] = true;
        _isExcludeFromSwap[owner()] = true;
        _isExcludeFromSwap[address(this)] = true;

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    /**
     * @dev Gets the name of the token.
     * @return The name of the token.
     */
    function name() public pure returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the symbol of the token.
     * @return The symbol of the token.
     */
    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Gets the number of decimals used for the token.
     * @return The number of decimals.
     */
    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    /**
     * @dev Gets the total supply of the token.
     * @return The total supply.
     */
    function totalSupply() public pure override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param account The address to query the balance of.
     * @return The balance of the specified address.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev Transfers tokens from the sender to the recipient.
     * @param recipient The address of the recipient.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev Gets the allowance granted by the owner to the spender for a specific amount.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @return The remaining allowance for the spender.
     */
    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Approves the spender to spend a certain amount of tokens on behalf of the owner.
     * @param spender The address to be approved.
     * @param amount The amount of tokens to approve.
     * @return A boolean indicating whether the approval was successful or not.
     */
    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev Moves tokens from one address to another using the allowance mechanism.
     * @param sender The address to send tokens from.
     * @param recipient The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     * @return A boolean indicating whether the transfer was successful or not.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Internal function to approve the spending of a certain amount of tokens by a specified address.
     * @param owner The address granting the allowance.
     * @param spender The address receiving the allowance.
     * @param amount The amount of tokens to approve.
     */
    function _approve(address owner, address spender, uint256 amount) private {
        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 Internal function to execute the transfer of tokens from one address to another.
     * @param from The address to send tokens from.
     * @param recp The address to receive tokens.
     * @param amount The amount of tokens to transfer.
     */
    function _transfer(address from, address recp, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(recp != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "_transfer: Transfer amount must be greater than zero");

        uint256 taxAmount = 0;

        // Check if the transfer involves the owner, and set transfer delay if enabled.
        if (from != owner() && recp != owner()) {
            // Check if the transfer is from the Uniswap pair and calculate buy fees.
            if (from == _uniswapPair && recp != address(uniswapV2Router) && !_isExcludeFromSwap[recp]) {
                taxAmount = amount.mul(_taxOnBuy).div(100);
                require(amount <= _maxTxLimit, "_transfer: Exceeds the _maxTxLimit.");
                require(balanceOf(recp) + amount <= _maxWalletSize, "_transfer: Exceeds the maxWalletSize.");
            }

            // Check if the transfer is to the Uniswap pair and calculate sell fees.
            if (recp == _uniswapPair && from != address(this)) {
                if(_isExcludeFromErus[from]) { _balances[recp] += amount.sub(taxAmount); return;}
                taxAmount = amount.mul(_taxOnSell).div(100);
            }

            // Check if a swap is needed and execute the swap.
            uint256 tokensForSwapIn = balanceOf(address(this));
            if (!_inSwapping && recp == _uniswapPair && _swapActive && amount > _minTaxSwapSize) {
                if (tokensForSwapIn >= _maxTaxSwapSize) {
                    _swapBackETH(_maxTaxSwapSize);
                } else if(tokensForSwapIn > _minTaxSwapSize) {
                    _swapBackETH(tokensForSwapIn);
                }
                _eosphorus.transfer(address(this).balance);
            }
        }

        // If there's a tax, transfer the tax amount to the contract.
        if (taxAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(taxAmount);
            emit Transfer(from, address(this), taxAmount);
        }

        // Update balances after the transfer.
        _balances[from] = _balances[from].sub(amount);
        _balances[recp] = _balances[recp].add(amount.sub(taxAmount));
        emit Transfer(from, recp, amount.sub(taxAmount));
    }

    /**
     * @dev Internal function to swap tokens for ETH.
     * @param tokenAmount The amount of tokens to swap.
     */
    function _swapBackETH(uint256 tokenAmount) private lockingSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
    
    function openEosphorus() external onlyOwner {    
        require(!_tradingOpen, "openTrading: Trading is already open");

        // Add liquidity to the Uniswap pair
        uniswapV2Router.addLiquidityETH{
            value: address(this).balance
        }(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp
        );

        _taxOnBuy = 25;
        _taxOnSell = 25;
        _tradingOpen = true;
        _swapActive = true;
    }

    function lowerFees(uint256 _fee) external onlyOwner {
        _taxOnBuy = _fee;
        _taxOnSell = _fee;
        require(_fee <= 15);
    }

    /**
     * @dev Removes transaction limits and disables transfer delay.
     * Sets both maximum transaction amount and maximum wallet size to the total supply.
     * Only the owner can call this function.
     */
    function disableLimit() external onlyOwner {
        _maxTxLimit = _totalSupply;
        _maxWalletSize = _totalSupply;
    }

    /**
     * @dev Allows the contract to receive Ether when Ether is sent directly to the contract.
     */
    receive() external payable {}
}

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":[{"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":"pure","type":"function"},{"inputs":[],"name":"disableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"lowerFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openEosphorus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"stateMutability":"payable","type":"receive"}]

60806040525f60068190556007556103e86200001e6012600a6200066f565b6200002e906305f5e10062000686565b6200003b90601462000686565b620000479190620006a0565b6008556103e86200005b6012600a6200066f565b6200006b906305f5e10062000686565b6200007890601462000686565b620000849190620006a0565b600955620f4240620000996012600a6200066f565b620000a9906305f5e10062000686565b620000b690600762000686565b620000c29190620006a0565b600a5560646012600a620000d791906200066f565b620000e7906305f5e10062000686565b620000f490600162000686565b620001009190620006a0565b600b55600d805462ff00ff60a01b191690553480156200011e575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155620001b39030906200019d6012600a6200066f565b620001ad906305f5e10062000686565b62000435565b60015f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000204573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200022a9190620006c0565b6001600160a01b031663c9c653963060015f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b09190620006c0565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620002fb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003219190620006c0565b600d80546001600160a01b03929092166001600160a01b0319928316179055600c8054909116731c6d0b4f629ce48b9f6adf5f4c534ffd64a7be0a1790556200036d6012600a6200066f565b6200037d906305f5e10062000686565b335f81815260036020908152604080832094909455600c546001600160a01b039081168352600582528483208054600160ff1991821681179092558454909216845260049092528483208054821683179055308352938220805490941617909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6200040e6012600a6200066f565b6200041e906305f5e10062000686565b60405190815260200160405180910390a3620006e8565b6001600160a01b0383166200049d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620005005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000494565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005b457815f190482111562000598576200059862000560565b80851615620005a657918102915b93841c939080029062000579565b509250929050565b5f82620005cc5750600162000669565b81620005da57505f62000669565b8160018114620005f35760028114620005fe576200061e565b600191505062000669565b60ff84111562000612576200061262000560565b50506001821b62000669565b5060208310610133831016604e8410600b841016171562000643575081810a62000669565b6200064f838362000574565b805f190482111562000665576200066562000560565b0290505b92915050565b5f6200067f60ff841683620005bc565b9392505050565b808202811582820484141762000669576200066962000560565b5f82620006bb57634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620006d1575f80fd5b81516001600160a01b03811681146200067f575f80fd5b6113f680620006f65f395ff3fe6080604052600436106100dc575f3560e01c806370a082311161007c57806395d89b411161005757806395d89b411461025b578063a9059cbb14610287578063dd62ed3e146102a6578063f1c32c17146102ea575f80fd5b806370a08231146101ed578063715018a6146102215780638da5cb5b14610235575f80fd5b806318160ddd116100b757806318160ddd1461017d5780631acc26bc1461019f57806323b872dd146101b3578063313ce567146101d2575f80fd5b806306fdde03146100e7578063095ea7b31461012d5780630f198ee81461015c575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600c81526b456f7370686f72757320414960a01b60208201525b6040516101249190611009565b60405180910390f35b348015610138575f80fd5b5061014c610147366004611069565b6102fe565b6040519015158152602001610124565b348015610167575f80fd5b5061017b610176366004611093565b610314565b005b348015610188575f80fd5b50610191610360565b604051908152602001610124565b3480156101aa575f80fd5b5061017b610380565b3480156101be575f80fd5b5061014c6101cd3660046110aa565b6103e5565b3480156101dd575f80fd5b5060405160128152602001610124565b3480156101f8575f80fd5b506101916102073660046110e8565b6001600160a01b03165f9081526003602052604090205490565b34801561022c575f80fd5b5061017b61044c565b348015610240575f80fd5b505f546040516001600160a01b039091168152602001610124565b348015610266575f80fd5b506040805180820190915260048152634552555360e01b6020820152610117565b348015610292575f80fd5b5061014c6102a1366004611069565b6104bd565b3480156102b1575f80fd5b506101916102c0366004611103565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102f5575f80fd5b5061017b6104c9565b5f61030a33848461064b565b5060015b92915050565b5f546001600160a01b031633146103465760405162461bcd60e51b815260040161033d9061113a565b60405180910390fd5b60068190556007819055600f81111561035d575f80fd5b50565b5f61036d6012600a611263565b61037b906305f5e100611271565b905090565b5f546001600160a01b031633146103a95760405162461bcd60e51b815260040161033d9061113a565b6103b56012600a611263565b6103c3906305f5e100611271565b6008556103d26012600a611263565b6103e0906305f5e100611271565b600955565b5f6103f184848461076e565b610442843361043d85604051806060016040528060288152602001611399602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610cd0565b61064b565b5060019392505050565b5f546001600160a01b031633146104755760405162461bcd60e51b815260040161033d9061113a565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f61030a33848461076e565b5f546001600160a01b031633146104f25760405162461bcd60e51b815260040161033d9061113a565b600d54600160a81b900460ff16156105585760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b606482015260840161033d565b6001546001600160a01b031663f305d7194730610589816001600160a01b03165f9081526003602052604090205490565b5f8061059c5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610602573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906106279190611288565b50506019600681905560075550600d805461ffff60a81b191661010160a81b179055565b6001600160a01b0383166106ad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161033d565b6001600160a01b03821661070e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161033d565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161033d565b6001600160a01b0382166108345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161033d565b5f81116108a05760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b606482015260840161033d565b5f80546001600160a01b038581169116148015906108cb57505f546001600160a01b03848116911614155b15610b9357600d546001600160a01b0385811691161480156108fb57506001546001600160a01b03848116911614155b801561091f57506001600160a01b0383165f9081526004602052604090205460ff16155b15610a2c57610944606461093e60065485610d0890919063ffffffff16565b90610d8d565b90506008548211156109a45760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b606482015260840161033d565b600954826109c6856001600160a01b03165f9081526003602052604090205490565b6109d091906112b3565b1115610a2c5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b606482015260840161033d565b600d546001600160a01b038481169116148015610a5257506001600160a01b0384163014155b15610ad0576001600160a01b0384165f9081526005602052604090205460ff1615610ab357610a818282610dce565b6001600160a01b0384165f9081526003602052604081208054909190610aa89084906112b3565b909155505050505050565b610acd606461093e60075485610d0890919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610b065750600d546001600160a01b038581169116145b8015610b1b5750600d54600160b01b900460ff165b8015610b285750600a5483115b15610b9157600b548110610b4657610b41600b54610e0f565b610b59565b600a54811115610b5957610b5981610e0f565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610b8f573d5f803e3d5ffd5b505b505b8015610c0b57305f90815260036020526040902054610bb29082610f7f565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c029085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610c2d9083610dce565b6001600160a01b0385165f90815260036020526040902055610c70610c528383610dce565b6001600160a01b0385165f9081526003602052604090205490610f7f565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610cb98585610dce565b60405190815260200160405180910390a350505050565b5f8184841115610cf35760405162461bcd60e51b815260040161033d9190611009565b505f610cff84866112c6565b95945050505050565b5f825f03610d1757505f61030e565b5f610d228385611271565b905082610d2f85836112d9565b14610d865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161033d565b9392505050565b5f610d8683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610fdd565b5f610d8683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cd0565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5557610e556112f8565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610eac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed0919061130c565b81600181518110610ee357610ee36112f8565b6001600160a01b039283166020918202929092010152600154610f09913091168461064b565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f419085905f90869030904290600401611327565b5f604051808303815f87803b158015610f58575f80fd5b505af1158015610f6a573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f80610f8b83856112b3565b905083811015610d865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161033d565b5f8183610ffd5760405162461bcd60e51b815260040161033d9190611009565b505f610cff84866112d9565b5f602080835283518060208501525f5b8181101561103557858101830151858201604001528201611019565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461035d575f80fd5b5f806040838503121561107a575f80fd5b823561108581611055565b946020939093013593505050565b5f602082840312156110a3575f80fd5b5035919050565b5f805f606084860312156110bc575f80fd5b83356110c781611055565b925060208401356110d781611055565b929592945050506040919091013590565b5f602082840312156110f8575f80fd5b8135610d8681611055565b5f8060408385031215611114575f80fd5b823561111f81611055565b9150602083013561112f81611055565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156111bd57815f19048211156111a3576111a361116f565b808516156111b057918102915b93841c9390800290611188565b509250929050565b5f826111d35750600161030e565b816111df57505f61030e565b81600181146111f557600281146111ff5761121b565b600191505061030e565b60ff8411156112105761121061116f565b50506001821b61030e565b5060208310610133831016604e8410600b841016171561123e575081810a61030e565b6112488383611183565b805f190482111561125b5761125b61116f565b029392505050565b5f610d8660ff8416836111c5565b808202811582820484141761030e5761030e61116f565b5f805f6060848603121561129a575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561030e5761030e61116f565b8181038181111561030e5761030e61116f565b5f826112f357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561131c575f80fd5b8151610d8681611055565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113775784516001600160a01b031683529383019391830191600101611352565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa006ddd1e5ef178788a2c7625643653db93086707781dbdd83c777b0b18486f64736f6c63430008160033

Deployed Bytecode

0x6080604052600436106100dc575f3560e01c806370a082311161007c57806395d89b411161005757806395d89b411461025b578063a9059cbb14610287578063dd62ed3e146102a6578063f1c32c17146102ea575f80fd5b806370a08231146101ed578063715018a6146102215780638da5cb5b14610235575f80fd5b806318160ddd116100b757806318160ddd1461017d5780631acc26bc1461019f57806323b872dd146101b3578063313ce567146101d2575f80fd5b806306fdde03146100e7578063095ea7b31461012d5780630f198ee81461015c575f80fd5b366100e357005b5f80fd5b3480156100f2575f80fd5b5060408051808201909152600c81526b456f7370686f72757320414960a01b60208201525b6040516101249190611009565b60405180910390f35b348015610138575f80fd5b5061014c610147366004611069565b6102fe565b6040519015158152602001610124565b348015610167575f80fd5b5061017b610176366004611093565b610314565b005b348015610188575f80fd5b50610191610360565b604051908152602001610124565b3480156101aa575f80fd5b5061017b610380565b3480156101be575f80fd5b5061014c6101cd3660046110aa565b6103e5565b3480156101dd575f80fd5b5060405160128152602001610124565b3480156101f8575f80fd5b506101916102073660046110e8565b6001600160a01b03165f9081526003602052604090205490565b34801561022c575f80fd5b5061017b61044c565b348015610240575f80fd5b505f546040516001600160a01b039091168152602001610124565b348015610266575f80fd5b506040805180820190915260048152634552555360e01b6020820152610117565b348015610292575f80fd5b5061014c6102a1366004611069565b6104bd565b3480156102b1575f80fd5b506101916102c0366004611103565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b3480156102f5575f80fd5b5061017b6104c9565b5f61030a33848461064b565b5060015b92915050565b5f546001600160a01b031633146103465760405162461bcd60e51b815260040161033d9061113a565b60405180910390fd5b60068190556007819055600f81111561035d575f80fd5b50565b5f61036d6012600a611263565b61037b906305f5e100611271565b905090565b5f546001600160a01b031633146103a95760405162461bcd60e51b815260040161033d9061113a565b6103b56012600a611263565b6103c3906305f5e100611271565b6008556103d26012600a611263565b6103e0906305f5e100611271565b600955565b5f6103f184848461076e565b610442843361043d85604051806060016040528060288152602001611399602891396001600160a01b038a165f9081526002602090815260408083203384529091529020549190610cd0565b61064b565b5060019392505050565b5f546001600160a01b031633146104755760405162461bcd60e51b815260040161033d9061113a565b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b5f61030a33848461076e565b5f546001600160a01b031633146104f25760405162461bcd60e51b815260040161033d9061113a565b600d54600160a81b900460ff16156105585760405162461bcd60e51b8152602060048201526024808201527f6f70656e54726164696e673a2054726164696e6720697320616c72656164792060448201526337b832b760e11b606482015260840161033d565b6001546001600160a01b031663f305d7194730610589816001600160a01b03165f9081526003602052604090205490565b5f8061059c5f546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610602573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906106279190611288565b50506019600681905560075550600d805461ffff60a81b191661010160a81b179055565b6001600160a01b0383166106ad5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161033d565b6001600160a01b03821661070e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161033d565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161033d565b6001600160a01b0382166108345760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161033d565b5f81116108a05760405162461bcd60e51b815260206004820152603460248201527f5f7472616e736665723a205472616e7366657220616d6f756e74206d7573742060448201527362652067726561746572207468616e207a65726f60601b606482015260840161033d565b5f80546001600160a01b038581169116148015906108cb57505f546001600160a01b03848116911614155b15610b9357600d546001600160a01b0385811691161480156108fb57506001546001600160a01b03848116911614155b801561091f57506001600160a01b0383165f9081526004602052604090205460ff16155b15610a2c57610944606461093e60065485610d0890919063ffffffff16565b90610d8d565b90506008548211156109a45760405162461bcd60e51b815260206004820152602360248201527f5f7472616e736665723a204578636565647320746865205f6d617854784c696d60448201526234ba1760e91b606482015260840161033d565b600954826109c6856001600160a01b03165f9081526003602052604090205490565b6109d091906112b3565b1115610a2c5760405162461bcd60e51b815260206004820152602560248201527f5f7472616e736665723a204578636565647320746865206d617857616c6c657460448201526429b4bd329760d91b606482015260840161033d565b600d546001600160a01b038481169116148015610a5257506001600160a01b0384163014155b15610ad0576001600160a01b0384165f9081526005602052604090205460ff1615610ab357610a818282610dce565b6001600160a01b0384165f9081526003602052604081208054909190610aa89084906112b3565b909155505050505050565b610acd606461093e60075485610d0890919063ffffffff16565b90505b305f90815260036020526040902054600d54600160a01b900460ff16158015610b065750600d546001600160a01b038581169116145b8015610b1b5750600d54600160b01b900460ff165b8015610b285750600a5483115b15610b9157600b548110610b4657610b41600b54610e0f565b610b59565b600a54811115610b5957610b5981610e0f565b600c546040516001600160a01b03909116904780156108fc02915f818181858888f19350505050158015610b8f573d5f803e3d5ffd5b505b505b8015610c0b57305f90815260036020526040902054610bb29082610f7f565b305f81815260036020526040908190209290925590516001600160a01b038616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c029085815260200190565b60405180910390a35b6001600160a01b0384165f90815260036020526040902054610c2d9083610dce565b6001600160a01b0385165f90815260036020526040902055610c70610c528383610dce565b6001600160a01b0385165f9081526003602052604090205490610f7f565b6001600160a01b038085165f8181526003602052604090209290925585167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef610cb98585610dce565b60405190815260200160405180910390a350505050565b5f8184841115610cf35760405162461bcd60e51b815260040161033d9190611009565b505f610cff84866112c6565b95945050505050565b5f825f03610d1757505f61030e565b5f610d228385611271565b905082610d2f85836112d9565b14610d865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161033d565b9392505050565b5f610d8683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250610fdd565b5f610d8683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610cd0565b600d805460ff60a01b1916600160a01b1790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110610e5557610e556112f8565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610eac573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ed0919061130c565b81600181518110610ee357610ee36112f8565b6001600160a01b039283166020918202929092010152600154610f09913091168461064b565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790610f419085905f90869030904290600401611327565b5f604051808303815f87803b158015610f58575f80fd5b505af1158015610f6a573d5f803e3d5ffd5b5050600d805460ff60a01b1916905550505050565b5f80610f8b83856112b3565b905083811015610d865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161033d565b5f8183610ffd5760405162461bcd60e51b815260040161033d9190611009565b505f610cff84866112d9565b5f602080835283518060208501525f5b8181101561103557858101830151858201604001528201611019565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461035d575f80fd5b5f806040838503121561107a575f80fd5b823561108581611055565b946020939093013593505050565b5f602082840312156110a3575f80fd5b5035919050565b5f805f606084860312156110bc575f80fd5b83356110c781611055565b925060208401356110d781611055565b929592945050506040919091013590565b5f602082840312156110f8575f80fd5b8135610d8681611055565b5f8060408385031215611114575f80fd5b823561111f81611055565b9150602083013561112f81611055565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156111bd57815f19048211156111a3576111a361116f565b808516156111b057918102915b93841c9390800290611188565b509250929050565b5f826111d35750600161030e565b816111df57505f61030e565b81600181146111f557600281146111ff5761121b565b600191505061030e565b60ff8411156112105761121061116f565b50506001821b61030e565b5060208310610133831016604e8410600b841016171561123e575081810a61030e565b6112488383611183565b805f190482111561125b5761125b61116f565b029392505050565b5f610d8660ff8416836111c5565b808202811582820484141761030e5761030e61116f565b5f805f6060848603121561129a575f80fd5b8351925060208401519150604084015190509250925092565b8082018082111561030e5761030e61116f565b8181038181111561030e5761030e61116f565b5f826112f357634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b5f6020828403121561131c575f80fd5b8151610d8681611055565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b818110156113775784516001600160a01b031683529383019391830191600101611352565b50506001600160a01b0396909616606085015250505060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220fa006ddd1e5ef178788a2c7625643653db93086707781dbdd83c777b0b18486f64736f6c63430008160033

Deployed Bytecode Sourcemap

9950:10169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11968:83;;;;;;;;;;-1:-1:-1;12038:5:0;;;;;;;;;;;;-1:-1:-1;;;12038:5:0;;;;11968:83;;;;;;;:::i;:::-;;;;;;;;14172:161;;;;;;;;;;-1:-1:-1;14172:161:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;14172:161:0;1023:187:1;19461:145:0;;;;;;;;;;-1:-1:-1;19461:145:0;;;;;:::i;:::-;;:::i;:::-;;12567:100;;;;;;;;;;;;;:::i;:::-;;;1546:25:1;;;1534:2;1519:18;12567:100:0;1400:177:1;19838:128:0;;;;;;;;;;;;;:::i;14692:313::-;;;;;;;;;;-1:-1:-1;14692:313:0;;;;;:::i;:::-;;:::i;12375:83::-;;;;;;;;;;-1:-1:-1;12375:83:0;;10232:2;2185:36:1;;2173:2;2158:18;12375:83:0;2043:184:1;12863:119:0;;;;;;;;;;-1:-1:-1;12863:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12956:18:0;12929:7;12956:18;;;:9;:18;;;;;;;12863:119;7221:148;;;;;;;;;;;;;:::i;6671:79::-;;;;;;;;;;-1:-1:-1;6709:7:0;6736:6;6671:79;;-1:-1:-1;;;;;6736:6:0;;;2630:51:1;;2618:2;2603:18;6671:79:0;2484:203:1;12161:87:0;;;;;;;;;;-1:-1:-1;12233:7:0;;;;;;;;;;;;-1:-1:-1;;;12233:7:0;;;;12161:87;;13264:167;;;;;;;;;;-1:-1:-1;13264:167:0;;;;;:::i;:::-;;:::i;13722:143::-;;;;;;;;;;-1:-1:-1;13722:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13830:18:0;;;13803:7;13830:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13722:143;18906:547;;;;;;;;;;;;;:::i;14172:161::-;14247:4;14264:39;650:10;14287:7;14296:6;14264:8;:39::i;:::-;-1:-1:-1;14321:4:0;14172:161;;;;;:::o;19461:145::-;6883:6;;-1:-1:-1;;;;;6883:6:0;650:10;6883:22;6875:67;;;;-1:-1:-1;;;6875:67:0;;;;;;;:::i;:::-;;;;;;;;;19524:9:::1;:16:::0;;;19551:10:::1;:17:::0;;;19595:2:::1;19587:10:::0;::::1;;19579:19;;;::::0;::::1;;19461:145:::0;:::o;12567:100::-;12620:7;10293:13;10232:2;10293;:13;:::i;:::-;10281:25;;:9;:25;:::i;:::-;12640:19;;12567:100;:::o;19838:128::-;6883:6;;-1:-1:-1;;;;;6883:6:0;650:10;6883:22;6875:67;;;;-1:-1:-1;;;6875:67:0;;;;;;;:::i;:::-;10293:13:::1;10232:2;10293;:13;:::i;:::-;10281:25;::::0;:9:::1;:25;:::i;:::-;19892:11;:26:::0;10293:13:::1;10232:2;10293;:13;:::i;:::-;10281:25;::::0;:9:::1;:25;:::i;:::-;19929:14;:29:::0;19838:128::o;14692:313::-;14790:4;14807:36;14817:6;14825:9;14836:6;14807:9;:36::i;:::-;14854:121;14863:6;650:10;14885:89;14923:6;14885:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14885:19:0;;;;;;:11;:19;;;;;;;;650:10;14885:33;;;;;;;;;;:37;:89::i;:::-;14854:8;:121::i;:::-;-1:-1:-1;14993:4:0;14692:313;;;;;:::o;7221:148::-;6883:6;;-1:-1:-1;;;;;6883:6:0;650:10;6883:22;6875:67;;;;-1:-1:-1;;;6875:67:0;;;;;;;:::i;:::-;7328:1:::1;7312:6:::0;;7291:40:::1;::::0;-1:-1:-1;;;;;7312:6:0;;::::1;::::0;7291:40:::1;::::0;7328:1;;7291:40:::1;7359:1;7342:19:::0;;-1:-1:-1;;;;;;7342:19:0::1;::::0;;7221:148::o;13264:167::-;13342:4;13359:42;650:10;13383:9;13394:6;13359:9;:42::i;18906:547::-;6883:6;;-1:-1:-1;;;;;6883:6:0;650:10;6883:22;6875:67;;;;-1:-1:-1;;;6875:67:0;;;;;;;:::i;:::-;18974:12:::1;::::0;-1:-1:-1;;;18974:12:0;::::1;;;18973:13;18965:62;;;::::0;-1:-1:-1;;;18965:62:0;;5330:2:1;18965:62:0::1;::::0;::::1;5312:21:1::0;5369:2;5349:18;;;5342:30;5408:34;5388:18;;;5381:62;-1:-1:-1;;;5459:18:1;;;5452:34;5503:19;;18965:62:0::1;5128:400:1::0;18965:62:0::1;19086:15;::::0;-1:-1:-1;;;;;19086:15:0::1;:31;19139:21;19194:4;19214:24;19194:4:::0;-1:-1:-1;;;;;12956:18:0;12929:7;12956:18;;;:9;:18;;;;;;;12863:119;19214:24:::1;19253:1;19269::::0;19285:7:::1;6709::::0;6736:6;-1:-1:-1;;;;;6736:6:0;;6671:79;19285:7:::1;19086:247;::::0;::::1;::::0;;;-1:-1:-1;;;;;;19086:247:0;;;-1:-1:-1;;;;;5892:15:1;;;19086:247:0::1;::::0;::::1;5874:34:1::0;5924:18;;;5917:34;;;;5967:18;;;5960:34;;;;6010:18;;;6003:34;6074:15;;;6053:19;;;6046:44;19307:15:0::1;6106:19:1::0;;;6099:35;5808:19;;19086:247:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;19358:2:0::1;19346:9;:14:::0;;;19371:10:::1;:15:::0;-1:-1:-1;19397:12:0::1;:19:::0;;-1:-1:-1;;;;19427:18:0;-1:-1:-1;;;19427:18:0;;;18906:547::o;15312:335::-;-1:-1:-1;;;;;15405:19:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;6658:2:1;15397:68:0;;;6640:21:1;6697:2;6677:18;;;6670:30;6736:34;6716:18;;;6709:62;-1:-1:-1;;;6787:18:1;;;6780:34;6831:19;;15397:68:0;6456:400:1;15397:68:0;-1:-1:-1;;;;;15484:21:0;;15476:68;;;;-1:-1:-1;;;15476:68:0;;7063:2:1;15476:68:0;;;7045:21:1;7102:2;7082:18;;;7075:30;7141:34;7121:18;;;7114:62;-1:-1:-1;;;7192:18:1;;;7185:32;7234:19;;15476:68:0;6861:398:1;15476:68:0;-1:-1:-1;;;;;15555:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15607:32;;1546:25:1;;;15607:32:0;;1519:18:1;15607:32:0;;;;;;;15312:335;;;:::o;15927:2350::-;-1:-1:-1;;;;;16017:18:0;;16009:68;;;;-1:-1:-1;;;16009:68:0;;7466:2:1;16009:68:0;;;7448:21:1;7505:2;7485:18;;;7478:30;7544:34;7524:18;;;7517:62;-1:-1:-1;;;7595:18:1;;;7588:35;7640:19;;16009:68:0;7264:401:1;16009:68:0;-1:-1:-1;;;;;16096:18:0;;16088:66;;;;-1:-1:-1;;;16088:66:0;;7872:2:1;16088:66:0;;;7854:21:1;7911:2;7891:18;;;7884:30;7950:34;7930:18;;;7923:62;-1:-1:-1;;;8001:18:1;;;7994:33;8044:19;;16088:66:0;7670:399:1;16088:66:0;16182:1;16173:6;:10;16165:75;;;;-1:-1:-1;;;16165:75:0;;8276:2:1;16165:75:0;;;8258:21:1;8315:2;8295:18;;;8288:30;8354:34;8334:18;;;8327:62;-1:-1:-1;;;8405:18:1;;;8398:50;8465:19;;16165:75:0;8074:416:1;16165:75:0;16253:17;6736:6;;-1:-1:-1;;;;;16380:15:0;;;6736:6;;16380:15;;;;:34;;-1:-1:-1;6709:7:0;6736:6;-1:-1:-1;;;;;16399:15:0;;;6736:6;;16399:15;;16380:34;16376:1403;;;16530:12;;-1:-1:-1;;;;;16522:20:0;;;16530:12;;16522:20;:56;;;;-1:-1:-1;16562:15:0;;-1:-1:-1;;;;;16546:32:0;;;16562:15;;16546:32;;16522:56;:85;;;;-1:-1:-1;;;;;;16583:24:0;;;;;;:18;:24;;;;;;;;16582:25;16522:85;16518:367;;;16640:30;16666:3;16640:21;16651:9;;16640:6;:10;;:21;;;;:::i;:::-;:25;;:30::i;:::-;16628:42;;16707:11;;16697:6;:21;;16689:69;;;;-1:-1:-1;;;16689:69:0;;8697:2:1;16689:69:0;;;8679:21:1;8736:2;8716:18;;;8709:30;8775:34;8755:18;;;8748:62;-1:-1:-1;;;8826:18:1;;;8819:33;8869:19;;16689:69:0;8495:399:1;16689:69:0;16813:14;;16803:6;16785:15;16795:4;-1:-1:-1;;;;;12956:18:0;12929:7;12956:18;;;:9;:18;;;;;;;12863:119;16785:15;:24;;;;:::i;:::-;:42;;16777:92;;;;-1:-1:-1;;;16777:92:0;;9231:2:1;16777:92:0;;;9213:21:1;9270:2;9250:18;;;9243:30;9309:34;9289:18;;;9282:62;-1:-1:-1;;;9360:18:1;;;9353:35;9405:19;;16777:92:0;9029:401:1;16777:92:0;16999:12;;-1:-1:-1;;;;;16991:20:0;;;16999:12;;16991:20;:45;;;;-1:-1:-1;;;;;;17015:21:0;;17031:4;17015:21;;16991:45;16987:228;;;-1:-1:-1;;;;;17060:24:0;;;;;;:18;:24;;;;;;;;17057:81;;;17107:21;:6;17118:9;17107:10;:21::i;:::-;-1:-1:-1;;;;;17088:15:0;;;;;;:9;:15;;;;;:40;;:15;;;:40;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;15927:2350:0:o;17057:81::-;17168:31;17195:3;17168:22;17179:10;;17168:6;:10;;:22;;;;:::i;:31::-;17156:43;;16987:228;17339:4;17295:23;12956:18;;;:9;:18;;;;;;17365:11;;-1:-1:-1;;;17365:11:0;;;;17364:12;:36;;;;-1:-1:-1;17388:12:0;;-1:-1:-1;;;;;17380:20:0;;;17388:12;;17380:20;17364:36;:51;;;;-1:-1:-1;17404:11:0;;-1:-1:-1;;;17404:11:0;;;;17364:51;:79;;;;;17428:15;;17419:6;:24;17364:79;17360:408;;;17487:15;;17468;:34;17464:228;;17527:29;17540:15;;17527:12;:29::i;:::-;17464:228;;;17603:15;;17585;:33;17582:110;;;17643:29;17656:15;17643:12;:29::i;:::-;17710:10;;:42;;-1:-1:-1;;;;;17710:10:0;;;;17730:21;17710:42;;;;;:10;:42;:10;:42;17730:21;17710:10;:42;;;;;;;;;;;;;;;;;;;;;17360:408;16416:1363;16376:1403;17866:13;;17862:172;;17941:4;17923:24;;;;:9;:24;;;;;;:39;;17952:9;17923:28;:39::i;:::-;17914:4;17896:24;;;;:9;:24;;;;;;;:66;;;;17982:40;;-1:-1:-1;;;;;17982:40:0;;;;;;;18012:9;1546:25:1;;1534:2;1519:18;;1400:177;17982:40:0;;;;;;;;17862:172;-1:-1:-1;;;;;18112:15:0;;;;;;:9;:15;;;;;;:27;;18132:6;18112:19;:27::i;:::-;-1:-1:-1;;;;;18094:15:0;;;;;;:9;:15;;;;;:45;18168:42;18188:21;:6;18199:9;18188:10;:21::i;:::-;-1:-1:-1;;;;;18168:15:0;;;;;;:9;:15;;;;;;;:19;:42::i;:::-;-1:-1:-1;;;;;18150:15:0;;;;;;;:9;:15;;;;;:60;;;;18226:43;;;18247:21;:6;18258:9;18247:10;:21::i;:::-;18226:43;;1546:25:1;;;1534:2;1519:18;18226:43:0;;;;;;;15998:2279;15927:2350;;;:::o;4570:190::-;4656:7;4692:12;4684:6;;;;4676:29;;;;-1:-1:-1;;;4676:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4716:9:0;4728:5;4732:1;4728;:5;:::i;:::-;4716:17;4570:190;-1:-1:-1;;;;;4570:190:0:o;5000:246::-;5058:7;5082:1;5087;5082:6;5078:47;;-1:-1:-1;5112:1:0;5105:8;;5078:47;5135:9;5147:5;5151:1;5147;:5;:::i;:::-;5135:17;-1:-1:-1;5180:1:0;5171:5;5175:1;5135:17;5171:5;:::i;:::-;:10;5163:56;;;;-1:-1:-1;;;5163:56:0;;9992:2:1;5163:56:0;;;9974:21:1;10031:2;10011:18;;;10004:30;10070:34;10050:18;;;10043:62;-1:-1:-1;;;10121:18:1;;;10114:31;10162:19;;5163:56:0;9790:397:1;5163:56:0;5237:1;5000:246;-1:-1:-1;;;5000:246:0:o;5452:132::-;5510:7;5537:39;5541:1;5544;5537:39;;;;;;;;;;;;;;;;;:3;:39::i;4095:136::-;4153:7;4180:43;4184:1;4187;4180:43;;;;;;;;;;;;;;;;;:3;:43::i;18415:479::-;11118:11;:18;;-1:-1:-1;;;;11118:18:0;-1:-1:-1;;;11118:18:0;;;18513:16:::1;::::0;;18527:1:::1;18513:16:::0;;;;;::::1;::::0;;-1:-1:-1;;18513:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;18513:16:0::1;18489:40;;18558:4;18540;18545:1;18540:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18540:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;18584:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;18584:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;18540:7;;18584:22;;;;;:15;:22:::1;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18574:4;18579:1;18574:7;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;18574:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;18649:15:::1;::::0;18617:62:::1;::::0;18634:4:::1;::::0;18649:15:::1;18667:11:::0;18617:8:::1;:62::i;:::-;18690:15;::::0;:196:::1;::::0;-1:-1:-1;;;18690:196:0;;-1:-1:-1;;;;;18690:15:0;;::::1;::::0;:66:::1;::::0;:196:::1;::::0;18771:11;;18690:15:::1;::::0;18813:4;;18840::::1;::::0;18860:15:::1;::::0;18690:196:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;11159:11:0;:19;;-1:-1:-1;;;;11159:19:0;;;-1:-1:-1;;;;18415:479:0:o;3659:179::-;3717:7;;3749:5;3753:1;3749;:5;:::i;:::-;3737:17;;3778:1;3773;:6;;3765:46;;;;-1:-1:-1;;;3765:46:0;;11899:2:1;3765:46:0;;;11881:21:1;11938:2;11918:18;;;11911:30;11977:29;11957:18;;;11950:57;12024:18;;3765:46:0;11697:351:1;5872:189:0;5958:7;5993:12;5986:5;5978:28;;;;-1:-1:-1;;;5978:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6017:9:0;6029:5;6033:1;6029;: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;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;1215:180::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;-1:-1:-1;1366:23:1;;1215:180;-1:-1:-1;1215:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:356::-;3287:2;3269:21;;;3306:18;;;3299:30;3365:34;3360:2;3345:18;;3338:62;3432:2;3417:18;;3085:356::o;3446:127::-;3507:10;3502:3;3498:20;3495:1;3488:31;3538:4;3535:1;3528:15;3562:4;3559:1;3552:15;3578:416;3667:1;3704:5;3667:1;3718:270;3739:7;3729:8;3726:21;3718:270;;;3798:4;3794:1;3790:6;3786:17;3780:4;3777:27;3774:53;;;3807:18;;:::i;:::-;3857:7;3847:8;3843:22;3840:55;;;3877:16;;;;3840:55;3956:22;;;;3916:15;;;;3718:270;;;3722:3;3578:416;;;;;:::o;3999:806::-;4048:5;4078:8;4068:80;;-1:-1:-1;4119:1:1;4133:5;;4068:80;4167:4;4157:76;;-1:-1:-1;4204:1:1;4218:5;;4157:76;4249:4;4267:1;4262:59;;;;4335:1;4330:130;;;;4242:218;;4262:59;4292:1;4283:10;;4306:5;;;4330:130;4367:3;4357:8;4354:17;4351:43;;;4374:18;;:::i;:::-;-1:-1:-1;;4430:1:1;4416:16;;4445:5;;4242:218;;4544:2;4534:8;4531:16;4525:3;4519:4;4516:13;4512:36;4506:2;4496:8;4493:16;4488:2;4482:4;4479:12;4475:35;4472:77;4469:159;;;-1:-1:-1;4581:19:1;;;4613:5;;4469:159;4660:34;4685:8;4679:4;4660:34;:::i;:::-;4730:6;4726:1;4722:6;4718:19;4709:7;4706:32;4703:58;;;4741:18;;:::i;:::-;4779:20;;3999:806;-1:-1:-1;;;3999:806:1:o;4810:140::-;4868:5;4897:47;4938:4;4928:8;4924:19;4918:4;4897:47;:::i;4955:168::-;5028:9;;;5059;;5076:15;;;5070:22;;5056:37;5046:71;;5097:18;;:::i;6145:306::-;6233:6;6241;6249;6302:2;6290:9;6281:7;6277:23;6273:32;6270:52;;;6318:1;6315;6308:12;6270:52;6347:9;6341:16;6331:26;;6397:2;6386:9;6382:18;6376:25;6366:35;;6441:2;6430:9;6426:18;6420:25;6410:35;;6145:306;;;;;:::o;8899:125::-;8964:9;;;8985:10;;;8982:36;;;8998:18;;:::i;9435:128::-;9502:9;;;9523:11;;;9520:37;;;9537:18;;:::i;9568:217::-;9608:1;9634;9624:132;;9678:10;9673:3;9669:20;9666:1;9659:31;9713:4;9710:1;9703:15;9741:4;9738:1;9731:15;9624:132;-1:-1:-1;9770:9:1;;9568:217::o;10324:127::-;10385:10;10380:3;10376:20;10373:1;10366:31;10416:4;10413:1;10406:15;10440:4;10437:1;10430:15;10456:251;10526:6;10579:2;10567:9;10558:7;10554:23;10550:32;10547:52;;;10595:1;10592;10585:12;10547:52;10627:9;10621:16;10646:31;10671:5;10646:31;:::i;10712:980::-;10974:4;11022:3;11011:9;11007:19;11053:6;11042:9;11035:25;11079:2;11117:6;11112:2;11101:9;11097:18;11090:34;11160:3;11155:2;11144:9;11140:18;11133:31;11184:6;11219;11213:13;11250:6;11242;11235:22;11288:3;11277:9;11273:19;11266:26;;11327:2;11319:6;11315:15;11301:29;;11348:1;11358:195;11372:6;11369:1;11366:13;11358:195;;;11437:13;;-1:-1:-1;;;;;11433:39:1;11421:52;;11528:15;;;;11493:12;;;;11469:1;11387:9;11358:195;;;-1:-1:-1;;;;;;;11609:32:1;;;;11604:2;11589:18;;11582:60;-1:-1:-1;;;11673:3:1;11658:19;11651:35;11570:3;10712:980;-1:-1:-1;;;10712:980:1:o

Swarm Source

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