ETH Price: $3,421.99 (-0.54%)
Gas: 3 Gwei

Token

BOOMB Token (BOOMB)
 

Overview

Max Total Supply

7,196,643.767129493226991261 BOOMB

Holders

43

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
mattm.eth
Balance
7,750.481274408434155518 BOOMB

Value
$0.00
0x25a0E1E03276F195dcAF8F189302Deee2d798A4E
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:
BOOMB

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-02
*/

// File: SafeMath.sol

pragma solidity ^0.6.2;

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @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) {
        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;
    }
}
// File: IERC20.sol

pragma solidity ^0.6.2;

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the number of decimal places.
     */
    function decimals() external view returns (uint8);

    /**
     * @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.
     *
     * 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: Context.sol

pragma solidity ^0.6.2;

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

/*
 * @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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

pragma solidity ^0.6.2;


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

/**
 * @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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.6.2;




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

/**
 * @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 {
    using SafeMath for uint256;

    mapping (address => uint256) internal _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view 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 {_setupDecimals} is
     * called.
     *
     * 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 override returns (uint8) {
        return _decimals;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].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 {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].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 {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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @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 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @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: BOOMBToken.sol



pragma solidity ^0.6.2;

interface Callable {
    function tokenCallback(address _from, uint256 _tokens, bytes calldata _data) external returns (bool);
    function receiveApproval(address _from, uint256 _tokens, address _token, bytes calldata _data) external;
}

// BOOMB Token
contract BOOMB is ERC20("BOOMB Token", "BOOMB"), Ownable {

    // There will be a max supply of 7,200,000 BOOMB tokens
    uint256 public constant MAX_SUPPLY = 72000000 * 10**18;
    bool public maxSupplyHit = false;

    // Premint is enabled on deploy.
    bool public premintingEnd = false;

    // The BOOMB transfer fee that gets burned (1 = 0.1%). Defaults to 1%
    uint256 public transferFee = 10;

    // The Total amount of BOOMB tokens burned.
    uint256 public totalBurned = 0;

    // Creates `_amount` token to `_to`. Can only be called by owner to mint initial supply to the NFT Staking Rewards Wallet.
    function mint(address _to, uint256 _amount) public onlyOwner {
        require(maxSupplyHit != true, "max supply hit");
        
        if (_amount > 0) {
            _mint(_to, _amount);
        }

        maxSupplyHit = true;
    }

    // Creates `_amount` token to `_to`. Can only be called for 200,000 pre-mint by owner. Function is disabled after one single use.
    function premint(address _to, uint256 _amount) public onlyOwner {
        require(maxSupplyHit != true, "max supply hit");
        require(premintingEnd != true, "200,000 have already been pre-minted, and owner has disabled this function!");
        require(_amount == 200000000000000000000000);

        if (_amount > 0) {
            _mint(_to, _amount);
        }

        premintingEnd = true;
    }


    // Sets the BOOMB transfer fee that gets burned. Can't be higher than 10%.
    function setTransferFee(uint256 _transferFee) public onlyOwner {
        require(_transferFee <= 100, "over 10%");
        transferFee = _transferFee;
    }

    function approveAndCall(address _spender, uint256 _tokens, bytes calldata _data) external returns (bool) {
        approve(_spender, _tokens);
        Callable(_spender).receiveApproval(msg.sender, _tokens, address(this), _data);
        return true;
    }

    function transferAndCall(address _to, uint256 _tokens, bytes calldata _data) external returns (bool) {
        uint256 _balanceBefore = balanceOf(_to);
        transfer(_to, _tokens);
        uint256 _tokensReceived = balanceOf(_to) - _balanceBefore;
        uint32 _size;
        assembly {
            _size := extcodesize(_to)
        }
        if (_size > 0) {
            require(Callable(_to).tokenCallback(msg.sender, _tokensReceived, _data));
        }
        return true;
    }

    // There's a fee on every BOOMB transfer that gets burned.
    function _transfer(address sender, address recipient, uint256 amount) internal override {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        uint256 transferFeeAmount;
        uint256 tokensToTransfer;

            transferFeeAmount = amount.mul(transferFee).div(1000);
            tokensToTransfer = amount.sub(transferFeeAmount);

            if (tokensToTransfer > 0) {
                _balances[sender] = _balances[sender].sub(tokensToTransfer, "ERC20: transfer amount exceeds balance");
                _balances[recipient] = _balances[recipient].add(tokensToTransfer);
                _burn(sender, transferFeeAmount);
                totalBurned = totalBurned.add(transferFeeAmount);

            }

        emit Transfer(sender, recipient, tokensToTransfer);
    }

    // View function for Total Burned.
    function burned() public view returns (uint256) {
        return totalBurned;
    }

}

Contract Security Audit

Contract ABI

[{"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":"MAX_SUPPLY","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":"_spender","type":"address"},{"internalType":"uint256","name":"_tokens","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"approveAndCall","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":"burned","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":[],"name":"maxSupplyHit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"premintingEnd","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_to","type":"address"},{"internalType":"uint256","name":"_tokens","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

6005805461ffff60a81b19168155600a6006556000600755600b60808181526a2127a7a6a1102a37b5b2b760a91b60a090815261010060405260c0938452642127a7a6a160d91b60e0529092916200005a91600391620000f6565b50805162000070906004906020840190620000f6565b50506005805460ff19166012179055506000620000956001600160e01b03620000f116565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000198565b335b90565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200013957805160ff191683800117855562000169565b8280016001018555821562000169579182015b82811115620001695782518255916020019190600101906200014c565b50620001779291506200017b565b5090565b620000f391905b8082111562000177576000815560010162000182565b61180980620001a86000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806373f42561116100de578063a9059cbb11610097578063cae9ca5111610071578063cae9ca51146104a5578063d89135cd1461052a578063dd62ed3e14610532578063f2fde38b1461056057610173565b8063a9059cbb14610469578063acb2ad6f14610495578063b41328701461049d57610173565b806373f42561146103e45780638da5cb5b146103ec5780638f02bb5b14610410578063944214c41461042d57806395d89b4114610435578063a457c2d71461043d57610173565b806332cb6b0c1161013057806332cb6b0c146102d157806339509351146102d95780634000aea01461030557806340c10f191461038a57806370a08231146103b6578063715018a6146103dc57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632b5e3e2614610285578063313ce567146102b3575b600080fd5b610180610586565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561061c565b604080519115158252519081900360200190f35b61023d61063a565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610640565b6102b16004803603604081101561029b57600080fd5b506001600160a01b0381351690602001356106cd565b005b6102bb61080a565b6040805160ff9092168252519081900360200190f35b61023d610813565b610221600480360360408110156102ef57600080fd5b506001600160a01b038135169060200135610822565b6102216004803603606081101561031b57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561034b57600080fd5b82018360208201111561035d57600080fd5b8035906020019184600183028401116401000000008311171561037f57600080fd5b509092509050610876565b6102b1600480360360408110156103a057600080fd5b506001600160a01b038135169060200135610976565b61023d600480360360208110156103cc57600080fd5b50356001600160a01b0316610a4f565b6102b1610a6a565b61023d610b17565b6103f4610b1d565b604080516001600160a01b039092168252519081900360200190f35b6102b16004803603602081101561042657600080fd5b5035610b31565b610221610bd4565b610180610be4565b6102216004803603604081101561045357600080fd5b506001600160a01b038135169060200135610c45565b6102216004803603604081101561047f57600080fd5b506001600160a01b038135169060200135610cb3565b61023d610cc7565b610221610ccd565b610221600480360360608110156104bb57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156104eb57600080fd5b8201836020820111156104fd57600080fd5b8035906020019184600183028401116401000000008311171561051f57600080fd5b509092509050610cdd565b61023d610d9e565b61023d6004803603604081101561054857600080fd5b506001600160a01b0381358116916020013516610da4565b6102b16004803603602081101561057657600080fd5b50356001600160a01b0316610dcf565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b6000610630610629610ed8565b8484610edc565b5060015b92915050565b60025490565b600061064d848484610fc8565b6106c384610659610ed8565b6106be856040518060600160405280602881526020016116b2602891396001600160a01b038a16600090815260016020526040812090610697610ed8565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61119a16565b610edc565b5060019392505050565b6106d5610ed8565b60055461010090046001600160a01b0390811691161461072a576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b600554600160a81b900460ff1615156001141561077f576040805162461bcd60e51b815260206004820152600e60248201526d1b585e081cdd5c1c1b1e481a1a5d60921b604482015290519081900360640190fd5b600554600160b01b900460ff161515600114156107cd5760405162461bcd60e51b815260040180806020018281038252604b8152602001806116fa604b913960600191505060405180910390fd5b80692a5a058fc295ed000000146107e357600080fd5b80156107f3576107f38282611231565b50506005805460ff60b01b1916600160b01b179055565b60055460ff1690565b6a3b8e97d229a2d54800000081565b600061063061082f610ed8565b846106be8560016000610840610ed8565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61132d16565b60008061088286610a4f565b905061088e8686610cb3565b5060008161089b88610a4f565b039050863b63ffffffff81161561096857604051636be32e7360e01b8152336004820181815260248301859052606060448401908152606484018990526001600160a01b038c1693636be32e73939287928c928c929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b505050506040513d602081101561095d57600080fd5b505161096857600080fd5b506001979650505050505050565b61097e610ed8565b60055461010090046001600160a01b039081169116146109d3576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b600554600160a81b900460ff16151560011415610a28576040805162461bcd60e51b815260206004820152600e60248201526d1b585e081cdd5c1c1b1e481a1a5d60921b604482015290519081900360640190fd5b8015610a3857610a388282611231565b50506005805460ff60a81b1916600160a81b179055565b6001600160a01b031660009081526020819052604090205490565b610a72610ed8565b60055461010090046001600160a01b03908116911614610ac7576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60075490565b60055461010090046001600160a01b031690565b610b39610ed8565b60055461010090046001600160a01b03908116911614610b8e576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b6064811115610bcf576040805162461bcd60e51b81526020600482015260086024820152676f7665722031302560c01b604482015290519081900360640190fd5b600655565b600554600160b01b900460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106125780601f106105e757610100808354040283529160200191610612565b6000610630610c52610ed8565b846106be856040518060600160405280602581526020016117af6025913960016000610c7c610ed8565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61119a16565b6000610630610cc0610ed8565b8484610fc8565b60065481565b600554600160a81b900460ff1681565b6000610ce9858561061c565b50604051638f4ffcb160e01b81523360048201818152602483018790523060448401819052608060648501908152608485018790526001600160a01b038a1694638f4ffcb194938a93928a928a92919060a401848480828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610d7b57600080fd5b505af1158015610d8f573d6000803e3d6000fd5b50600198975050505050505050565b60075481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dd7610ed8565b60055461010090046001600160a01b03908116911614610e2c576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b6001600160a01b038116610e715760405162461bcd60e51b81526004018080602001828103825260268152602001806116236026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316610f215760405162461bcd60e51b815260040180806020018281038252602481526020018061178b6024913960400191505060405180910390fd5b6001600160a01b038216610f665760405162461bcd60e51b81526004018080602001828103825260228152602001806116496022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661100d5760405162461bcd60e51b81526004018080602001828103825260258152602001806117666025913960400191505060405180910390fd5b6001600160a01b0382166110525760405162461bcd60e51b81526004018080602001828103825260238152602001806115de6023913960400191505060405180910390fd5b60008061107c6103e86110706006548661138e90919063ffffffff16565b9063ffffffff6113e716565b915061108e838363ffffffff61142916565b90508015611148576110d98160405180606001604052806026815260200161166b602691396001600160a01b038816600090815260208190526040902054919063ffffffff61119a16565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461110e908263ffffffff61132d16565b6001600160a01b038516600090815260208190526040902055611131858361146b565b600754611144908363ffffffff61132d16565b6007555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b600081848411156112295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ee5781810151838201526020016111d6565b50505050905090810190601f16801561121b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661128c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61129860008383611573565b6002546112ab908263ffffffff61132d16565b6002556001600160a01b0382166000908152602081905260409020546112d7908263ffffffff61132d16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015611387576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261139d57506000610634565b828202828482816113aa57fe5b04146113875760405162461bcd60e51b81526004018080602001828103825260218152602001806116916021913960400191505060405180910390fd5b600061138783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611578565b600061138783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061119a565b6001600160a01b0382166114b05760405162461bcd60e51b81526004018080602001828103825260218152602001806117456021913960400191505060405180910390fd5b6114bc82600083611573565b6114ff81604051806060016040528060228152602001611601602291396001600160a01b038516600090815260208190526040902054919063ffffffff61119a16565b6001600160a01b03831660009081526020819052604090205560025461152b908263ffffffff61142916565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600081836115c75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111ee5781810151838201526020016111d6565b5060008385816115d357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65723230302c303030206861766520616c7265616479206265656e207072652d6d696e7465642c20616e64206f776e6572206861732064697361626c656420746869732066756e6374696f6e2145524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220247aa7a2128105776ccdc08d0661f6c64707348dd91ca1ada26fdc1d25fb5c9464736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806373f42561116100de578063a9059cbb11610097578063cae9ca5111610071578063cae9ca51146104a5578063d89135cd1461052a578063dd62ed3e14610532578063f2fde38b1461056057610173565b8063a9059cbb14610469578063acb2ad6f14610495578063b41328701461049d57610173565b806373f42561146103e45780638da5cb5b146103ec5780638f02bb5b14610410578063944214c41461042d57806395d89b4114610435578063a457c2d71461043d57610173565b806332cb6b0c1161013057806332cb6b0c146102d157806339509351146102d95780634000aea01461030557806340c10f191461038a57806370a08231146103b6578063715018a6146103dc57610173565b806306fdde0314610178578063095ea7b3146101f557806318160ddd1461023557806323b872dd1461024f5780632b5e3e2614610285578063313ce567146102b3575b600080fd5b610180610586565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101ba5781810151838201526020016101a2565b50505050905090810190601f1680156101e75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102216004803603604081101561020b57600080fd5b506001600160a01b03813516906020013561061c565b604080519115158252519081900360200190f35b61023d61063a565b60408051918252519081900360200190f35b6102216004803603606081101561026557600080fd5b506001600160a01b03813581169160208101359091169060400135610640565b6102b16004803603604081101561029b57600080fd5b506001600160a01b0381351690602001356106cd565b005b6102bb61080a565b6040805160ff9092168252519081900360200190f35b61023d610813565b610221600480360360408110156102ef57600080fd5b506001600160a01b038135169060200135610822565b6102216004803603606081101561031b57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561034b57600080fd5b82018360208201111561035d57600080fd5b8035906020019184600183028401116401000000008311171561037f57600080fd5b509092509050610876565b6102b1600480360360408110156103a057600080fd5b506001600160a01b038135169060200135610976565b61023d600480360360208110156103cc57600080fd5b50356001600160a01b0316610a4f565b6102b1610a6a565b61023d610b17565b6103f4610b1d565b604080516001600160a01b039092168252519081900360200190f35b6102b16004803603602081101561042657600080fd5b5035610b31565b610221610bd4565b610180610be4565b6102216004803603604081101561045357600080fd5b506001600160a01b038135169060200135610c45565b6102216004803603604081101561047f57600080fd5b506001600160a01b038135169060200135610cb3565b61023d610cc7565b610221610ccd565b610221600480360360608110156104bb57600080fd5b6001600160a01b03823516916020810135918101906060810160408201356401000000008111156104eb57600080fd5b8201836020820111156104fd57600080fd5b8035906020019184600183028401116401000000008311171561051f57600080fd5b509092509050610cdd565b61023d610d9e565b61023d6004803603604081101561054857600080fd5b506001600160a01b0381358116916020013516610da4565b6102b16004803603602081101561057657600080fd5b50356001600160a01b0316610dcf565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106125780601f106105e757610100808354040283529160200191610612565b820191906000526020600020905b8154815290600101906020018083116105f557829003601f168201915b5050505050905090565b6000610630610629610ed8565b8484610edc565b5060015b92915050565b60025490565b600061064d848484610fc8565b6106c384610659610ed8565b6106be856040518060600160405280602881526020016116b2602891396001600160a01b038a16600090815260016020526040812090610697610ed8565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61119a16565b610edc565b5060019392505050565b6106d5610ed8565b60055461010090046001600160a01b0390811691161461072a576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b600554600160a81b900460ff1615156001141561077f576040805162461bcd60e51b815260206004820152600e60248201526d1b585e081cdd5c1c1b1e481a1a5d60921b604482015290519081900360640190fd5b600554600160b01b900460ff161515600114156107cd5760405162461bcd60e51b815260040180806020018281038252604b8152602001806116fa604b913960600191505060405180910390fd5b80692a5a058fc295ed000000146107e357600080fd5b80156107f3576107f38282611231565b50506005805460ff60b01b1916600160b01b179055565b60055460ff1690565b6a3b8e97d229a2d54800000081565b600061063061082f610ed8565b846106be8560016000610840610ed8565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61132d16565b60008061088286610a4f565b905061088e8686610cb3565b5060008161089b88610a4f565b039050863b63ffffffff81161561096857604051636be32e7360e01b8152336004820181815260248301859052606060448401908152606484018990526001600160a01b038c1693636be32e73939287928c928c929190608401848480828437600081840152601f19601f82011690508083019250505095505050505050602060405180830381600087803b15801561093357600080fd5b505af1158015610947573d6000803e3d6000fd5b505050506040513d602081101561095d57600080fd5b505161096857600080fd5b506001979650505050505050565b61097e610ed8565b60055461010090046001600160a01b039081169116146109d3576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b600554600160a81b900460ff16151560011415610a28576040805162461bcd60e51b815260206004820152600e60248201526d1b585e081cdd5c1c1b1e481a1a5d60921b604482015290519081900360640190fd5b8015610a3857610a388282611231565b50506005805460ff60a81b1916600160a81b179055565b6001600160a01b031660009081526020819052604090205490565b610a72610ed8565b60055461010090046001600160a01b03908116911614610ac7576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60075490565b60055461010090046001600160a01b031690565b610b39610ed8565b60055461010090046001600160a01b03908116911614610b8e576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b6064811115610bcf576040805162461bcd60e51b81526020600482015260086024820152676f7665722031302560c01b604482015290519081900360640190fd5b600655565b600554600160b01b900460ff1681565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106125780601f106105e757610100808354040283529160200191610612565b6000610630610c52610ed8565b846106be856040518060600160405280602581526020016117af6025913960016000610c7c610ed8565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61119a16565b6000610630610cc0610ed8565b8484610fc8565b60065481565b600554600160a81b900460ff1681565b6000610ce9858561061c565b50604051638f4ffcb160e01b81523360048201818152602483018790523060448401819052608060648501908152608485018790526001600160a01b038a1694638f4ffcb194938a93928a928a92919060a401848480828437600081840152601f19601f8201169050808301925050509650505050505050600060405180830381600087803b158015610d7b57600080fd5b505af1158015610d8f573d6000803e3d6000fd5b50600198975050505050505050565b60075481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610dd7610ed8565b60055461010090046001600160a01b03908116911614610e2c576040805162461bcd60e51b815260206004820181905260248201526000805160206116da833981519152604482015290519081900360640190fd5b6001600160a01b038116610e715760405162461bcd60e51b81526004018080602001828103825260268152602001806116236026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316610f215760405162461bcd60e51b815260040180806020018281038252602481526020018061178b6024913960400191505060405180910390fd5b6001600160a01b038216610f665760405162461bcd60e51b81526004018080602001828103825260228152602001806116496022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b03831661100d5760405162461bcd60e51b81526004018080602001828103825260258152602001806117666025913960400191505060405180910390fd5b6001600160a01b0382166110525760405162461bcd60e51b81526004018080602001828103825260238152602001806115de6023913960400191505060405180910390fd5b60008061107c6103e86110706006548661138e90919063ffffffff16565b9063ffffffff6113e716565b915061108e838363ffffffff61142916565b90508015611148576110d98160405180606001604052806026815260200161166b602691396001600160a01b038816600090815260208190526040902054919063ffffffff61119a16565b6001600160a01b03808716600090815260208190526040808220939093559086168152205461110e908263ffffffff61132d16565b6001600160a01b038516600090815260208190526040902055611131858361146b565b600754611144908363ffffffff61132d16565b6007555b836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b600081848411156112295760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156111ee5781810151838201526020016111d6565b50505050905090810190601f16801561121b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821661128c576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b61129860008383611573565b6002546112ab908263ffffffff61132d16565b6002556001600160a01b0382166000908152602081905260409020546112d7908263ffffffff61132d16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b600082820183811015611387576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60008261139d57506000610634565b828202828482816113aa57fe5b04146113875760405162461bcd60e51b81526004018080602001828103825260218152602001806116916021913960400191505060405180910390fd5b600061138783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611578565b600061138783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061119a565b6001600160a01b0382166114b05760405162461bcd60e51b81526004018080602001828103825260218152602001806117456021913960400191505060405180910390fd5b6114bc82600083611573565b6114ff81604051806060016040528060228152602001611601602291396001600160a01b038516600090815260208190526040902054919063ffffffff61119a16565b6001600160a01b03831660009081526020819052604090205560025461152b908263ffffffff61142916565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b505050565b600081836115c75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156111ee5781810151838201526020016111d6565b5060008385816115d357fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65723230302c303030206861766520616c7265616479206265656e207072652d6d696e7465642c20616e64206f776e6572206861732064697361626c656420746869732066756e6374696f6e2145524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220247aa7a2128105776ccdc08d0661f6c64707348dd91ca1ada26fdc1d25fb5c9464736f6c63430006020033

Deployed Bytecode Sourcemap

22976:3582:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22976:3582:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13834:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;13834:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15949:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15949:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;14918:100;;;:::i;:::-;;;;;;;;;;;;;;;;16592:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16592:321:0;;;;;;;;;;;;;;;;;:::i;24001:413::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;24001:413:0;;;;;;;;:::i;:::-;;14761:92;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23103:54;;;:::i;17322:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17322:218:0;;;;;;;;:::i;24939:499::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;24939:499:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;24939:499:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24939:499:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;24939:499:0;;-1:-1:-1;24939:499:0;-1:-1:-1;24939:499:0;:::i;23616:242::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;23616:242:0;;;;;;;;:::i;15081:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15081:119:0;-1:-1:-1;;;;;15081:119:0;;:::i;11107:148::-;;;:::i;26468:85::-;;;:::i;10465:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;10465:79:0;;;;;;;;;;;;;;24504:159;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24504:159:0;;:::i;23243:33::-;;;:::i;14036:87::-;;;:::i;18043:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18043:269:0;;;;;;;;:::i;15413:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15413:175:0;;;;;;;;:::i;23360:31::-;;;:::i;23164:32::-;;;:::i;24671:260::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;24671:260:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;24671:260:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;24671:260:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;-1:-1;24671:260:0;;-1:-1:-1;24671:260:0;-1:-1:-1;24671:260:0;:::i;23449:30::-;;;:::i;15651:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15651:151:0;;;;;;;;;;:::i;11410:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11410:244:0;-1:-1:-1;;;;;11410:244:0;;:::i;13834:83::-;13904:5;13897:12;;;;;;;;-1:-1:-1;;13897:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13871:13;;13897:12;;13904:5;;13897:12;;13904:5;13897:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13834:83;:::o;15949:169::-;16032:4;16049:39;16058:12;:10;:12::i;:::-;16072:7;16081:6;16049:8;:39::i;:::-;-1:-1:-1;16106:4:0;15949:169;;;;;:::o;14918:100::-;14998:12;;14918:100;:::o;16592:321::-;16698:4;16715:36;16725:6;16733:9;16744:6;16715:9;:36::i;:::-;16762:121;16771:6;16779:12;:10;:12::i;:::-;16793:89;16831:6;16793:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16793:19:0;;;;;;:11;:19;;;;;;16813:12;:10;:12::i;:::-;-1:-1:-1;;;;;16793:33:0;;;;;;;;;;;;-1:-1:-1;16793:33:0;;;:89;;:37;:89;:::i;:::-;16762:8;:121::i;:::-;-1:-1:-1;16901:4:0;16592:321;;;;;:::o;24001:413::-;10687:12;:10;:12::i;:::-;10677:6;;;;;-1:-1:-1;;;;;10677:6:0;;;:22;;;10669:67;;;;;-1:-1:-1;;;10669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10669:67:0;;;;;;;;;;;;;;;24084:12:::1;::::0;-1:-1:-1;;;24084:12:0;::::1;;;:20;;24100:4;24084:20;;24076:47;;;::::0;;-1:-1:-1;;;24076:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24076:47:0;;;;;;;;;;;;;::::1;;24142:13;::::0;-1:-1:-1;;;24142:13:0;::::1;;;:21;;24159:4;24142:21;;24134:109;;;;-1:-1:-1::0;;;24134:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24262:7;24273:24;24262:35;24254:44;;;::::0;::::1;;24315:11:::0;;24311:63:::1;;24343:19;24349:3;24354:7;24343:5;:19::i;:::-;-1:-1:-1::0;;24386:13:0::1;:20:::0;;-1:-1:-1;;;;24386:20:0::1;-1:-1:-1::0;;;24386:20:0::1;::::0;;24001:413::o;14761:92::-;14836:9;;;;14761:92;:::o;23103:54::-;23140:17;23103:54;:::o;17322:218::-;17410:4;17427:83;17436:12;:10;:12::i;:::-;17450:7;17459:50;17498:10;17459:11;:25;17471:12;:10;:12::i;:::-;-1:-1:-1;;;;;17459:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17459:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;24939:499::-;25034:4;25051:22;25076:14;25086:3;25076:9;:14::i;:::-;25051:39;;25101:22;25110:3;25115:7;25101:8;:22::i;:::-;;25134:23;25177:14;25160;25170:3;25160:9;:14::i;:::-;:31;;-1:-1:-1;25258:16:0;;25299:9;;;;25295:114;;25333:63;;-1:-1:-1;;;25333:63:0;;25361:10;25333:63;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25333:27:0;;;;;25361:10;25373:15;;25390:5;;;;25333:63;;;;25390:5;;;;25333:63;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;25333:63:0;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25333:63:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25333:63:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25333:63:0;25325:72;;;;;;-1:-1:-1;25426:4:0;;24939:499;-1:-1:-1;;;;;;;24939:499:0:o;23616:242::-;10687:12;:10;:12::i;:::-;10677:6;;;;;-1:-1:-1;;;;;10677:6:0;;;:22;;;10669:67;;;;;-1:-1:-1;;;10669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10669:67:0;;;;;;;;;;;;;;;23696:12:::1;::::0;-1:-1:-1;;;23696:12:0;::::1;;;:20;;23712:4;23696:20;;23688:47;;;::::0;;-1:-1:-1;;;23688:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;23688:47:0;;;;;;;;;;;;;::::1;;23760:11:::0;;23756:63:::1;;23788:19;23794:3;23799:7;23788:5;:19::i;:::-;-1:-1:-1::0;;23831:12:0::1;:19:::0;;-1:-1:-1;;;;23831:19:0::1;-1:-1:-1::0;;;23831:19:0::1;::::0;;23616:242::o;15081:119::-;-1:-1:-1;;;;;15174:18:0;15147:7;15174:18;;;;;;;;;;;;15081:119::o;11107:148::-;10687:12;:10;:12::i;:::-;10677:6;;;;;-1:-1:-1;;;;;10677:6:0;;;:22;;;10669:67;;;;;-1:-1:-1;;;10669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10669:67:0;;;;;;;;;;;;;;;11198:6:::1;::::0;11177:40:::1;::::0;11214:1:::1;::::0;11198:6:::1;::::0;::::1;-1:-1:-1::0;;;;;11198:6:0::1;::::0;11177:40:::1;::::0;11214:1;;11177:40:::1;11228:6;:19:::0;;-1:-1:-1;;;;;;11228:19:0::1;::::0;;11107:148::o;26468:85::-;26534:11;;26468:85;:::o;10465:79::-;10530:6;;;;;-1:-1:-1;;;;;10530:6:0;;10465:79::o;24504:159::-;10687:12;:10;:12::i;:::-;10677:6;;;;;-1:-1:-1;;;;;10677:6:0;;;:22;;;10669:67;;;;;-1:-1:-1;;;10669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10669:67:0;;;;;;;;;;;;;;;24602:3:::1;24586:12;:19;;24578:40;;;::::0;;-1:-1:-1;;;24578:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;24578:40:0;;;;;;;;;;;;;::::1;;24629:11;:26:::0;24504:159::o;23243:33::-;;;-1:-1:-1;;;23243:33:0;;;;;:::o;14036:87::-;14108:7;14101:14;;;;;;;;-1:-1:-1;;14101:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14075:13;;14101:14;;14108:7;;14101:14;;14108:7;14101:14;;;;;;;;;;;;;;;;;;;;;;;;18043:269;18136:4;18153:129;18162:12;:10;:12::i;:::-;18176:7;18185:96;18224:15;18185:96;;;;;;;;;;;;;;;;;:11;:25;18197:12;:10;:12::i;:::-;-1:-1:-1;;;;;18185:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18185:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;15413:175::-;15499:4;15516:42;15526:12;:10;:12::i;:::-;15540:9;15551:6;15516:9;:42::i;23360:31::-;;;;:::o;23164:32::-;;;-1:-1:-1;;;23164:32:0;;;;;:::o;24671:260::-;24770:4;24787:26;24795:8;24805:7;24787;:26::i;:::-;-1:-1:-1;24824:77:0;;-1:-1:-1;;;24824:77:0;;24859:10;24824:77;;;;;;;;;;;;24888:4;24824:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24824:34:0;;;;;24859:10;24871:7;;24888:4;24895:5;;;;24824:77;;;;24895:5;;;;24824:77;1:33:-1;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;24824:77:0;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24824:77:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;24919:4:0;;24671:260;-1:-1:-1;;;;;;;;24671:260:0:o;23449:30::-;;;;:::o;15651:151::-;-1:-1:-1;;;;;15767:18:0;;;15740:7;15767:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15651:151::o;11410:244::-;10687:12;:10;:12::i;:::-;10677:6;;;;;-1:-1:-1;;;;;10677:6:0;;;:22;;;10669:67;;;;;-1:-1:-1;;;10669:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;10669:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;11499:22:0;::::1;11491:73;;;;-1:-1:-1::0;;;11491:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11601:6;::::0;11580:38:::1;::::0;-1:-1:-1;;;;;11580:38:0;;::::1;::::0;11601:6:::1;::::0;::::1;;::::0;11580:38:::1;::::0;;;::::1;11629:6;:17:::0;;-1:-1:-1;;;;;11629:17:0;;::::1;;;-1:-1:-1::0;;;;;;11629:17:0;;::::1;::::0;;;::::1;::::0;;11410:244::o;8997:106::-;9085:10;8997:106;:::o;21190:346::-;-1:-1:-1;;;;;21292:19:0;;21284:68;;;;-1:-1:-1;;;21284:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21371:21:0;;21363:68;;;;-1:-1:-1;;;21363:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21444:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21496:32;;;;;;;;;;;;;;;;;21190:346;;;:::o;25510:910::-;-1:-1:-1;;;;;25617:20:0;;25609:70;;;;-1:-1:-1;;;25609:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25698:23:0;;25690:71;;;;-1:-1:-1;;;25690:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25774:25;25810:24;25871:33;25899:4;25871:23;25882:11;;25871:6;:10;;:23;;;;:::i;:::-;:27;:33;:27;:33;:::i;:::-;25851:53;-1:-1:-1;25938:29:0;:6;25851:53;25938:29;:10;:29;:::i;:::-;25919:48;-1:-1:-1;25988:20:0;;25984:366;;26049:81;26071:16;26049:81;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26049:17:0;;:9;:17;;;;;;;;;;;;:81;;:21;:81;:::i;:::-;-1:-1:-1;;;;;26029:17:0;;;:9;:17;;;;;;;;;;;:101;;;;26172:20;;;;;;;:42;;26197:16;26172:42;:24;:42;:::i;:::-;-1:-1:-1;;;;;26149:20:0;;:9;:20;;;;;;;;;;:65;26233:32;26239:6;26247:17;26233:5;:32::i;:::-;26298:11;;:34;;26314:17;26298:34;:15;:34;:::i;:::-;26284:11;:48;25984:366;26384:9;-1:-1:-1;;;;;26367:45:0;26376:6;-1:-1:-1;;;;;26367:45:0;;26395:16;26367:45;;;;;;;;;;;;;;;;;;25510:910;;;;;:::o;1849:192::-;1935:7;1971:12;1963:6;;;;1955:29;;;;-1:-1:-1;;;1955:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;1955:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2007:5:0;;;1849:192::o;19622:378::-;-1:-1:-1;;;;;19706:21:0;;19698:65;;;;;-1:-1:-1;;;19698:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19776:49;19805:1;19809:7;19818:6;19776:20;:49::i;:::-;19853:12;;:24;;19870:6;19853:24;:16;:24;:::i;:::-;19838:12;:39;-1:-1:-1;;;;;19909:18:0;;:9;:18;;;;;;;;;;;:30;;19932:6;19909:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;19888:18:0;;:9;:18;;;;;;;;;;;:51;;;;19955:37;;;;;;;19888:18;;:9;;19955:37;;;;;;;;;;19622:378;;:::o;946:181::-;1004:7;1036:5;;;1060:6;;;;1052:46;;;;;-1:-1:-1;;;1052:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1118:1;946:181;-1:-1:-1;;;946:181:0:o;2300:471::-;2358:7;2603:6;2599:47;;-1:-1:-1;2633:1:0;2626:8;;2599:47;2670:5;;;2674:1;2670;:5;:1;2694:5;;;;;:10;2686:56;;;;-1:-1:-1;;;2686:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3247:132;3305:7;3332:39;3336:1;3339;3332:39;;;;;;;;;;;;;;;;;:3;:39::i;1410:136::-;1468:7;1495:43;1499:1;1502;1495:43;;;;;;;;;;;;;;;;;:3;:43::i;20332:418::-;-1:-1:-1;;;;;20416:21:0;;20408:67;;;;-1:-1:-1;;;20408:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20488:49;20509:7;20526:1;20530:6;20488:20;:49::i;:::-;20571:68;20594:6;20571:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20571:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;20550:18:0;;:9;:18;;;;;;;;;;:89;20665:12;;:24;;20682:6;20665:24;:16;:24;:::i;:::-;20650:12;:39;20705:37;;;;;;;;20731:1;;-1:-1:-1;;;;;20705:37:0;;;;;;;;;;;;20332:418;;:::o;22561:92::-;;;;:::o;3875:278::-;3961:7;3996:12;3989:5;3981:28;;;;-1:-1:-1;;;3981:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;3981:28:0;;4020:9;4036:1;4032;:5;;;;;;;3875:278;-1:-1:-1;;;;;3875:278:0:o

Swarm Source

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