ETH Price: $2,544.70 (+4.41%)

Token

XRoad (XRI)
 

Overview

Max Total Supply

10,000,000,000 XRI

Holders

207

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
20 XRI

Value
$0.00
0xCf3f95D0Fb98e2B5bAe9Bd031e8a3e01695c9C07
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:
XRIToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 7 of 7: XRI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./SafeMath.sol";
import "./Ownable.sol";

contract XRIToken is ERC20("XRoad", "XRI"), Ownable {
    using SafeMath for uint256;

    event Mint(uint256 amount);
    event MintFinished();
    event Burn(uint256 amount);

    uint8 public constant DECIMALS=8;
    uint256 public constant INITIAL_SUPPLY=50000000000*(10**uint256(DECIMALS));
    bool public mintingFinished=false;

    constructor () {
        _mint(msg.sender, INITIAL_SUPPLY);
    }

    function mint(uint256 amount) onlyOwner canMint public{
        uint256 amount2=amount*(10**uint256(DECIMALS));
        _mint(msg.sender,amount2);

        emit Mint(amount);
    }

    function burn(uint256 amount) onlyOwner public {
        uint256 amount2=amount*(10**uint256(DECIMALS));
        _burn(msg.sender,amount2);

        emit Burn(amount);
    }

    modifier canMint() {
        require(!mintingFinished);
        _;
    }

    function finishingMinting() onlyOwner canMint public returns (bool) {
        mintingFinished = true;
        emit MintFinished();
        return true;
    }
}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 2 of 7: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.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, IERC20Metadata {
    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 default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    /**
     * @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");
        unchecked {
            _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");
        unchecked {
            _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");
        unchecked {
            _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:
     *
     * - `account` 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");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

File 3 of 7: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * 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 4 of 7: IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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

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

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.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.
 */
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;
    }
}

File 6 of 7: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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. 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;
        }
    }
}

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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","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":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"finishingMinting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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"}]

