ETH Price: $3,265.85 (+1.34%)

Token

科太币 (科太币)
 

Overview

Max Total Supply

100,000,000,000 科太币

Holders

305

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
753.39 科太币

Value
$0.00
0x00ecb47aeba78ab3c3ddad7ffe379905d7823262
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:
KT

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity  ^0.8.17;
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

    /**
     * @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 a - b;
    }

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards 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).
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * 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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

/**
 * @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.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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

/**
 * @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 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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
     * overloaded;
     *
     * 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 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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 += 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 { }
}


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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

contract KT is ERC20, Ownable{
    using SafeMath for uint256;
    uint256 public constant maxSupply =  10**18*100000000000;
    address public burnAddress = 0xC33177978Cf0b86826E6C1EE5B9F979298205ad7;

    uint256 public constant tranburnRate =  100;
  
    constructor() ERC20(unicode"科太币", unicode"科太币")  {

        _mint(msg.sender, maxSupply);
        renounceOwnership();

    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {


        uint256 burnRate = tranburnRate;

        uint256  burnAmt = amount.mul(burnRate).div(10000);
        amount = amount.sub(burnAmt);
        super._transfer(sender, recipient, amount);
        if(burnAmt>0)
        {
            super._transfer(sender, burnAddress, burnAmt);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[],"name":"tranburnRate","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"}]

608060405273c33177978cf0b86826e6c1ee5b9f979298205ad7600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b506040518060400160405280600981526020017fe7a791e5a4aae5b88100000000000000000000000000000000000000000000008152506040518060400160405280600981526020017fe7a791e5a4aae5b88100000000000000000000000000000000000000000000008152508160039081620000e4919062000744565b508060049081620000f6919062000744565b50505060006200010b620001df60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001c9336c01431e0fae6d7217caa0000000620001e760201b60201c565b620001d96200034b60201b60201c565b620009b8565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000250906200088c565b60405180910390fd5b6200026d600083836200049b60201b60201c565b8060026000828254620002819190620008dd565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d89190620008dd565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033f919062000929565b60405180910390a35050565b6200035b620001df60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000381620004a060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003da576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d19062000996565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200054c57607f821691505b60208210810362000562576200056162000504565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005cc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200058d565b620005d886836200058d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006256200061f6200061984620005f0565b620005fa565b620005f0565b9050919050565b6000819050919050565b620006418362000604565b6200065962000650826200062c565b8484546200059a565b825550505050565b600090565b6200067062000661565b6200067d81848462000636565b505050565b5b81811015620006a5576200069960008262000666565b60018101905062000683565b5050565b601f821115620006f457620006be8162000568565b620006c9846200057d565b81016020851015620006d9578190505b620006f1620006e8856200057d565b83018262000682565b50505b505050565b600082821c905092915050565b60006200071960001984600802620006f9565b1980831691505092915050565b600062000734838362000706565b9150826002028217905092915050565b6200074f82620004ca565b67ffffffffffffffff8111156200076b576200076a620004d5565b5b62000777825462000533565b62000784828285620006a9565b600060209050601f831160018114620007bc5760008415620007a7578287015190505b620007b3858262000726565b86555062000823565b601f198416620007cc8662000568565b60005b82811015620007f657848901518255600182019150602085019450602081019050620007cf565b8683101562000816578489015162000812601f89168262000706565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000874601f836200082b565b915062000881826200083c565b602082019050919050565b60006020820190508181036000830152620008a78162000865565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008ea82620005f0565b9150620008f783620005f0565b9250828201905080821115620009125762000911620008ae565b5b92915050565b6200092381620005f0565b82525050565b600060208201905062000940600083018462000918565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200097e6020836200082b565b91506200098b8262000946565b602082019050919050565b60006020820190508181036000830152620009b1816200096f565b9050919050565b611aa280620009c86000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102ac578063a9059cbb146102dc578063d5abeb011461030c578063dd62ed3e1461032a578063f2fde38b1461035a5761010b565b8063715018a61461024857806371d56f79146102525780638da5cb5b1461027057806395d89b411461028e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa57806370d5ae051461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610376565b604051610125919061115b565b60405180910390f35b61014860048036038101906101439190611216565b610408565b6040516101559190611271565b60405180910390f35b610166610426565b604051610173919061129b565b60405180910390f35b610196600480360381019061019191906112b6565b610430565b6040516101a39190611271565b60405180910390f35b6101b4610531565b6040516101c19190611325565b60405180910390f35b6101e460048036038101906101df9190611216565b61053a565b6040516101f19190611271565b60405180910390f35b610214600480360381019061020f9190611340565b6105e6565b604051610221919061129b565b60405180910390f35b61023261062e565b60405161023f919061137c565b60405180910390f35b610250610654565b005b61025a610791565b604051610267919061129b565b60405180910390f35b610278610796565b604051610285919061137c565b60405180910390f35b6102966107c0565b6040516102a3919061115b565b60405180910390f35b6102c660048036038101906102c19190611216565b610852565b6040516102d39190611271565b60405180910390f35b6102f660048036038101906102f19190611216565b610946565b6040516103039190611271565b60405180910390f35b610314610964565b604051610321919061129b565b60405180910390f35b610344600480360381019061033f9190611397565b610975565b604051610351919061129b565b60405180910390f35b610374600480360381019061036f9190611340565b6109fc565b005b60606003805461038590611406565b80601f01602080910402602001604051908101604052809291908181526020018280546103b190611406565b80156103fe5780601f106103d3576101008083540402835291602001916103fe565b820191906000526020600020905b8154815290600101906020018083116103e157829003601f168201915b5050505050905090565b600061041c610415610ba7565b8484610baf565b6001905092915050565b6000600254905090565b600061043d848484610d78565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610488610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ff906114a9565b60405180910390fd5b61052585610514610ba7565b858461052091906114f8565b610baf565b60019150509392505050565b60006012905090565b60006105dc610547610ba7565b848460016000610555610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d7919061152c565b610baf565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61065c610ba7565b73ffffffffffffffffffffffffffffffffffffffff1661067a610796565b73ffffffffffffffffffffffffffffffffffffffff16146106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c7906115ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107cf90611406565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90611406565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b60008060016000610861610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061163e565b60405180910390fd5b61093b610929610ba7565b85858461093691906114f8565b610baf565b600191505092915050565b600061095a610953610ba7565b8484610d78565b6001905092915050565b6c01431e0fae6d7217caa000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a04610ba7565b73ffffffffffffffffffffffffffffffffffffffff16610a22610796565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906115ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906116d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611762565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906117f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6b919061129b565b60405180910390a3505050565b6000606490506000610da7612710610d998486610e0790919063ffffffff16565b610e1d90919063ffffffff16565b9050610dbc8184610e3390919063ffffffff16565b9250610dc9858585610e49565b6000811115610e0057610dff85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e49565b5b5050505050565b60008183610e159190611814565b905092915050565b60008183610e2b9190611885565b905092915050565b60008183610e4191906114f8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611928565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906119ba565b60405180910390fd5b610f328383836110c6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611a4c565b60405180910390fd5b8181610fc491906114f8565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611054919061152c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b8919061129b565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111055780820151818401526020810190506110ea565b60008484015250505050565b6000601f19601f8301169050919050565b600061112d826110cb565b61113781856110d6565b93506111478185602086016110e7565b61115081611111565b840191505092915050565b600060208201905081810360008301526111758184611122565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ad82611182565b9050919050565b6111bd816111a2565b81146111c857600080fd5b50565b6000813590506111da816111b4565b92915050565b6000819050919050565b6111f3816111e0565b81146111fe57600080fd5b50565b600081359050611210816111ea565b92915050565b6000806040838503121561122d5761122c61117d565b5b600061123b858286016111cb565b925050602061124c85828601611201565b9150509250929050565b60008115159050919050565b61126b81611256565b82525050565b60006020820190506112866000830184611262565b92915050565b611295816111e0565b82525050565b60006020820190506112b0600083018461128c565b92915050565b6000806000606084860312156112cf576112ce61117d565b5b60006112dd868287016111cb565b93505060206112ee868287016111cb565b92505060406112ff86828701611201565b9150509250925092565b600060ff82169050919050565b61131f81611309565b82525050565b600060208201905061133a6000830184611316565b92915050565b6000602082840312156113565761135561117d565b5b6000611364848285016111cb565b91505092915050565b611376816111a2565b82525050565b6000602082019050611391600083018461136d565b92915050565b600080604083850312156113ae576113ad61117d565b5b60006113bc858286016111cb565b92505060206113cd858286016111cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141e57607f821691505b602082108103611431576114306113d7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114936028836110d6565b915061149e82611437565b604082019050919050565b600060208201905081810360008301526114c281611486565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611503826111e0565b915061150e836111e0565b9250828203905081811115611526576115256114c9565b5b92915050565b6000611537826111e0565b9150611542836111e0565b925082820190508082111561155a576115596114c9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115966020836110d6565b91506115a182611560565b602082019050919050565b600060208201905081810360008301526115c581611589565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116286025836110d6565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116ba6026836110d6565b91506116c58261165e565b604082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061174c6024836110d6565b9150611757826116f0565b604082019050919050565b6000602082019050818103600083015261177b8161173f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117de6022836110d6565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b600061181f826111e0565b915061182a836111e0565b9250828202611838816111e0565b9150828204841483151761184f5761184e6114c9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611890826111e0565b915061189b836111e0565b9250826118ab576118aa611856565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119126025836110d6565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119a46023836110d6565b91506119af82611948565b604082019050919050565b600060208201905081810360008301526119d381611997565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a366026836110d6565b9150611a41826119da565b604082019050919050565b60006020820190508181036000830152611a6581611a29565b905091905056fea2646970667358221220a7b2252370197903cd768cc62a1beb7364b23cfc6ff7daaf892460f7cb0febe664736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102ac578063a9059cbb146102dc578063d5abeb011461030c578063dd62ed3e1461032a578063f2fde38b1461035a5761010b565b8063715018a61461024857806371d56f79146102525780638da5cb5b1461027057806395d89b411461028e5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca57806370a08231146101fa57806370d5ae051461022a5761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610376565b604051610125919061115b565b60405180910390f35b61014860048036038101906101439190611216565b610408565b6040516101559190611271565b60405180910390f35b610166610426565b604051610173919061129b565b60405180910390f35b610196600480360381019061019191906112b6565b610430565b6040516101a39190611271565b60405180910390f35b6101b4610531565b6040516101c19190611325565b60405180910390f35b6101e460048036038101906101df9190611216565b61053a565b6040516101f19190611271565b60405180910390f35b610214600480360381019061020f9190611340565b6105e6565b604051610221919061129b565b60405180910390f35b61023261062e565b60405161023f919061137c565b60405180910390f35b610250610654565b005b61025a610791565b604051610267919061129b565b60405180910390f35b610278610796565b604051610285919061137c565b60405180910390f35b6102966107c0565b6040516102a3919061115b565b60405180910390f35b6102c660048036038101906102c19190611216565b610852565b6040516102d39190611271565b60405180910390f35b6102f660048036038101906102f19190611216565b610946565b6040516103039190611271565b60405180910390f35b610314610964565b604051610321919061129b565b60405180910390f35b610344600480360381019061033f9190611397565b610975565b604051610351919061129b565b60405180910390f35b610374600480360381019061036f9190611340565b6109fc565b005b60606003805461038590611406565b80601f01602080910402602001604051908101604052809291908181526020018280546103b190611406565b80156103fe5780601f106103d3576101008083540402835291602001916103fe565b820191906000526020600020905b8154815290600101906020018083116103e157829003601f168201915b5050505050905090565b600061041c610415610ba7565b8484610baf565b6001905092915050565b6000600254905090565b600061043d848484610d78565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610488610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ff906114a9565b60405180910390fd5b61052585610514610ba7565b858461052091906114f8565b610baf565b60019150509392505050565b60006012905090565b60006105dc610547610ba7565b848460016000610555610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105d7919061152c565b610baf565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61065c610ba7565b73ffffffffffffffffffffffffffffffffffffffff1661067a610796565b73ffffffffffffffffffffffffffffffffffffffff16146106d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c7906115ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107cf90611406565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90611406565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b60008060016000610861610ba7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561091e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109159061163e565b60405180910390fd5b61093b610929610ba7565b85858461093691906114f8565b610baf565b600191505092915050565b600061095a610953610ba7565b8484610d78565b6001905092915050565b6c01431e0fae6d7217caa000000081565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a04610ba7565b73ffffffffffffffffffffffffffffffffffffffff16610a22610796565b73ffffffffffffffffffffffffffffffffffffffff1614610a78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6f906115ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ae7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ade906116d0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611762565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c84906117f4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d6b919061129b565b60405180910390a3505050565b6000606490506000610da7612710610d998486610e0790919063ffffffff16565b610e1d90919063ffffffff16565b9050610dbc8184610e3390919063ffffffff16565b9250610dc9858585610e49565b6000811115610e0057610dff85600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610e49565b5b5050505050565b60008183610e159190611814565b905092915050565b60008183610e2b9190611885565b905092915050565b60008183610e4191906114f8565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90611928565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1e906119ba565b60405180910390fd5b610f328383836110c6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faf90611a4c565b60405180910390fd5b8181610fc491906114f8565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611054919061152c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b8919061129b565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111055780820151818401526020810190506110ea565b60008484015250505050565b6000601f19601f8301169050919050565b600061112d826110cb565b61113781856110d6565b93506111478185602086016110e7565b61115081611111565b840191505092915050565b600060208201905081810360008301526111758184611122565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006111ad82611182565b9050919050565b6111bd816111a2565b81146111c857600080fd5b50565b6000813590506111da816111b4565b92915050565b6000819050919050565b6111f3816111e0565b81146111fe57600080fd5b50565b600081359050611210816111ea565b92915050565b6000806040838503121561122d5761122c61117d565b5b600061123b858286016111cb565b925050602061124c85828601611201565b9150509250929050565b60008115159050919050565b61126b81611256565b82525050565b60006020820190506112866000830184611262565b92915050565b611295816111e0565b82525050565b60006020820190506112b0600083018461128c565b92915050565b6000806000606084860312156112cf576112ce61117d565b5b60006112dd868287016111cb565b93505060206112ee868287016111cb565b92505060406112ff86828701611201565b9150509250925092565b600060ff82169050919050565b61131f81611309565b82525050565b600060208201905061133a6000830184611316565b92915050565b6000602082840312156113565761135561117d565b5b6000611364848285016111cb565b91505092915050565b611376816111a2565b82525050565b6000602082019050611391600083018461136d565b92915050565b600080604083850312156113ae576113ad61117d565b5b60006113bc858286016111cb565b92505060206113cd858286016111cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061141e57607f821691505b602082108103611431576114306113d7565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006114936028836110d6565b915061149e82611437565b604082019050919050565b600060208201905081810360008301526114c281611486565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611503826111e0565b915061150e836111e0565b9250828203905081811115611526576115256114c9565b5b92915050565b6000611537826111e0565b9150611542836111e0565b925082820190508082111561155a576115596114c9565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006115966020836110d6565b91506115a182611560565b602082019050919050565b600060208201905081810360008301526115c581611589565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006116286025836110d6565b9150611633826115cc565b604082019050919050565b600060208201905081810360008301526116578161161b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006116ba6026836110d6565b91506116c58261165e565b604082019050919050565b600060208201905081810360008301526116e9816116ad565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061174c6024836110d6565b9150611757826116f0565b604082019050919050565b6000602082019050818103600083015261177b8161173f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006117de6022836110d6565b91506117e982611782565b604082019050919050565b6000602082019050818103600083015261180d816117d1565b9050919050565b600061181f826111e0565b915061182a836111e0565b9250828202611838816111e0565b9150828204841483151761184f5761184e6114c9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611890826111e0565b915061189b836111e0565b9250826118ab576118aa611856565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119126025836110d6565b915061191d826118b6565b604082019050919050565b6000602082019050818103600083015261194181611905565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006119a46023836110d6565b91506119af82611948565b604082019050919050565b600060208201905081810360008301526119d381611997565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611a366026836110d6565b9150611a41826119da565b604082019050919050565b60006020820190508181036000830152611a6581611a29565b905091905056fea2646970667358221220a7b2252370197903cd768cc62a1beb7364b23cfc6ff7daaf892460f7cb0febe664736f6c63430008110033

Deployed Bytecode Sourcemap

23285:829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12326:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14466:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13419:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15117:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13270:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15948:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13590:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23417:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22731:148;;;:::i;:::-;;23497:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22080:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12536:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16666:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13930:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23354:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14168:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23034:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12326:91;12371:13;12404:5;12397:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12326:91;:::o;14466:169::-;14549:4;14566:39;14575:12;:10;:12::i;:::-;14589:7;14598:6;14566:8;:39::i;:::-;14623:4;14616:11;;14466:169;;;;:::o;13419:108::-;13480:7;13507:12;;13500:19;;13419:108;:::o;15117:422::-;15223:4;15240:36;15250:6;15258:9;15269:6;15240:9;:36::i;:::-;15289:24;15316:11;:19;15328:6;15316:19;;;;;;;;;;;;;;;:33;15336:12;:10;:12::i;:::-;15316:33;;;;;;;;;;;;;;;;15289:60;;15388:6;15368:16;:26;;15360:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;15450:57;15459:6;15467:12;:10;:12::i;:::-;15500:6;15481:16;:25;;;;:::i;:::-;15450:8;:57::i;:::-;15527:4;15520:11;;;15117:422;;;;;:::o;13270:84::-;13319:5;13344:2;13337:9;;13270:84;:::o;15948:215::-;16036:4;16053:80;16062:12;:10;:12::i;:::-;16076:7;16122:10;16085:11;:25;16097:12;:10;:12::i;:::-;16085:25;;;;;;;;;;;;;;;:34;16111:7;16085:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;16053:8;:80::i;:::-;16151:4;16144:11;;15948:215;;;;:::o;13590:127::-;13664:7;13691:9;:18;13701:7;13691:18;;;;;;;;;;;;;;;;13684:25;;13590:127;;;:::o;23417:71::-;;;;;;;;;;;;;:::o;22731:148::-;22311:12;:10;:12::i;:::-;22300:23;;:7;:5;:7::i;:::-;:23;;;22292:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22838:1:::1;22801:40;;22822:6;;;;;;;;;;;22801:40;;;;;;;;;;;;22869:1;22852:6;;:19;;;;;;;;;;;;;;;;;;22731:148::o:0;23497:43::-;23537:3;23497:43;:::o;22080:87::-;22126:7;22153:6;;;;;;;;;;;22146:13;;22080:87;:::o;12536:95::-;12583:13;12616:7;12609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12536:95;:::o;16666:377::-;16759:4;16776:24;16803:11;:25;16815:12;:10;:12::i;:::-;16803:25;;;;;;;;;;;;;;;:34;16829:7;16803:34;;;;;;;;;;;;;;;;16776:61;;16876:15;16856:16;:35;;16848:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16944:67;16953:12;:10;:12::i;:::-;16967:7;16995:15;16976:16;:34;;;;:::i;:::-;16944:8;:67::i;:::-;17031:4;17024:11;;;16666:377;;;;:::o;13930:175::-;14016:4;14033:42;14043:12;:10;:12::i;:::-;14057:9;14068:6;14033:9;:42::i;:::-;14093:4;14086:11;;13930:175;;;;:::o;23354:56::-;23391:19;23354:56;:::o;14168:151::-;14257:7;14284:11;:18;14296:5;14284:18;;;;;;;;;;;;;;;:27;14303:7;14284:27;;;;;;;;;;;;;;;;14277:34;;14168:151;;;;:::o;23034:244::-;22311:12;:10;:12::i;:::-;22300:23;;:7;:5;:7::i;:::-;:23;;;22292:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23143:1:::1;23123:22;;:8;:22;;::::0;23115:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23233:8;23204:38;;23225:6;;;;;;;;;;;23204:38;;;;;;;;;;;;23262:8;23253:6;;:17;;;;;;;;;;;;;;;;;;23034:244:::0;:::o;10022:98::-;10075:7;10102:10;10095:17;;10022:98;:::o;20022:346::-;20141:1;20124:19;;:5;:19;;;20116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20222:1;20203:21;;:7;:21;;;20195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20306:6;20276:11;:18;20288:5;20276:18;;;;;;;;;;;;;;;:27;20295:7;20276:27;;;;;;;;;;;;;;;:36;;;;20344:7;20328:32;;20337:5;20328:32;;;20353:6;20328:32;;;;;;:::i;:::-;;;;;;;;20022:346;;;:::o;23701:410::-;23812:16;23537:3;23812:31;;23856:16;23875:31;23900:5;23875:20;23886:8;23875:6;:10;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;23856:50;;23926:19;23937:7;23926:6;:10;;:19;;;;:::i;:::-;23917:28;;23956:42;23972:6;23980:9;23991:6;23956:15;:42::i;:::-;24020:1;24012:7;:9;24009:95;;;24047:45;24063:6;24071:11;;;;;;;;;;;24084:7;24047:15;:45::i;:::-;24009:95;23797:314;;23701:410;;;:::o;3216:98::-;3274:7;3305:1;3301;:5;;;;:::i;:::-;3294:12;;3216:98;;;;:::o;3615:::-;3673:7;3704:1;3700;:5;;;;:::i;:::-;3693:12;;3615:98;;;;:::o;2859:::-;2917:7;2948:1;2944;:5;;;;:::i;:::-;2937:12;;2859:98;;;;:::o;17533:604::-;17657:1;17639:20;;:6;:20;;;17631:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17741:1;17720:23;;:9;:23;;;17712:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17796:47;17817:6;17825:9;17836:6;17796:20;:47::i;:::-;17856:21;17880:9;:17;17890:6;17880:17;;;;;;;;;;;;;;;;17856:41;;17933:6;17916:13;:23;;17908:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;18029:6;18013:13;:22;;;;:::i;:::-;17993:9;:17;18003:6;17993:17;;;;;;;;;;;;;;;:42;;;;18070:6;18046:9;:20;18056:9;18046:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;18111:9;18094:35;;18103:6;18094:35;;;18122:6;18094:35;;;;;;:::i;:::-;;;;;;;;17620:517;17533:604;;;:::o;20971:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:227::-;6672:34;6668:1;6660:6;6656:14;6649:58;6741:10;6736:2;6728:6;6724:15;6717:35;6532:227;:::o;6765:366::-;6907:3;6928:67;6992:2;6987:3;6928:67;:::i;:::-;6921:74;;7004:93;7093:3;7004:93;:::i;:::-;7122:2;7117:3;7113:12;7106:19;;6765:366;;;:::o;7137:419::-;7303:4;7341:2;7330:9;7326:18;7318:26;;7390:9;7384:4;7380:20;7376:1;7365:9;7361:17;7354:47;7418:131;7544:4;7418:131;:::i;:::-;7410:139;;7137:419;;;:::o;7562:180::-;7610:77;7607:1;7600:88;7707:4;7704:1;7697:15;7731:4;7728:1;7721:15;7748:194;7788:4;7808:20;7826:1;7808:20;:::i;:::-;7803:25;;7842:20;7860:1;7842:20;:::i;:::-;7837:25;;7886:1;7883;7879:9;7871:17;;7910:1;7904:4;7901:11;7898:37;;;7915:18;;:::i;:::-;7898:37;7748:194;;;;:::o;7948:191::-;7988:3;8007:20;8025:1;8007:20;:::i;:::-;8002:25;;8041:20;8059:1;8041:20;:::i;:::-;8036:25;;8084:1;8081;8077:9;8070:16;;8105:3;8102:1;8099:10;8096:36;;;8112:18;;:::i;:::-;8096:36;7948:191;;;;:::o;8145:182::-;8285:34;8281:1;8273:6;8269:14;8262:58;8145:182;:::o;8333:366::-;8475:3;8496:67;8560:2;8555:3;8496:67;:::i;:::-;8489:74;;8572:93;8661:3;8572:93;:::i;:::-;8690:2;8685:3;8681:12;8674:19;;8333:366;;;:::o;8705:419::-;8871:4;8909:2;8898:9;8894:18;8886:26;;8958:9;8952:4;8948:20;8944:1;8933:9;8929:17;8922:47;8986:131;9112:4;8986:131;:::i;:::-;8978:139;;8705:419;;;:::o;9130:224::-;9270:34;9266:1;9258:6;9254:14;9247:58;9339:7;9334:2;9326:6;9322:15;9315:32;9130:224;:::o;9360:366::-;9502:3;9523:67;9587:2;9582:3;9523:67;:::i;:::-;9516:74;;9599:93;9688:3;9599:93;:::i;:::-;9717:2;9712:3;9708:12;9701:19;;9360:366;;;:::o;9732:419::-;9898:4;9936:2;9925:9;9921:18;9913:26;;9985:9;9979:4;9975:20;9971:1;9960:9;9956:17;9949:47;10013:131;10139:4;10013:131;:::i;:::-;10005:139;;9732:419;;;:::o;10157:225::-;10297:34;10293:1;10285:6;10281:14;10274:58;10366:8;10361:2;10353:6;10349:15;10342:33;10157:225;:::o;10388:366::-;10530:3;10551:67;10615:2;10610:3;10551:67;:::i;:::-;10544:74;;10627:93;10716:3;10627:93;:::i;:::-;10745:2;10740:3;10736:12;10729:19;;10388:366;;;:::o;10760:419::-;10926:4;10964:2;10953:9;10949:18;10941:26;;11013:9;11007:4;11003:20;10999:1;10988:9;10984:17;10977:47;11041:131;11167:4;11041:131;:::i;:::-;11033:139;;10760:419;;;:::o;11185:223::-;11325:34;11321:1;11313:6;11309:14;11302:58;11394:6;11389:2;11381:6;11377:15;11370:31;11185:223;:::o;11414:366::-;11556:3;11577:67;11641:2;11636:3;11577:67;:::i;:::-;11570:74;;11653:93;11742:3;11653:93;:::i;:::-;11771:2;11766:3;11762:12;11755:19;;11414:366;;;:::o;11786:419::-;11952:4;11990:2;11979:9;11975:18;11967:26;;12039:9;12033:4;12029:20;12025:1;12014:9;12010:17;12003:47;12067:131;12193:4;12067:131;:::i;:::-;12059:139;;11786:419;;;:::o;12211:221::-;12351:34;12347:1;12339:6;12335:14;12328:58;12420:4;12415:2;12407:6;12403:15;12396:29;12211:221;:::o;12438:366::-;12580:3;12601:67;12665:2;12660:3;12601:67;:::i;:::-;12594:74;;12677:93;12766:3;12677:93;:::i;:::-;12795:2;12790:3;12786:12;12779:19;;12438:366;;;:::o;12810:419::-;12976:4;13014:2;13003:9;12999:18;12991:26;;13063:9;13057:4;13053:20;13049:1;13038:9;13034:17;13027:47;13091:131;13217:4;13091:131;:::i;:::-;13083:139;;12810:419;;;:::o;13235:410::-;13275:7;13298:20;13316:1;13298:20;:::i;:::-;13293:25;;13332:20;13350:1;13332:20;:::i;:::-;13327:25;;13387:1;13384;13380:9;13409:30;13427:11;13409:30;:::i;:::-;13398:41;;13588:1;13579:7;13575:15;13572:1;13569:22;13549:1;13542:9;13522:83;13499:139;;13618:18;;:::i;:::-;13499:139;13283:362;13235:410;;;;:::o;13651:180::-;13699:77;13696:1;13689:88;13796:4;13793:1;13786:15;13820:4;13817:1;13810:15;13837:185;13877:1;13894:20;13912:1;13894:20;:::i;:::-;13889:25;;13928:20;13946:1;13928:20;:::i;:::-;13923:25;;13967:1;13957:35;;13972:18;;:::i;:::-;13957:35;14014:1;14011;14007:9;14002:14;;13837:185;;;;:::o;14028:224::-;14168:34;14164:1;14156:6;14152:14;14145:58;14237:7;14232:2;14224:6;14220:15;14213:32;14028:224;:::o;14258:366::-;14400:3;14421:67;14485:2;14480:3;14421:67;:::i;:::-;14414:74;;14497:93;14586:3;14497:93;:::i;:::-;14615:2;14610:3;14606:12;14599:19;;14258:366;;;:::o;14630:419::-;14796:4;14834:2;14823:9;14819:18;14811:26;;14883:9;14877:4;14873:20;14869:1;14858:9;14854:17;14847:47;14911:131;15037:4;14911:131;:::i;:::-;14903:139;;14630:419;;;:::o;15055:222::-;15195:34;15191:1;15183:6;15179:14;15172:58;15264:5;15259:2;15251:6;15247:15;15240:30;15055:222;:::o;15283:366::-;15425:3;15446:67;15510:2;15505:3;15446:67;:::i;:::-;15439:74;;15522:93;15611:3;15522:93;:::i;:::-;15640:2;15635:3;15631:12;15624:19;;15283:366;;;:::o;15655:419::-;15821:4;15859:2;15848:9;15844:18;15836:26;;15908:9;15902:4;15898:20;15894:1;15883:9;15879:17;15872:47;15936:131;16062:4;15936:131;:::i;:::-;15928:139;;15655:419;;;:::o;16080:225::-;16220:34;16216:1;16208:6;16204:14;16197:58;16289:8;16284:2;16276:6;16272:15;16265:33;16080:225;:::o;16311:366::-;16453:3;16474:67;16538:2;16533:3;16474:67;:::i;:::-;16467:74;;16550:93;16639:3;16550:93;:::i;:::-;16668:2;16663:3;16659:12;16652:19;;16311:366;;;:::o;16683:419::-;16849:4;16887:2;16876:9;16872:18;16864:26;;16936:9;16930:4;16926:20;16922:1;16911:9;16907:17;16900:47;16964:131;17090:4;16964:131;:::i;:::-;16956:139;;16683:419;;;:::o

Swarm Source

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