60806040526000600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600581526020017f58526f61640000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f58524900000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000b19291906200032c565b508060049080519060200190620000ca9291906200032c565b5050506000620000df620001ba60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001b433600860ff16600a62000196919062000537565b640ba43b7400620001a8919062000674565b620001c260201b60201c565b62000780565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000235576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022c906200042f565b60405180910390fd5b62000249600083836200032760201b60201c565b80600260008282546200025d91906200047f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002b491906200047f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031b919062000451565b60405180910390a35050565b505050565b8280546200033a90620006df565b90600052602060002090601f0160209004810192826200035e5760008555620003aa565b82601f106200037957805160ff1916838001178555620003aa565b82800160010185558215620003aa579182015b82811115620003a95782518255916020019190600101906200038c565b5b509050620003b99190620003bd565b5090565b5b80821115620003d8576000816000905550600101620003be565b5090565b6000620003eb601f836200046e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200042981620006d5565b82525050565b600060208201905081810360008301526200044a81620003dc565b9050919050565b60006020820190506200046860008301846200041e565b92915050565b600082825260208201905092915050565b60006200048c82620006d5565b91506200049983620006d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004d157620004d062000715565b5b828201905092915050565b6000808291508390505b60018511156200052e5780860481111562000506576200050562000715565b5b6001851615620005165780820291505b8081029050620005268562000773565b9450620004e6565b94509492505050565b60006200054482620006d5565b91506200055183620006d5565b9250620005807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000588565b905092915050565b6000826200059a57600190506200066d565b81620005aa57600090506200066d565b8160018114620005c35760028114620005ce5762000604565b60019150506200066d565b60ff841115620005e357620005e262000715565b5b8360020a915084821115620005fd57620005fc62000715565b5b506200066d565b5060208310610133831016604e8410600b84101617156200063e5782820a90508381111562000638576200063762000715565b5b6200066d565b6200064d8484846001620004dc565b9250905081840481111562000667576200066662000715565b5b81810290505b9392505050565b60006200068182620006d5565b91506200068e83620006d5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006ca57620006c962000715565b5b828202905092915050565b6000819050919050565b60006002820490506001821680620006f857607f821691505b602082108114156200070f576200070e62000744565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b61228980620007906000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610323578063a9059cbb14610353578063dc4d605714610383578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a0712d68146103075761012c565b80632e0f2625116100f45780632e0f2625146101eb5780632ff2e9dc14610209578063313ce56714610227578063395093511461024557806342966c68146102755761012c565b806305d2035b1461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611c8b565b60405180910390f35b610157610400565b6040516101649190611ca6565b60405180910390f35b6101876004803603810190610182919061171a565b610492565b6040516101949190611c8b565b60405180910390f35b6101a56104b0565b6040516101b29190611e48565b60405180910390f35b6101d560048036038101906101d091906116cb565b6104ba565b6040516101e29190611c8b565b60405180910390f35b6101f36105b2565b6040516102009190611e63565b60405180910390f35b6102116105b7565b60405161021e9190611e48565b60405180910390f35b61022f6105db565b60405161023c9190611e63565b60405180910390f35b61025f600480360381019061025a919061171a565b6105e4565b60405161026c9190611c8b565b60405180910390f35b61028f600480360381019061028a9190611756565b610690565b005b6102ab60048036038101906102a69190611666565b610771565b6040516102b89190611e48565b60405180910390f35b6102c96107b9565b005b6102d36108f6565b6040516102e09190611c70565b60405180910390f35b6102f1610920565b6040516102fe9190611ca6565b60405180910390f35b610321600480360381019061031c9190611756565b6109b2565b005b61033d6004803603810190610338919061171a565b610aad565b60405161034a9190611c8b565b60405180910390f35b61036d6004803603810190610368919061171a565b610b98565b60405161037a9190611c8b565b60405180910390f35b61038b610bb6565b6040516103989190611c8b565b60405180910390f35b6103bb60048036038101906103b6919061168f565b610c9c565b6040516103c89190611e48565b60405180910390f35b6103eb60048036038101906103e69190611666565b610d23565b005b600560149054906101000a900460ff1681565b60606003805461040f90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90612177565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b60006104a661049f610ecf565b8484610ed7565b6001905092915050565b6000600254905090565b60006104c78484846110a2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610512610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058990611d68565b60405180910390fd5b6105a68561059e610ecf565b858403610ed7565b60019150509392505050565b600881565b600860ff16600a6105c89190611f43565b640ba43b74006105d89190612061565b81565b60006008905090565b60006106866105f1610ecf565b8484600160006105ff610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106819190611e9a565b610ed7565b6001905092915050565b610698610ecf565b73ffffffffffffffffffffffffffffffffffffffff166106b66108f6565b73ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611d88565b60405180910390fd5b6000600860ff16600a61071f9190611f43565b8261072a9190612061565b90506107363382611318565b7fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb826040516107659190611e48565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c1610ecf565b73ffffffffffffffffffffffffffffffffffffffff166107df6108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092f90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461095b90612177565b80156109a85780601f1061097d576101008083540402835291602001916109a8565b820191906000526020600020905b81548152906001019060200180831161098b57829003601f168201915b5050505050905090565b6109ba610ecf565b73ffffffffffffffffffffffffffffffffffffffff166109d86108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611d88565b60405180910390fd5b600560149054906101000a900460ff1615610a4857600080fd5b6000600860ff16600a610a5b9190611f43565b82610a669190612061565b9050610a7233826114e3565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466582604051610aa19190611e48565b60405180910390a15050565b60008060016000610abc610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611e08565b60405180910390fd5b610b8d610b84610ecf565b85858403610ed7565b600191505092915050565b6000610bac610ba5610ecf565b84846110a2565b6001905092915050565b6000610bc0610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610bde6108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611d88565b60405180910390fd5b600560149054906101000a900460ff1615610c4e57600080fd5b6001600560146101000a81548160ff0219169083151502179055507fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a16001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2b610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610d496108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611d08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611de8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611d28565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110959190611e48565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611dc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990611cc8565b60405180910390fd5b61118d838383611637565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90611d48565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a69190611e9a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161130a9190611e48565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90611da8565b60405180910390fd5b61139482600083611637565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190611ce8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461147191906120bb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d69190611e48565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90611e28565b60405180910390fd5b61155f60008383611637565b80600260008282546115719190611e9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c69190611e9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161162b9190611e48565b60405180910390a35050565b505050565b60008135905061164b81612225565b92915050565b6000813590506116608161223c565b92915050565b60006020828403121561167857600080fd5b60006116868482850161163c565b91505092915050565b600080604083850312156116a257600080fd5b60006116b08582860161163c565b92505060206116c18582860161163c565b9150509250929050565b6000806000606084860312156116e057600080fd5b60006116ee8682870161163c565b93505060206116ff8682870161163c565b925050604061171086828701611651565b9150509250925092565b6000806040838503121561172d57600080fd5b600061173b8582860161163c565b925050602061174c85828601611651565b9150509250929050565b60006020828403121561176857600080fd5b600061177684828501611651565b91505092915050565b611788816120ef565b82525050565b61179781612101565b82525050565b60006117a882611e7e565b6117b28185611e89565b93506117c2818560208601612144565b6117cb81612207565b840191505092915050565b60006117e3602383611e89565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611849602283611e89565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118af602683611e89565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611915602283611e89565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061197b602683611e89565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119e1602883611e89565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a47602083611e89565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a87602183611e89565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aed602583611e89565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b53602483611e89565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bb9602583611e89565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c1f601f83611e89565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611c5b8161212d565b82525050565b611c6a81612137565b82525050565b6000602082019050611c85600083018461177f565b92915050565b6000602082019050611ca0600083018461178e565b92915050565b60006020820190508181036000830152611cc0818461179d565b905092915050565b60006020820190508181036000830152611ce1816117d6565b9050919050565b60006020820190508181036000830152611d018161183c565b9050919050565b60006020820190508181036000830152611d21816118a2565b9050919050565b60006020820190508181036000830152611d4181611908565b9050919050565b60006020820190508181036000830152611d618161196e565b9050919050565b60006020820190508181036000830152611d81816119d4565b9050919050565b60006020820190508181036000830152611da181611a3a565b9050919050565b60006020820190508181036000830152611dc181611a7a565b9050919050565b60006020820190508181036000830152611de181611ae0565b9050919050565b60006020820190508181036000830152611e0181611b46565b9050919050565b60006020820190508181036000830152611e2181611bac565b9050919050565b60006020820190508181036000830152611e4181611c12565b9050919050565b6000602082019050611e5d6000830184611c52565b92915050565b6000602082019050611e786000830184611c61565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ea58261212d565b9150611eb08361212d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ee557611ee46121a9565b5b828201905092915050565b6000808291508390505b6001851115611f3a57808604811115611f1657611f156121a9565b5b6001851615611f255780820291505b8081029050611f3385612218565b9450611efa565b94509492505050565b6000611f4e8261212d565b9150611f598361212d565b9250611f867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f8e565b905092915050565b600082611f9e576001905061205a565b81611fac576000905061205a565b8160018114611fc25760028114611fcc57611ffb565b600191505061205a565b60ff841115611fde57611fdd6121a9565b5b8360020a915084821115611ff557611ff46121a9565b5b5061205a565b5060208310610133831016604e8410600b84101617156120305782820a90508381111561202b5761202a6121a9565b5b61205a565b61203d8484846001611ef0565b92509050818404811115612054576120536121a9565b5b81810290505b9392505050565b600061206c8261212d565b91506120778361212d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120b0576120af6121a9565b5b828202905092915050565b60006120c68261212d565b91506120d18361212d565b9250828210156120e4576120e36121a9565b5b828203905092915050565b60006120fa8261210d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612162578082015181840152602081019050612147565b83811115612171576000848401525b50505050565b6000600282049050600182168061218f57607f821691505b602082108114156121a3576121a26121d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b61222e816120ef565b811461223957600080fd5b50565b6122458161212d565b811461225057600080fd5b5056fea2646970667358221220ea96fb4e190dfae0e289205108e49d2312fc534635569912efc3edf4b8e2903364736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a457c2d711610071578063a457c2d714610323578063a9059cbb14610353578063dc4d605714610383578063dd62ed3e146103a1578063f2fde38b146103d15761012c565b806370a0823114610291578063715018a6146102c15780638da5cb5b146102cb57806395d89b41146102e9578063a0712d68146103075761012c565b80632e0f2625116100f45780632e0f2625146101eb5780632ff2e9dc14610209578063313ce56714610227578063395093511461024557806342966c68146102755761012c565b806305d2035b1461013157806306fdde031461014f578063095ea7b31461016d57806318160ddd1461019d57806323b872dd146101bb575b600080fd5b6101396103ed565b6040516101469190611c8b565b60405180910390f35b610157610400565b6040516101649190611ca6565b60405180910390f35b6101876004803603810190610182919061171a565b610492565b6040516101949190611c8b565b60405180910390f35b6101a56104b0565b6040516101b29190611e48565b60405180910390f35b6101d560048036038101906101d091906116cb565b6104ba565b6040516101e29190611c8b565b60405180910390f35b6101f36105b2565b6040516102009190611e63565b60405180910390f35b6102116105b7565b60405161021e9190611e48565b60405180910390f35b61022f6105db565b60405161023c9190611e63565b60405180910390f35b61025f600480360381019061025a919061171a565b6105e4565b60405161026c9190611c8b565b60405180910390f35b61028f600480360381019061028a9190611756565b610690565b005b6102ab60048036038101906102a69190611666565b610771565b6040516102b89190611e48565b60405180910390f35b6102c96107b9565b005b6102d36108f6565b6040516102e09190611c70565b60405180910390f35b6102f1610920565b6040516102fe9190611ca6565b60405180910390f35b610321600480360381019061031c9190611756565b6109b2565b005b61033d6004803603810190610338919061171a565b610aad565b60405161034a9190611c8b565b60405180910390f35b61036d6004803603810190610368919061171a565b610b98565b60405161037a9190611c8b565b60405180910390f35b61038b610bb6565b6040516103989190611c8b565b60405180910390f35b6103bb60048036038101906103b6919061168f565b610c9c565b6040516103c89190611e48565b60405180910390f35b6103eb60048036038101906103e69190611666565b610d23565b005b600560149054906101000a900460ff1681565b60606003805461040f90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461043b90612177565b80156104885780601f1061045d57610100808354040283529160200191610488565b820191906000526020600020905b81548152906001019060200180831161046b57829003601f168201915b5050505050905090565b60006104a661049f610ecf565b8484610ed7565b6001905092915050565b6000600254905090565b60006104c78484846110a2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610512610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058990611d68565b60405180910390fd5b6105a68561059e610ecf565b858403610ed7565b60019150509392505050565b600881565b600860ff16600a6105c89190611f43565b640ba43b74006105d89190612061565b81565b60006008905090565b60006106866105f1610ecf565b8484600160006105ff610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106819190611e9a565b610ed7565b6001905092915050565b610698610ecf565b73ffffffffffffffffffffffffffffffffffffffff166106b66108f6565b73ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611d88565b60405180910390fd5b6000600860ff16600a61071f9190611f43565b8261072a9190612061565b90506107363382611318565b7fb90306ad06b2a6ff86ddc9327db583062895ef6540e62dc50add009db5b356eb826040516107659190611e48565b60405180910390a15050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107c1610ecf565b73ffffffffffffffffffffffffffffffffffffffff166107df6108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461092f90612177565b80601f016020809104026020016040519081016040528092919081815260200182805461095b90612177565b80156109a85780601f1061097d576101008083540402835291602001916109a8565b820191906000526020600020905b81548152906001019060200180831161098b57829003601f168201915b5050505050905090565b6109ba610ecf565b73ffffffffffffffffffffffffffffffffffffffff166109d86108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590611d88565b60405180910390fd5b600560149054906101000a900460ff1615610a4857600080fd5b6000600860ff16600a610a5b9190611f43565b82610a669190612061565b9050610a7233826114e3565b7f07883703ed0e86588a40d76551c92f8a4b329e3bf19765e0e6749473c1a8466582604051610aa19190611e48565b60405180910390a15050565b60008060016000610abc610ecf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7090611e08565b60405180910390fd5b610b8d610b84610ecf565b85858403610ed7565b600191505092915050565b6000610bac610ba5610ecf565b84846110a2565b6001905092915050565b6000610bc0610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610bde6108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2b90611d88565b60405180910390fd5b600560149054906101000a900460ff1615610c4e57600080fd5b6001600560146101000a81548160ff0219169083151502179055507fae5184fba832cb2b1f702aca6117b8d265eaf03ad33eb133f19dde0f5920fa0860405160405180910390a16001905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d2b610ecf565b73ffffffffffffffffffffffffffffffffffffffff16610d496108f6565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611d88565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0690611d08565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90611de8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90611d28565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110959190611e48565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611112576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110990611dc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611182576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117990611cc8565b60405180910390fd5b61118d838383611637565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90611d48565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112a69190611e9a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161130a9190611e48565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90611da8565b60405180910390fd5b61139482600083611637565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561141a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141190611ce8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461147191906120bb565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114d69190611e48565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a90611e28565b60405180910390fd5b61155f60008383611637565b80600260008282546115719190611e9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115c69190611e9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161162b9190611e48565b60405180910390a35050565b505050565b60008135905061164b81612225565b92915050565b6000813590506116608161223c565b92915050565b60006020828403121561167857600080fd5b60006116868482850161163c565b91505092915050565b600080604083850312156116a257600080fd5b60006116b08582860161163c565b92505060206116c18582860161163c565b9150509250929050565b6000806000606084860312156116e057600080fd5b60006116ee8682870161163c565b93505060206116ff8682870161163c565b925050604061171086828701611651565b9150509250925092565b6000806040838503121561172d57600080fd5b600061173b8582860161163c565b925050602061174c85828601611651565b9150509250929050565b60006020828403121561176857600080fd5b600061177684828501611651565b91505092915050565b611788816120ef565b82525050565b61179781612101565b82525050565b60006117a882611e7e565b6117b28185611e89565b93506117c2818560208601612144565b6117cb81612207565b840191505092915050565b60006117e3602383611e89565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611849602283611e89565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118af602683611e89565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611915602283611e89565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061197b602683611e89565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119e1602883611e89565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a47602083611e89565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a87602183611e89565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aed602583611e89565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b53602483611e89565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bb9602583611e89565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c1f601f83611e89565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611c5b8161212d565b82525050565b611c6a81612137565b82525050565b6000602082019050611c85600083018461177f565b92915050565b6000602082019050611ca0600083018461178e565b92915050565b60006020820190508181036000830152611cc0818461179d565b905092915050565b60006020820190508181036000830152611ce1816117d6565b9050919050565b60006020820190508181036000830152611d018161183c565b9050919050565b60006020820190508181036000830152611d21816118a2565b9050919050565b60006020820190508181036000830152611d4181611908565b9050919050565b60006020820190508181036000830152611d618161196e565b9050919050565b60006020820190508181036000830152611d81816119d4565b9050919050565b60006020820190508181036000830152611da181611a3a565b9050919050565b60006020820190508181036000830152611dc181611a7a565b9050919050565b60006020820190508181036000830152611de181611ae0565b9050919050565b60006020820190508181036000830152611e0181611b46565b9050919050565b60006020820190508181036000830152611e2181611bac565b9050919050565b60006020820190508181036000830152611e4181611c12565b9050919050565b6000602082019050611e5d6000830184611c52565b92915050565b6000602082019050611e786000830184611c61565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ea58261212d565b9150611eb08361212d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611ee557611ee46121a9565b5b828201905092915050565b6000808291508390505b6001851115611f3a57808604811115611f1657611f156121a9565b5b6001851615611f255780820291505b8081029050611f3385612218565b9450611efa565b94509492505050565b6000611f4e8261212d565b9150611f598361212d565b9250611f867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f8e565b905092915050565b600082611f9e576001905061205a565b81611fac576000905061205a565b8160018114611fc25760028114611fcc57611ffb565b600191505061205a565b60ff841115611fde57611fdd6121a9565b5b8360020a915084821115611ff557611ff46121a9565b5b5061205a565b5060208310610133831016604e8410600b84101617156120305782820a90508381111561202b5761202a6121a9565b5b61205a565b61203d8484846001611ef0565b92509050818404811115612054576120536121a9565b5b81810290505b9392505050565b600061206c8261212d565b91506120778361212d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156120b0576120af6121a9565b5b828202905092915050565b60006120c68261212d565b91506120d18361212d565b9250828210156120e4576120e36121a9565b5b828203905092915050565b60006120fa8261210d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612162578082015181840152602081019050612147565b83811115612171576000848401525b50505050565b6000600282049050600182168061218f57607f821691505b602082108114156121a3576121a26121d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b61222e816120ef565b811461223957600080fd5b50565b6122458161212d565b811461225057600080fd5b5056fea2646970667358221220ea96fb4e190dfae0e289205108e49d2312fc534635569912efc3edf4b8e2903364736f6c63430008000033

Deployed Bytecode Sourcemap

130:1013:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;430:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2057:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4153:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4786:448;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;312:32:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;350:74;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2994:90:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5629:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;727:173:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3308:125:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:4;;;:::i;:::-;;1061:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2268:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;541:180:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6328:405:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3636:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;984:157:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3866:149:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;430:33:6;;;;;;;;;;;;;:::o;2057:98:1:-;2111:13;2143:5;2136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2057:98;:::o;4153:166::-;4236:4;4252:39;4261:12;:10;:12::i;:::-;4275:7;4284:6;4252:8;:39::i;:::-;4308:4;4301:11;;4153:166;;;;:::o;3144:106::-;3205:7;3231:12;;3224:19;;3144:106;:::o;4786:448::-;4892:4;4908:36;4918:6;4926:9;4937:6;4908:9;:36::i;:::-;4955:24;4982:11;:19;4994:6;4982:19;;;;;;;;;;;;;;;:33;5002:12;:10;:12::i;:::-;4982:33;;;;;;;;;;;;;;;;4955:60;;5053:6;5033:16;:26;;5025:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5138:57;5147:6;5155:12;:10;:12::i;:::-;5188:6;5169:16;:25;5138:8;:57::i;:::-;5223:4;5216:11;;;4786:448;;;;;:::o;312:32:6:-;343:1;312:32;:::o;350:74::-;343:1;406:17;;402:2;:21;;;;:::i;:::-;389:11;:35;;;;:::i;:::-;350:74;:::o;2994:90:1:-;3052:5;3076:1;3069:8;;2994:90;:::o;5629:212::-;5717:4;5733:80;5742:12;:10;:12::i;:::-;5756:7;5802:10;5765:11;:25;5777:12;:10;:12::i;:::-;5765:25;;;;;;;;;;;;;;;:34;5791:7;5765:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5733:8;:80::i;:::-;5830:4;5823:11;;5629:212;;;;:::o;727:173:6:-;1284:12:4;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;784:15:6::1;343:1;812:17;;808:2;:21;;;;:::i;:::-;800:6;:30;;;;:::i;:::-;784:46;;840:25;846:10;857:7;840:5;:25::i;:::-;881:12;886:6;881:12;;;;;;:::i;:::-;;;;;;;;1343:1:4;727:173:6::0;:::o;3308:125:1:-;3382:7;3408:9;:18;3418:7;3408:18;;;;;;;;;;;;;;;;3401:25;;3308:125;;;:::o;1693:145:4:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1799:1:::1;1762:40;;1783:6;;;;;;;;;;;1762:40;;;;;;;;;;;;1829:1;1812:6;;:19;;;;;;;;;;;;;;;;;;1693:145::o:0;1061:85::-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2268:102:1:-;2324:13;2356:7;2349:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2268:102;:::o;541:180:6:-;1284:12:4;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;944:15:6::1;;;;;;;;;;;943:16;935:25;;;::::0;::::1;;605:15:::2;343:1;633:17;;629:2;:21;;;;:::i;:::-;621:6;:30;;;;:::i;:::-;605:46;;661:25;667:10;678:7;661:5;:25::i;:::-;702:12;707:6;702:12;;;;;;:::i;:::-;;;;;;;;970:1;541:180:::0;:::o;6328:405:1:-;6421:4;6437:24;6464:11;:25;6476:12;:10;:12::i;:::-;6464:25;;;;;;;;;;;;;;;:34;6490:7;6464:34;;;;;;;;;;;;;;;;6437:61;;6536:15;6516:16;:35;;6508:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6627:67;6636:12;:10;:12::i;:::-;6650:7;6678:15;6659:16;:34;6627:8;:67::i;:::-;6722:4;6715:11;;;6328:405;;;;:::o;3636:172::-;3722:4;3738:42;3748:12;:10;:12::i;:::-;3762:9;3773:6;3738:9;:42::i;:::-;3797:4;3790:11;;3636:172;;;;:::o;984:157:6:-;1046:4;1284:12:4;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;944:15:6::1;;;;;;;;;;;943:16;935:25;;;::::0;::::1;;1080:4:::2;1062:15;;:22;;;;;;;;;;;;;;;;;;1099:14;;;;;;;;;;1130:4;1123:11;;984:157:::0;:::o;3866:149:1:-;3955:7;3981:11;:18;3993:5;3981:18;;;;;;;;;;;;;;;:27;4000:7;3981:27;;;;;;;;;;;;;;;;3974:34;;3866:149;;;;:::o;1987:240:4:-;1284:12;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2095:1:::1;2075:22;;:8;:22;;;;2067:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2184:8;2155:38;;2176:6;;;;;;;;;;;2155:38;;;;;;;;;;;;2212:8;2203:6;;:17;;;;;;;;;;;;;;;;;;1987:240:::0;:::o;586:96:0:-;639:7;665:10;658:17;;586:96;:::o;9699:340:1:-;9817:1;9800:19;;:5;:19;;;;9792:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9897:1;9878:21;;:7;:21;;;;9870:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9979:6;9949:11;:18;9961:5;9949:18;;;;;;;;;;;;;;;:27;9968:7;9949:27;;;;;;;;;;;;;;;:36;;;;10016:7;10000:32;;10009:5;10000:32;;;10025:6;10000:32;;;;;;:::i;:::-;;;;;;;;9699:340;;;:::o;7207:626::-;7330:1;7312:20;;:6;:20;;;;7304:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7413:1;7392:23;;:9;:23;;;;7384:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7466:47;7487:6;7495:9;7506:6;7466:20;:47::i;:::-;7524:21;7548:9;:17;7558:6;7548:17;;;;;;;;;;;;;;;;7524:41;;7600:6;7583:13;:23;;7575:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7719:6;7703:13;:22;7683:9;:17;7693:6;7683:17;;;;;;;;;;;;;;;:42;;;;7769:6;7745:9;:20;7755:9;7745:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7808:9;7791:35;;7800:6;7791:35;;;7819:6;7791:35;;;;;;:::i;:::-;;;;;;;;7207:626;;;;:::o;8759:517::-;8861:1;8842:21;;:7;:21;;;;8834:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8912:49;8933:7;8950:1;8954:6;8912:20;:49::i;:::-;8972:22;8997:9;:18;9007:7;8997:18;;;;;;;;;;;;;;;;8972:43;;9051:6;9033:14;:24;;9025:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;9168:6;9151:14;:23;9130:9;:18;9140:7;9130:18;;;;;;;;;;;;;;;:44;;;;9210:6;9194:12;;:22;;;;;;;:::i;:::-;;;;;;;;9258:1;9232:37;;9241:7;9232:37;;;9262:6;9232:37;;;;;;:::i;:::-;;;;;;;;8759:517;;;:::o;8109:330::-;8211:1;8192:21;;:7;:21;;;;8184:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;8260:49;8289:1;8293:7;8302:6;8260:20;:49::i;:::-;8336:6;8320:12;;:22;;;;;;;:::i;:::-;;;;;;;;8374:6;8352:9;:18;8362:7;8352:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;8416:7;8395:37;;8412:1;8395:37;;;8425:6;8395:37;;;;;;:::i;:::-;;;;;;;;8109:330;;:::o;10626:92::-;;;;:::o;7:139:7:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:365::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:3;5730:2;5725:3;5721:12;5714:25;5765:2;5760:3;5756:12;5749:19;;5555:219;;;:::o;5780:369::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6040:34;6036:1;6031:3;6027:11;6020:55;6106:7;6101:2;6096:3;6092:12;6085:29;6140:2;6135:3;6131:12;6124:19;;5926:223;;;:::o;6155:368::-;;6318:67;6382:2;6377:3;6318:67;:::i;:::-;6311:74;;6415:34;6411:1;6406:3;6402:11;6395:55;6481:6;6476:2;6471:3;6467:12;6460:28;6514:2;6509:3;6505:12;6498:19;;6301:222;;;:::o;6529:369::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:7;6850:2;6845:3;6841:12;6834:29;6889:2;6884:3;6880:12;6873:19;;6675:223;;;:::o;6904:329::-;;7067:67;7131:2;7126:3;7067:67;:::i;:::-;7060:74;;7164:33;7160:1;7155:3;7151:11;7144:54;7224:2;7219:3;7215:12;7208:19;;7050:183;;;:::o;7239:118::-;7326:24;7344:5;7326:24;:::i;:::-;7321:3;7314:37;7304:53;;:::o;7363:112::-;7446:22;7462:5;7446:22;:::i;:::-;7441:3;7434:35;7424:51;;:::o;7481:222::-;;7612:2;7601:9;7597:18;7589:26;;7625:71;7693:1;7682:9;7678:17;7669:6;7625:71;:::i;:::-;7579:124;;;;:::o;7709:210::-;;7834:2;7823:9;7819:18;7811:26;;7847:65;7909:1;7898:9;7894:17;7885:6;7847:65;:::i;:::-;7801:118;;;;:::o;7925:313::-;;8076:2;8065:9;8061:18;8053:26;;8125:9;8119:4;8115:20;8111:1;8100:9;8096:17;8089:47;8153:78;8226:4;8217:6;8153:78;:::i;:::-;8145:86;;8043:195;;;;:::o;8244:419::-;;8448:2;8437:9;8433:18;8425:26;;8497:9;8491:4;8487:20;8483:1;8472:9;8468:17;8461:47;8525:131;8651:4;8525:131;:::i;:::-;8517:139;;8415:248;;;:::o;8669:419::-;;8873:2;8862:9;8858:18;8850:26;;8922:9;8916:4;8912:20;8908:1;8897:9;8893:17;8886:47;8950:131;9076:4;8950:131;:::i;:::-;8942:139;;8840:248;;;:::o;9094:419::-;;9298:2;9287:9;9283:18;9275:26;;9347:9;9341:4;9337:20;9333:1;9322:9;9318:17;9311:47;9375:131;9501:4;9375:131;:::i;:::-;9367:139;;9265:248;;;:::o;9519:419::-;;9723:2;9712:9;9708:18;9700:26;;9772:9;9766:4;9762:20;9758:1;9747:9;9743:17;9736:47;9800:131;9926:4;9800:131;:::i;:::-;9792:139;;9690:248;;;:::o;9944:419::-;;10148:2;10137:9;10133:18;10125:26;;10197:9;10191:4;10187:20;10183:1;10172:9;10168:17;10161:47;10225:131;10351:4;10225:131;:::i;:::-;10217:139;;10115:248;;;:::o;10369:419::-;;10573:2;10562:9;10558:18;10550:26;;10622:9;10616:4;10612:20;10608:1;10597:9;10593:17;10586:47;10650:131;10776:4;10650:131;:::i;:::-;10642:139;;10540:248;;;:::o;10794:419::-;;10998:2;10987:9;10983:18;10975:26;;11047:9;11041:4;11037:20;11033:1;11022:9;11018:17;11011:47;11075:131;11201:4;11075:131;:::i;:::-;11067:139;;10965:248;;;:::o;11219:419::-;;11423:2;11412:9;11408:18;11400:26;;11472:9;11466:4;11462:20;11458:1;11447:9;11443:17;11436:47;11500:131;11626:4;11500:131;:::i;:::-;11492:139;;11390:248;;;:::o;11644:419::-;;11848:2;11837:9;11833:18;11825:26;;11897:9;11891:4;11887:20;11883:1;11872:9;11868:17;11861:47;11925:131;12051:4;11925:131;:::i;:::-;11917:139;;11815:248;;;:::o;12069:419::-;;12273:2;12262:9;12258:18;12250:26;;12322:9;12316:4;12312:20;12308:1;12297:9;12293:17;12286:47;12350:131;12476:4;12350:131;:::i;:::-;12342:139;;12240:248;;;:::o;12494:419::-;;12698:2;12687:9;12683:18;12675:26;;12747:9;12741:4;12737:20;12733:1;12722:9;12718:17;12711:47;12775:131;12901:4;12775:131;:::i;:::-;12767:139;;12665:248;;;:::o;12919:419::-;;13123:2;13112:9;13108:18;13100:26;;13172:9;13166:4;13162:20;13158:1;13147:9;13143:17;13136:47;13200:131;13326:4;13200:131;:::i;:::-;13192:139;;13090:248;;;:::o;13344:222::-;;13475:2;13464:9;13460:18;13452:26;;13488:71;13556:1;13545:9;13541:17;13532:6;13488:71;:::i;:::-;13442:124;;;;:::o;13572:214::-;;13699:2;13688:9;13684:18;13676:26;;13712:67;13776:1;13765:9;13761:17;13752:6;13712:67;:::i;:::-;13666:120;;;;:::o;13792:99::-;;13878:5;13872:12;13862:22;;13851:40;;;:::o;13897:169::-;;14015:6;14010:3;14003:19;14055:4;14050:3;14046:14;14031:29;;13993:73;;;;:::o;14072:305::-;;14131:20;14149:1;14131:20;:::i;:::-;14126:25;;14165:20;14183:1;14165:20;:::i;:::-;14160:25;;14319:1;14251:66;14247:74;14244:1;14241:81;14238:2;;;14325:18;;:::i;:::-;14238:2;14369:1;14366;14362:9;14355:16;;14116:261;;;;:::o;14383:848::-;;;14475:6;14466:15;;14499:5;14490:14;;14513:712;14534:1;14524:8;14521:15;14513:712;;;14629:4;14624:3;14620:14;14614:4;14611:24;14608:2;;;14638:18;;:::i;:::-;14608:2;14688:1;14678:8;14674:16;14671:2;;;15103:4;15096:5;15092:16;15083:25;;14671:2;15153:4;15147;15143:15;15135:23;;15183:32;15206:8;15183:32;:::i;:::-;15171:44;;14513:712;;;14456:775;;;;;;;:::o;15237:285::-;;15321:23;15339:4;15321:23;:::i;:::-;15313:31;;15365:27;15383:8;15365:27;:::i;:::-;15353:39;;15411:104;15448:66;15438:8;15432:4;15411:104;:::i;:::-;15402:113;;15303:219;;;;:::o;15528:1073::-;;15773:8;15763:2;;15794:1;15785:10;;15796:5;;15763:2;15822:4;15812:2;;15839:1;15830:10;;15841:5;;15812:2;15908:4;15956:1;15951:27;;;;15992:1;15987:191;;;;15901:277;;15951:27;15969:1;15960:10;;15971:5;;;15987:191;16032:3;16022:8;16019:17;16016:2;;;16039:18;;:::i;:::-;16016:2;16088:8;16085:1;16081:16;16072:25;;16123:3;16116:5;16113:14;16110:2;;;16130:18;;:::i;:::-;16110:2;16163:5;;;15901:277;;16287:2;16277:8;16274:16;16268:3;16262:4;16259:13;16255:36;16237:2;16227:8;16224:16;16219:2;16213:4;16210:12;16206:35;16190:111;16187:2;;;16343:8;16337:4;16333:19;16324:28;;16378:3;16371:5;16368:14;16365:2;;;16385:18;;:::i;:::-;16365:2;16418:5;;16187:2;16458:42;16496:3;16486:8;16480:4;16477:1;16458:42;:::i;:::-;16443:57;;;;16532:4;16527:3;16523:14;16516:5;16513:25;16510:2;;;16541:18;;:::i;:::-;16510:2;16590:4;16583:5;16579:16;16570:25;;15588:1013;;;;;;:::o;16607:348::-;;16670:20;16688:1;16670:20;:::i;:::-;16665:25;;16704:20;16722:1;16704:20;:::i;:::-;16699:25;;16892:1;16824:66;16820:74;16817:1;16814:81;16809:1;16802:9;16795:17;16791:105;16788:2;;;16899:18;;:::i;:::-;16788:2;16947:1;16944;16940:9;16929:20;;16655:300;;;;:::o;16961:191::-;;17021:20;17039:1;17021:20;:::i;:::-;17016:25;;17055:20;17073:1;17055:20;:::i;:::-;17050:25;;17094:1;17091;17088:8;17085:2;;;17099:18;;:::i;:::-;17085:2;17144:1;17141;17137:9;17129:17;;17006:146;;;;:::o;17158:96::-;;17224:24;17242:5;17224:24;:::i;:::-;17213:35;;17203:51;;;:::o;17260:90::-;;17337:5;17330:13;17323:21;17312:32;;17302:48;;;:::o;17356:126::-;;17433:42;17426:5;17422:54;17411:65;;17401:81;;;:::o;17488:77::-;;17554:5;17543:16;;17533:32;;;:::o;17571:86::-;;17646:4;17639:5;17635:16;17624:27;;17614:43;;;:::o;17663:307::-;17731:1;17741:113;17755:6;17752:1;17749:13;17741:113;;;17840:1;17835:3;17831:11;17825:18;17821:1;17816:3;17812:11;17805:39;17777:2;17774:1;17770:10;17765:15;;17741:113;;;17872:6;17869:1;17866:13;17863:2;;;17952:1;17943:6;17938:3;17934:16;17927:27;17863:2;17712:258;;;;:::o;17976:320::-;;18057:1;18051:4;18047:12;18037:22;;18104:1;18098:4;18094:12;18125:18;18115:2;;18181:4;18173:6;18169:17;18159:27;;18115:2;18243;18235:6;18232:14;18212:18;18209:38;18206:2;;;18262:18;;:::i;:::-;18206:2;18027:269;;;;:::o;18302:180::-;18350:77;18347:1;18340:88;18447:4;18444:1;18437:15;18471:4;18468:1;18461:15;18488:180;18536:77;18533:1;18526:88;18633:4;18630:1;18623:15;18657:4;18654:1;18647:15;18674:102;;18766:2;18762:7;18757:2;18750:5;18746:14;18742:28;18732:38;;18722:54;;;:::o;18782:102::-;;18871:5;18868:1;18864:13;18843:34;;18833:51;;;:::o;18890:122::-;18963:24;18981:5;18963:24;:::i;:::-;18956:5;18953:35;18943:2;;19002:1;18999;18992:12;18943:2;18933:79;:::o;19018:122::-;19091:24;19109:5;19091:24;:::i;:::-;19084:5;19081:35;19071:2;;19130:1;19127;19120:12;19071:2;19061:79;:::o

Swarm Source

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