ETH Price: $2,416.11 (+2.10%)

Token

DSCVR (DSCVR)
 

Overview

Max Total Supply

99,999.999999999999968 DSCVR

Holders

133 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000011849777330283 DSCVR

Value
$0.00
0x1624e31a51512baa9d78ba09790577a55b46e88a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A decentralized auction platform & token database with De-FI focus. DSCVR.FINANCE aims to be the first stop for investors looking for information on upcoming pre-sales & raises or newly listed tokens.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DSCVR

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 2 of 8: DISCO2.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC20.sol";
import "./ERC20Capped.sol";
import "./ERC20Burnable.sol";
import "./Ownable.sol";
contract DSCVR is ERC20, ERC20Capped, ERC20Burnable, Ownable {  

    uint256 public constant HARD_CAP = 100_000 * (10 ** 18); // 100k tokens
    bool allowTransfer;
    mapping (address => bool) public whiteListTransfer;

    modifier isUnlocked() {
        require(allowTransfer || whiteListTransfer[msg.sender], "Can-not-transfer");
        _;
    }

    /**
     * @dev Constructor function of DSCVR Token
     * @dev set name, symbol and decimal of token
     * @dev mint hardcap to deployer
     */
    constructor() public 
    ERC20("DSCVR", "DSCVR") 
    ERC20Capped(HARD_CAP) {
       whiteListTransfer[_msgSender()] = true;
        _mint(msg.sender, HARD_CAP);
    }

    /**
     * @dev Admin whitelist/un-whitelist transfer  
     * @dev to allow address transfer
     * @dev token before allowTransferOn
     */
    function adminWhiteList(address _whitelistAddr, bool _whiteList) public onlyOwner returns (bool) {
        whiteListTransfer[_whitelistAddr] = _whiteList;
        return true;
    }

    /**
     * @dev Admin can set allowTransfer to allow user transfer token normally
     */
    function adminUnlockTransfer() public onlyOwner returns (bool) {
        require(!allowTransfer, "Already-allowed");
        allowTransfer = true;
        return true;
    }

    function transfer(address to, uint amount) public isUnlocked override(ERC20) returns (bool) {
        return super.transfer(to, amount);
    }

    function transferFrom(address from, address to, uint amount) public isUnlocked override(ERC20) returns (bool) {
        return super.transferFrom(from, to, amount);
    }
     /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Capped) {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 1 of 8: 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 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;
    }
}

File 3 of 8: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./IERC20.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 {
    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 { }
}

File 4 of 8: ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 5 of 8: ERC20Capped.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - minted tokens must not cause the total supply to go over the cap.
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (from == address(0)) { // When minting tokens
            require(totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        }
    }
}

File 6 of 8: 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 7 of 8: Migrations.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

contract Migrations {
  address public owner = msg.sender;
  uint public last_completed_migration;

  modifier restricted() {
    require(
      msg.sender == owner,
      "This function is restricted to the contract's owner"
    );
    _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }
}

File 8 of 8: 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;
    }
}

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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminUnlockTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistAddr","type":"address"},{"internalType":"bool","name":"_whiteList","type":"bool"}],"name":"adminWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5069152d02c7e14af68000006040518060400160405280600581526020017f44534356520000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f44534356520000000000000000000000000000000000000000000000000000008152508160039080519060200190620000a1929190620004ad565b508060049080519060200190620000ba929190620004ad565b5050506000811162000103576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000fa90620005e3565b60405180910390fd5b806005819055505060006200011d6200024560201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600160076000620001d26200024560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200023f3369152d02c7e14af68000006200024d60201b60201c565b620007ed565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002c0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b79062000627565b60405180910390fd5b620002d460008383620003b260201b60201c565b8060026000828254620002e8919062000677565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200033f919062000677565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a6919062000649565b60405180910390a35050565b620003ca838383620003cf60201b62000f201760201c565b505050565b620003e78383836200049460201b62000fc21760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200048f576200042d6200049960201b60201c565b816200043e620004a360201b60201c565b6200044a919062000677565b11156200048e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004859062000605565b60405180910390fd5b5b505050565b505050565b6000600554905090565b6000600254905090565b828054620004bb90620006de565b90600052602060002090601f016020900481019282620004df57600085556200052b565b82601f10620004fa57805160ff19168380011785556200052b565b828001600101855582156200052b579182015b828111156200052a5782518255916020019190600101906200050d565b5b5090506200053a91906200053e565b5090565b5b80821115620005595760008160009055506001016200053f565b5090565b60006200056c60158362000666565b9150620005798262000772565b602082019050919050565b60006200059360198362000666565b9150620005a0826200079b565b602082019050919050565b6000620005ba601f8362000666565b9150620005c782620007c4565b602082019050919050565b620005dd81620006d4565b82525050565b60006020820190508181036000830152620005fe816200055d565b9050919050565b60006020820190508181036000830152620006208162000584565b9050919050565b600060208201905081810360008301526200064281620005ab565b9050919050565b6000602082019050620006606000830184620005d2565b92915050565b600082825260208201905092915050565b60006200068482620006d4565b91506200069183620006d4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006c957620006c862000714565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620006f757607f821691505b602082108114156200070e576200070d62000743565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6123f380620007fd6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610340578063a457c2d71461035e578063a54eb8261461038e578063a9059cbb146103be578063dd62ed3e146103ee578063f2fde38b1461041e57610137565b806370a082311461029c578063715018a6146102cc57806376fd9d4d146102d657806379cc6790146103065780638da5cb5b1461032257610137565b8063355274ea116100ff578063355274ea146101f657806339509351146102145780633a03171c1461024457806342966c68146102625780636fe574281461027e57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b61014461043a565b6040516101519190611b68565b60405180910390f35b610174600480360381019061016f919061184b565b6104cc565b6040516101819190611b4d565b60405180910390f35b6101926104ea565b60405161019f9190611d6a565b60405180910390f35b6101c260048036038101906101bd91906117c0565b6104f4565b6040516101cf9190611b4d565b60405180910390f35b6101e06105ad565b6040516101ed9190611d85565b60405180910390f35b6101fe6105b6565b60405161020b9190611d6a565b60405180910390f35b61022e6004803603810190610229919061184b565b6105c0565b60405161023b9190611b4d565b60405180910390f35b61024c61066c565b6040516102599190611d6a565b60405180910390f35b61027c60048036038101906102779190611887565b61067a565b005b61028661068e565b6040516102939190611b4d565b60405180910390f35b6102b660048036038101906102b1919061175b565b61077e565b6040516102c39190611d6a565b60405180910390f35b6102d46107c6565b005b6102f060048036038101906102eb919061175b565b610903565b6040516102fd9190611b4d565b60405180910390f35b610320600480360381019061031b919061184b565b610923565b005b61032a6109a7565b6040516103379190611b32565b60405180910390f35b6103486109d1565b6040516103559190611b68565b60405180910390f35b6103786004803603810190610373919061184b565b610a63565b6040516103859190611b4d565b60405180910390f35b6103a860048036038101906103a3919061180f565b610b57565b6040516103b59190611b4d565b60405180910390f35b6103d860048036038101906103d3919061184b565b610c36565b6040516103e59190611b4d565b60405180910390f35b61040860048036038101906104039190611784565b610ced565b6040516104159190611d6a565b60405180910390f35b6104386004803603810190610433919061175b565b610d74565b005b60606003805461044990611ece565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611ece565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104e06104d9610fc7565b8484610fcf565b6001905092915050565b6000600254905090565b6000600660149054906101000a900460ff168061055a5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059090611c2a565b60405180910390fd5b6105a484848461119a565b90509392505050565b60006012905090565b6000600554905090565b60006106626105cd610fc7565b8484600160006105db610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461065d9190611dbc565b610fcf565b6001905092915050565b69152d02c7e14af680000081565b61068b610685610fc7565b8261129b565b50565b6000610698610fc7565b73ffffffffffffffffffffffffffffffffffffffff166106b66109a7565b73ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611c8a565b60405180910390fd5b600660149054906101000a900460ff161561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390611c4a565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ce610fc7565b73ffffffffffffffffffffffffffffffffffffffff166107ec6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60076020528060005260406000206000915054906101000a900460ff1681565b600061093683610931610fc7565b610ced565b90508181101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611caa565b60405180910390fd5b61099883610987610fc7565b84846109939190611e12565b610fcf565b6109a2838361129b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109e090611ece565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90611ece565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b60008060016000610a72610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690611d4a565b60405180910390fd5b610b4c610b3a610fc7565b858584610b479190611e12565b610fcf565b600191505092915050565b6000610b61610fc7565b73ffffffffffffffffffffffffffffffffffffffff16610b7f6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611c8a565b60405180910390fd5b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b6000600660149054906101000a900460ff1680610c9c5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290611c2a565b60405180910390fd5b610ce5838361146f565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7c610fc7565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611bca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f2b838383610fc2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fbd57610f686105b6565b81610f716104ea565b610f7b9190611dbc565b1115610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611d0a565b60405180910390fd5b5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690611d2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690611bea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161118d9190611d6a565b60405180910390a3505050565b60006111a784848461148d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111f2610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611c6a565b60405180910390fd5b61128f8561127e610fc7565b858461128a9190611e12565b610fcf565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611cca565b60405180910390fd5b6113178260008361170c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611baa565b60405180910390fd5b81816113a99190611e12565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113fd9190611e12565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114629190611d6a565b60405180910390a3505050565b600061148361147c610fc7565b848461148d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490611cea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490611b8a565b60405180910390fd5b61157883838361170c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590611c0a565b60405180910390fd5b818161160a9190611e12565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169a9190611dbc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fe9190611d6a565b60405180910390a350505050565b611717838383610f20565b505050565b60008135905061172b81612378565b92915050565b6000813590506117408161238f565b92915050565b600081359050611755816123a6565b92915050565b60006020828403121561176d57600080fd5b600061177b8482850161171c565b91505092915050565b6000806040838503121561179757600080fd5b60006117a58582860161171c565b92505060206117b68582860161171c565b9150509250929050565b6000806000606084860312156117d557600080fd5b60006117e38682870161171c565b93505060206117f48682870161171c565b925050604061180586828701611746565b9150509250925092565b6000806040838503121561182257600080fd5b60006118308582860161171c565b925050602061184185828601611731565b9150509250929050565b6000806040838503121561185e57600080fd5b600061186c8582860161171c565b925050602061187d85828601611746565b9150509250929050565b60006020828403121561189957600080fd5b60006118a784828501611746565b91505092915050565b6118b981611e46565b82525050565b6118c881611e58565b82525050565b60006118d982611da0565b6118e38185611dab565b93506118f3818560208601611e9b565b6118fc81611f5e565b840191505092915050565b6000611914602383611dab565b915061191f82611f6f565b604082019050919050565b6000611937602283611dab565b915061194282611fbe565b604082019050919050565b600061195a602683611dab565b91506119658261200d565b604082019050919050565b600061197d602283611dab565b91506119888261205c565b604082019050919050565b60006119a0602683611dab565b91506119ab826120ab565b604082019050919050565b60006119c3601083611dab565b91506119ce826120fa565b602082019050919050565b60006119e6600f83611dab565b91506119f182612123565b602082019050919050565b6000611a09602883611dab565b9150611a148261214c565b604082019050919050565b6000611a2c602083611dab565b9150611a378261219b565b602082019050919050565b6000611a4f602483611dab565b9150611a5a826121c4565b604082019050919050565b6000611a72602183611dab565b9150611a7d82612213565b604082019050919050565b6000611a95602583611dab565b9150611aa082612262565b604082019050919050565b6000611ab8601983611dab565b9150611ac3826122b1565b602082019050919050565b6000611adb602483611dab565b9150611ae6826122da565b604082019050919050565b6000611afe602583611dab565b9150611b0982612329565b604082019050919050565b611b1d81611e84565b82525050565b611b2c81611e8e565b82525050565b6000602082019050611b4760008301846118b0565b92915050565b6000602082019050611b6260008301846118bf565b92915050565b60006020820190508181036000830152611b8281846118ce565b905092915050565b60006020820190508181036000830152611ba381611907565b9050919050565b60006020820190508181036000830152611bc38161192a565b9050919050565b60006020820190508181036000830152611be38161194d565b9050919050565b60006020820190508181036000830152611c0381611970565b9050919050565b60006020820190508181036000830152611c2381611993565b9050919050565b60006020820190508181036000830152611c43816119b6565b9050919050565b60006020820190508181036000830152611c63816119d9565b9050919050565b60006020820190508181036000830152611c83816119fc565b9050919050565b60006020820190508181036000830152611ca381611a1f565b9050919050565b60006020820190508181036000830152611cc381611a42565b9050919050565b60006020820190508181036000830152611ce381611a65565b9050919050565b60006020820190508181036000830152611d0381611a88565b9050919050565b60006020820190508181036000830152611d2381611aab565b9050919050565b60006020820190508181036000830152611d4381611ace565b9050919050565b60006020820190508181036000830152611d6381611af1565b9050919050565b6000602082019050611d7f6000830184611b14565b92915050565b6000602082019050611d9a6000830184611b23565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611dc782611e84565b9150611dd283611e84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e0757611e06611f00565b5b828201905092915050565b6000611e1d82611e84565b9150611e2883611e84565b925082821015611e3b57611e3a611f00565b5b828203905092915050565b6000611e5182611e64565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611eb9578082015181840152602081019050611e9e565b83811115611ec8576000848401525b50505050565b60006002820490506001821680611ee657607f821691505b60208210811415611efa57611ef9611f2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616e2d6e6f742d7472616e7366657200000000000000000000000000000000600082015250565b7f416c72656164792d616c6c6f7765640000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61238181611e46565b811461238c57600080fd5b50565b61239881611e58565b81146123a357600080fd5b50565b6123af81611e84565b81146123ba57600080fd5b5056fea2646970667358221220a04f483b8082cc52044dc205f564c2fa56e6be3c8fdfb28496d6479cc5681b9f64736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b857806395d89b411161007c57806395d89b4114610340578063a457c2d71461035e578063a54eb8261461038e578063a9059cbb146103be578063dd62ed3e146103ee578063f2fde38b1461041e57610137565b806370a082311461029c578063715018a6146102cc57806376fd9d4d146102d657806379cc6790146103065780638da5cb5b1461032257610137565b8063355274ea116100ff578063355274ea146101f657806339509351146102145780633a03171c1461024457806342966c68146102625780636fe574281461027e57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b61014461043a565b6040516101519190611b68565b60405180910390f35b610174600480360381019061016f919061184b565b6104cc565b6040516101819190611b4d565b60405180910390f35b6101926104ea565b60405161019f9190611d6a565b60405180910390f35b6101c260048036038101906101bd91906117c0565b6104f4565b6040516101cf9190611b4d565b60405180910390f35b6101e06105ad565b6040516101ed9190611d85565b60405180910390f35b6101fe6105b6565b60405161020b9190611d6a565b60405180910390f35b61022e6004803603810190610229919061184b565b6105c0565b60405161023b9190611b4d565b60405180910390f35b61024c61066c565b6040516102599190611d6a565b60405180910390f35b61027c60048036038101906102779190611887565b61067a565b005b61028661068e565b6040516102939190611b4d565b60405180910390f35b6102b660048036038101906102b1919061175b565b61077e565b6040516102c39190611d6a565b60405180910390f35b6102d46107c6565b005b6102f060048036038101906102eb919061175b565b610903565b6040516102fd9190611b4d565b60405180910390f35b610320600480360381019061031b919061184b565b610923565b005b61032a6109a7565b6040516103379190611b32565b60405180910390f35b6103486109d1565b6040516103559190611b68565b60405180910390f35b6103786004803603810190610373919061184b565b610a63565b6040516103859190611b4d565b60405180910390f35b6103a860048036038101906103a3919061180f565b610b57565b6040516103b59190611b4d565b60405180910390f35b6103d860048036038101906103d3919061184b565b610c36565b6040516103e59190611b4d565b60405180910390f35b61040860048036038101906104039190611784565b610ced565b6040516104159190611d6a565b60405180910390f35b6104386004803603810190610433919061175b565b610d74565b005b60606003805461044990611ece565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611ece565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104e06104d9610fc7565b8484610fcf565b6001905092915050565b6000600254905090565b6000600660149054906101000a900460ff168061055a5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610599576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059090611c2a565b60405180910390fd5b6105a484848461119a565b90509392505050565b60006012905090565b6000600554905090565b60006106626105cd610fc7565b8484600160006105db610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461065d9190611dbc565b610fcf565b6001905092915050565b69152d02c7e14af680000081565b61068b610685610fc7565b8261129b565b50565b6000610698610fc7565b73ffffffffffffffffffffffffffffffffffffffff166106b66109a7565b73ffffffffffffffffffffffffffffffffffffffff161461070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611c8a565b60405180910390fd5b600660149054906101000a900460ff161561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390611c4a565b60405180910390fd5b6001600660146101000a81548160ff0219169083151502179055506001905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107ce610fc7565b73ffffffffffffffffffffffffffffffffffffffff166107ec6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60076020528060005260406000206000915054906101000a900460ff1681565b600061093683610931610fc7565b610ced565b90508181101561097b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097290611caa565b60405180910390fd5b61099883610987610fc7565b84846109939190611e12565b610fcf565b6109a2838361129b565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109e090611ece565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0c90611ece565b8015610a595780601f10610a2e57610100808354040283529160200191610a59565b820191906000526020600020905b815481529060010190602001808311610a3c57829003601f168201915b5050505050905090565b60008060016000610a72610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2690611d4a565b60405180910390fd5b610b4c610b3a610fc7565b858584610b479190611e12565b610fcf565b600191505092915050565b6000610b61610fc7565b73ffffffffffffffffffffffffffffffffffffffff16610b7f6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcc90611c8a565b60405180910390fd5b81600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b6000600660149054906101000a900460ff1680610c9c5750600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd290611c2a565b60405180910390fd5b610ce5838361146f565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7c610fc7565b73ffffffffffffffffffffffffffffffffffffffff16610d9a6109a7565b73ffffffffffffffffffffffffffffffffffffffff1614610df0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de790611c8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790611bca565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f2b838383610fc2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fbd57610f686105b6565b81610f716104ea565b610f7b9190611dbc565b1115610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611d0a565b60405180910390fd5b5b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561103f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103690611d2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a690611bea565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161118d9190611d6a565b60405180910390a3505050565b60006111a784848461148d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111f2610fc7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990611c6a565b60405180910390fd5b61128f8561127e610fc7565b858461128a9190611e12565b610fcf565b60019150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561130b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130290611cca565b60405180910390fd5b6113178260008361170c565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561139d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139490611baa565b60405180910390fd5b81816113a99190611e12565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546113fd9190611e12565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114629190611d6a565b60405180910390a3505050565b600061148361147c610fc7565b848461148d565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f490611cea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561156d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156490611b8a565b60405180910390fd5b61157883838361170c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590611c0a565b60405180910390fd5b818161160a9190611e12565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461169a9190611dbc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116fe9190611d6a565b60405180910390a350505050565b611717838383610f20565b505050565b60008135905061172b81612378565b92915050565b6000813590506117408161238f565b92915050565b600081359050611755816123a6565b92915050565b60006020828403121561176d57600080fd5b600061177b8482850161171c565b91505092915050565b6000806040838503121561179757600080fd5b60006117a58582860161171c565b92505060206117b68582860161171c565b9150509250929050565b6000806000606084860312156117d557600080fd5b60006117e38682870161171c565b93505060206117f48682870161171c565b925050604061180586828701611746565b9150509250925092565b6000806040838503121561182257600080fd5b60006118308582860161171c565b925050602061184185828601611731565b9150509250929050565b6000806040838503121561185e57600080fd5b600061186c8582860161171c565b925050602061187d85828601611746565b9150509250929050565b60006020828403121561189957600080fd5b60006118a784828501611746565b91505092915050565b6118b981611e46565b82525050565b6118c881611e58565b82525050565b60006118d982611da0565b6118e38185611dab565b93506118f3818560208601611e9b565b6118fc81611f5e565b840191505092915050565b6000611914602383611dab565b915061191f82611f6f565b604082019050919050565b6000611937602283611dab565b915061194282611fbe565b604082019050919050565b600061195a602683611dab565b91506119658261200d565b604082019050919050565b600061197d602283611dab565b91506119888261205c565b604082019050919050565b60006119a0602683611dab565b91506119ab826120ab565b604082019050919050565b60006119c3601083611dab565b91506119ce826120fa565b602082019050919050565b60006119e6600f83611dab565b91506119f182612123565b602082019050919050565b6000611a09602883611dab565b9150611a148261214c565b604082019050919050565b6000611a2c602083611dab565b9150611a378261219b565b602082019050919050565b6000611a4f602483611dab565b9150611a5a826121c4565b604082019050919050565b6000611a72602183611dab565b9150611a7d82612213565b604082019050919050565b6000611a95602583611dab565b9150611aa082612262565b604082019050919050565b6000611ab8601983611dab565b9150611ac3826122b1565b602082019050919050565b6000611adb602483611dab565b9150611ae6826122da565b604082019050919050565b6000611afe602583611dab565b9150611b0982612329565b604082019050919050565b611b1d81611e84565b82525050565b611b2c81611e8e565b82525050565b6000602082019050611b4760008301846118b0565b92915050565b6000602082019050611b6260008301846118bf565b92915050565b60006020820190508181036000830152611b8281846118ce565b905092915050565b60006020820190508181036000830152611ba381611907565b9050919050565b60006020820190508181036000830152611bc38161192a565b9050919050565b60006020820190508181036000830152611be38161194d565b9050919050565b60006020820190508181036000830152611c0381611970565b9050919050565b60006020820190508181036000830152611c2381611993565b9050919050565b60006020820190508181036000830152611c43816119b6565b9050919050565b60006020820190508181036000830152611c63816119d9565b9050919050565b60006020820190508181036000830152611c83816119fc565b9050919050565b60006020820190508181036000830152611ca381611a1f565b9050919050565b60006020820190508181036000830152611cc381611a42565b9050919050565b60006020820190508181036000830152611ce381611a65565b9050919050565b60006020820190508181036000830152611d0381611a88565b9050919050565b60006020820190508181036000830152611d2381611aab565b9050919050565b60006020820190508181036000830152611d4381611ace565b9050919050565b60006020820190508181036000830152611d6381611af1565b9050919050565b6000602082019050611d7f6000830184611b14565b92915050565b6000602082019050611d9a6000830184611b23565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611dc782611e84565b9150611dd283611e84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e0757611e06611f00565b5b828201905092915050565b6000611e1d82611e84565b9150611e2883611e84565b925082821015611e3b57611e3a611f00565b5b828203905092915050565b6000611e5182611e64565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611eb9578082015181840152602081019050611e9e565b83811115611ec8576000848401525b50505050565b60006002820490506001821680611ee657607f821691505b60208210811415611efa57611ef9611f2f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f43616e2d6e6f742d7472616e7366657200000000000000000000000000000000600082015250565b7f416c72656164792d616c6c6f7765640000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61238181611e46565b811461238c57600080fd5b50565b61239881611e58565b81146123a357600080fd5b50565b6123af81611e84565b81146123ba57600080fd5b5056fea2646970667358221220a04f483b8082cc52044dc205f564c2fa56e6be3c8fdfb28496d6479cc5681b9f64736f6c63430008010033

Deployed Bytecode Sourcemap

160:1857:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2011:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4081:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3072:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:170:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2930:82:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;551:81:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5523:212:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;230:55:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;473:89:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1271:173:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3236:125:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1693:145:7;;;:::i;:::-;;330:50:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;868:327:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1061:85:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2213:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6222:371;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;990:181:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1450:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3794:149:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1987:240:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2011:89:2;2056:13;2088:5;2081:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2011:89;:::o;4081:166::-;4164:4;4180:39;4189:12;:10;:12::i;:::-;4203:7;4212:6;4180:8;:39::i;:::-;4236:4;4229:11;;4081:166;;;;:::o;3072:106::-;3133:7;3159:12;;3152:19;;3072:106;:::o;1598:170:1:-;1702:4;427:13;;;;;;;;;;;:46;;;;444:17;:29;462:10;444:29;;;;;;;;;;;;;;;;;;;;;;;;;427:46;419:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:36:::1;1744:4;1750:2;1754:6;1725:18;:36::i;:::-;1718:43;;1598:170:::0;;;;;:::o;2930:82:2:-;2979:5;3003:2;2996:9;;2930:82;:::o;551:81:4:-;595:7;621:4;;614:11;;551:81;:::o;5523:212:2:-;5611:4;5627:80;5636:12;:10;:12::i;:::-;5650:7;5696:10;5659:11;:25;5671:12;:10;:12::i;:::-;5659:25;;;;;;;;;;;;;;;:34;5685:7;5659:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;5627:8;:80::i;:::-;5724:4;5717:11;;5523:212;;;;:::o;230:55:1:-;265:20;230:55;:::o;473:89:3:-;528:27;534:12;:10;:12::i;:::-;548:6;528:5;:27::i;:::-;473:89;:::o;1271:173:1:-;1328:4;1284:12:7;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1353:13:1::1;;;;;;;;;;;1352:14;1344:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1412:4;1396:13;;:20;;;;;;;;;;;;;;;;;;1433:4;1426:11;;1271:173:::0;:::o;3236:125:2:-;3310:7;3336:9;:18;3346:7;3336:18;;;;;;;;;;;;;;;;3329:25;;3236:125;;;:::o;1693:145:7:-;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;330:50:1:-;;;;;;;;;;;;;;;;;;;;;;:::o;868:327:3:-;944:24;971:32;981:7;990:12;:10;:12::i;:::-;971:9;:32::i;:::-;944:59;;1041:6;1021:16;:26;;1013:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1098:58;1107:7;1116:12;:10;:12::i;:::-;1149:6;1130:16;:25;;;;:::i;:::-;1098:8;:58::i;:::-;1166:22;1172:7;1181:6;1166:5;:22::i;:::-;868:327;;;:::o;1061:85:7:-;1107:7;1133:6;;;;;;;;;;;1126:13;;1061:85;:::o;2213:93:2:-;2260:13;2292:7;2285:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2213:93;:::o;6222:371::-;6315:4;6331:24;6358:11;:25;6370:12;:10;:12::i;:::-;6358:25;;;;;;;;;;;;;;;:34;6384:7;6358:34;;;;;;;;;;;;;;;;6331:61;;6430:15;6410:16;:35;;6402:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6497:67;6506:12;:10;:12::i;:::-;6520:7;6548:15;6529:16;:34;;;;:::i;:::-;6497:8;:67::i;:::-;6582:4;6575:11;;;6222:371;;;;:::o;990:181:1:-;1081:4;1284:12:7;:10;:12::i;:::-;1273:23;;:7;:5;:7::i;:::-;:23;;;1265:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1133:10:1::1;1097:17;:33;1115:14;1097:33;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;1160:4;1153:11;;990:181:::0;;;;:::o;1450:142::-;1536:4;427:13;;;;;;;;;;;:46;;;;444:17;:29;462:10;444:29;;;;;;;;;;;;;;;;;;;;;;;;;427:46;419:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1559:26:::1;1574:2;1578:6;1559:14;:26::i;:::-;1552:33;;1450:142:::0;;;;:::o;3794:149:2:-;3883:7;3909:11;:18;3921:5;3909:18;;;;;;;;;;;;;;;:27;3928:7;3909:27;;;;;;;;;;;;;;;;3902:34;;3794:149;;;;:::o;1987:240:7:-;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;810:310:4:-;918:44;945:4;951:2;955:6;918:26;:44::i;:::-;993:1;977:18;;:4;:18;;;973:141;;;1068:5;:3;:5::i;:::-;1058:6;1042:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:31;;1034:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;973:141;810:310;;;:::o;10413:92:2:-;;;;:::o;590:96:0:-;643:7;669:10;662:17;;590:96;:::o;9486:340:2:-;9604:1;9587:19;;:5;:19;;;;9579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9684:1;9665:21;;:7;:21;;;;9657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9766:6;9736:11;:18;9748:5;9736:18;;;;;;;;;;;;;;;:27;9755:7;9736:27;;;;;;;;;;;;;;;:36;;;;9803:7;9787:32;;9796:5;9787:32;;;9812:6;9787:32;;;;;;:::i;:::-;;;;;;;;9486:340;;;:::o;4714:414::-;4820:4;4836:36;4846:6;4854:9;4865:6;4836:9;:36::i;:::-;4883:24;4910:11;:19;4922:6;4910:19;;;;;;;;;;;;;;;:33;4930:12;:10;:12::i;:::-;4910:33;;;;;;;;;;;;;;;;4883:60;;4981:6;4961:16;:26;;4953:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;5042:57;5051:6;5059:12;:10;:12::i;:::-;5092:6;5073:16;:25;;;;:::i;:::-;5042:8;:57::i;:::-;5117:4;5110:11;;;4714:414;;;;;:::o;8580:483::-;8682:1;8663:21;;:7;:21;;;;8655:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8733:49;8754:7;8771:1;8775:6;8733:20;:49::i;:::-;8793:22;8818:9;:18;8828:7;8818:18;;;;;;;;;;;;;;;;8793:43;;8872:6;8854:14;:24;;8846:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8965:6;8948:14;:23;;;;:::i;:::-;8927:9;:18;8937:7;8927:18;;;;;;;;;;;;;;;:44;;;;8997:6;8981:12;;:22;;;;;;;:::i;:::-;;;;;;;;9045:1;9019:37;;9028:7;9019:37;;;9049:6;9019:37;;;;;;:::i;:::-;;;;;;;;8580:483;;;:::o;3564:172::-;3650:4;3666:42;3676:12;:10;:12::i;:::-;3690:9;3701:6;3666:9;:42::i;:::-;3725:4;3718:11;;3564:172;;;;:::o;7067:592::-;7190:1;7172:20;;:6;:20;;;;7164:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7273:1;7252:23;;:9;:23;;;;7244:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7326:47;7347:6;7355:9;7366:6;7326:20;:47::i;:::-;7384:21;7408:9;:17;7418:6;7408:17;;;;;;;;;;;;;;;;7384:41;;7460:6;7443:13;:23;;7435:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;7555:6;7539:13;:22;;;;:::i;:::-;7519:9;:17;7529:6;7519:17;;;;;;;;;;;;;;;:42;;;;7595:6;7571:9;:20;7581:9;7571:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7634:9;7617:35;;7626:6;7617:35;;;7645:6;7617:35;;;;;;:::i;:::-;;;;;;;;7067:592;;;;:::o;1836:179:1:-;1964:44;1991:4;1997:2;2001:6;1964:26;:44::i;:::-;1836:179;;;:::o;7:139:8:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:262::-;;2603:2;2591:9;2582:7;2578:23;2574:32;2571:2;;;2619:1;2616;2609:12;2571:2;2662:1;2687:53;2732:7;2723:6;2712:9;2708:22;2687:53;:::i;:::-;2677:63;;2633:117;2561:196;;;;:::o;2763:118::-;2850:24;2868:5;2850:24;:::i;:::-;2845:3;2838:37;2828:53;;:::o;2887:109::-;2968:21;2983:5;2968:21;:::i;:::-;2963:3;2956:34;2946:50;;:::o;3002:364::-;;3118:39;3151:5;3118:39;:::i;:::-;3173:71;3237:6;3232:3;3173:71;:::i;:::-;3166:78;;3253:52;3298:6;3293:3;3286:4;3279:5;3275:16;3253:52;:::i;:::-;3330:29;3352:6;3330:29;:::i;:::-;3325:3;3321:39;3314:46;;3094:272;;;;;:::o;3372:366::-;;3535:67;3599:2;3594:3;3535:67;:::i;:::-;3528:74;;3611:93;3700:3;3611:93;:::i;:::-;3729:2;3724:3;3720:12;3713:19;;3518:220;;;:::o;3744:366::-;;3907:67;3971:2;3966:3;3907:67;:::i;:::-;3900:74;;3983:93;4072:3;3983:93;:::i;:::-;4101:2;4096:3;4092:12;4085:19;;3890:220;;;:::o;4116:366::-;;4279:67;4343:2;4338:3;4279:67;:::i;:::-;4272:74;;4355:93;4444:3;4355:93;:::i;:::-;4473:2;4468:3;4464:12;4457:19;;4262:220;;;:::o;4488:366::-;;4651:67;4715:2;4710:3;4651:67;:::i;:::-;4644:74;;4727:93;4816:3;4727:93;:::i;:::-;4845:2;4840:3;4836:12;4829:19;;4634:220;;;:::o;4860:366::-;;5023:67;5087:2;5082:3;5023:67;:::i;:::-;5016:74;;5099:93;5188:3;5099:93;:::i;:::-;5217:2;5212:3;5208:12;5201:19;;5006:220;;;:::o;5232:366::-;;5395:67;5459:2;5454:3;5395:67;:::i;:::-;5388:74;;5471:93;5560:3;5471:93;:::i;:::-;5589:2;5584:3;5580:12;5573:19;;5378:220;;;:::o;5604:366::-;;5767:67;5831:2;5826:3;5767:67;:::i;:::-;5760:74;;5843:93;5932:3;5843:93;:::i;:::-;5961:2;5956:3;5952:12;5945:19;;5750:220;;;:::o;5976:366::-;;6139:67;6203:2;6198:3;6139:67;:::i;:::-;6132:74;;6215:93;6304:3;6215:93;:::i;:::-;6333:2;6328:3;6324:12;6317:19;;6122:220;;;:::o;6348:366::-;;6511:67;6575:2;6570:3;6511:67;:::i;:::-;6504:74;;6587:93;6676:3;6587:93;:::i;:::-;6705:2;6700:3;6696:12;6689:19;;6494:220;;;:::o;6720:366::-;;6883:67;6947:2;6942:3;6883:67;:::i;:::-;6876:74;;6959:93;7048:3;6959:93;:::i;:::-;7077:2;7072:3;7068:12;7061:19;;6866:220;;;:::o;7092:366::-;;7255:67;7319:2;7314:3;7255:67;:::i;:::-;7248:74;;7331:93;7420:3;7331:93;:::i;:::-;7449:2;7444:3;7440:12;7433:19;;7238:220;;;:::o;7464:366::-;;7627:67;7691:2;7686:3;7627:67;:::i;:::-;7620:74;;7703:93;7792:3;7703:93;:::i;:::-;7821:2;7816:3;7812:12;7805:19;;7610:220;;;:::o;7836:366::-;;7999:67;8063:2;8058:3;7999:67;:::i;:::-;7992:74;;8075:93;8164:3;8075:93;:::i;:::-;8193:2;8188:3;8184:12;8177:19;;7982:220;;;:::o;8208:366::-;;8371:67;8435:2;8430:3;8371:67;:::i;:::-;8364:74;;8447:93;8536:3;8447:93;:::i;:::-;8565:2;8560:3;8556:12;8549:19;;8354:220;;;:::o;8580:366::-;;8743:67;8807:2;8802:3;8743:67;:::i;:::-;8736:74;;8819:93;8908:3;8819:93;:::i;:::-;8937:2;8932:3;8928:12;8921:19;;8726:220;;;:::o;8952:118::-;9039:24;9057:5;9039:24;:::i;:::-;9034:3;9027:37;9017:53;;:::o;9076:112::-;9159:22;9175:5;9159:22;:::i;:::-;9154:3;9147:35;9137:51;;:::o;9194:222::-;;9325:2;9314:9;9310:18;9302:26;;9338:71;9406:1;9395:9;9391:17;9382:6;9338:71;:::i;:::-;9292:124;;;;:::o;9422:210::-;;9547:2;9536:9;9532:18;9524:26;;9560:65;9622:1;9611:9;9607:17;9598:6;9560:65;:::i;:::-;9514:118;;;;:::o;9638:313::-;;9789:2;9778:9;9774:18;9766:26;;9838:9;9832:4;9828:20;9824:1;9813:9;9809:17;9802:47;9866:78;9939:4;9930:6;9866:78;:::i;:::-;9858:86;;9756:195;;;;:::o;9957:419::-;;10161:2;10150:9;10146:18;10138:26;;10210:9;10204:4;10200:20;10196:1;10185:9;10181:17;10174:47;10238:131;10364:4;10238:131;:::i;:::-;10230:139;;10128:248;;;:::o;10382:419::-;;10586:2;10575:9;10571:18;10563:26;;10635:9;10629:4;10625:20;10621:1;10610:9;10606:17;10599:47;10663:131;10789:4;10663:131;:::i;:::-;10655:139;;10553:248;;;:::o;10807:419::-;;11011:2;11000:9;10996:18;10988:26;;11060:9;11054:4;11050:20;11046:1;11035:9;11031:17;11024:47;11088:131;11214:4;11088:131;:::i;:::-;11080:139;;10978:248;;;:::o;11232:419::-;;11436:2;11425:9;11421:18;11413:26;;11485:9;11479:4;11475:20;11471:1;11460:9;11456:17;11449:47;11513:131;11639:4;11513:131;:::i;:::-;11505:139;;11403:248;;;:::o;11657:419::-;;11861:2;11850:9;11846:18;11838:26;;11910:9;11904:4;11900:20;11896:1;11885:9;11881:17;11874:47;11938:131;12064:4;11938:131;:::i;:::-;11930:139;;11828:248;;;:::o;12082:419::-;;12286:2;12275:9;12271:18;12263:26;;12335:9;12329:4;12325:20;12321:1;12310:9;12306:17;12299:47;12363:131;12489:4;12363:131;:::i;:::-;12355:139;;12253:248;;;:::o;12507:419::-;;12711:2;12700:9;12696:18;12688:26;;12760:9;12754:4;12750:20;12746:1;12735:9;12731:17;12724:47;12788:131;12914:4;12788:131;:::i;:::-;12780:139;;12678:248;;;:::o;12932:419::-;;13136:2;13125:9;13121:18;13113:26;;13185:9;13179:4;13175:20;13171:1;13160:9;13156:17;13149:47;13213:131;13339:4;13213:131;:::i;:::-;13205:139;;13103:248;;;:::o;13357:419::-;;13561:2;13550:9;13546:18;13538:26;;13610:9;13604:4;13600:20;13596:1;13585:9;13581:17;13574:47;13638:131;13764:4;13638:131;:::i;:::-;13630:139;;13528:248;;;:::o;13782:419::-;;13986:2;13975:9;13971:18;13963:26;;14035:9;14029:4;14025:20;14021:1;14010:9;14006:17;13999:47;14063:131;14189:4;14063:131;:::i;:::-;14055:139;;13953:248;;;:::o;14207:419::-;;14411:2;14400:9;14396:18;14388:26;;14460:9;14454:4;14450:20;14446:1;14435:9;14431:17;14424:47;14488:131;14614:4;14488:131;:::i;:::-;14480:139;;14378:248;;;:::o;14632:419::-;;14836:2;14825:9;14821:18;14813:26;;14885:9;14879:4;14875:20;14871:1;14860:9;14856:17;14849:47;14913:131;15039:4;14913:131;:::i;:::-;14905:139;;14803:248;;;:::o;15057:419::-;;15261:2;15250:9;15246:18;15238:26;;15310:9;15304:4;15300:20;15296:1;15285:9;15281:17;15274:47;15338:131;15464:4;15338:131;:::i;:::-;15330:139;;15228:248;;;:::o;15482:419::-;;15686:2;15675:9;15671:18;15663:26;;15735:9;15729:4;15725:20;15721:1;15710:9;15706:17;15699:47;15763:131;15889:4;15763:131;:::i;:::-;15755:139;;15653:248;;;:::o;15907:419::-;;16111:2;16100:9;16096:18;16088:26;;16160:9;16154:4;16150:20;16146:1;16135:9;16131:17;16124:47;16188:131;16314:4;16188:131;:::i;:::-;16180:139;;16078:248;;;:::o;16332:222::-;;16463:2;16452:9;16448:18;16440:26;;16476:71;16544:1;16533:9;16529:17;16520:6;16476:71;:::i;:::-;16430:124;;;;:::o;16560:214::-;;16687:2;16676:9;16672:18;16664:26;;16700:67;16764:1;16753:9;16749:17;16740:6;16700:67;:::i;:::-;16654:120;;;;:::o;16780:99::-;;16866:5;16860:12;16850:22;;16839:40;;;:::o;16885:169::-;;17003:6;16998:3;16991:19;17043:4;17038:3;17034:14;17019:29;;16981:73;;;;:::o;17060:305::-;;17119:20;17137:1;17119:20;:::i;:::-;17114:25;;17153:20;17171:1;17153:20;:::i;:::-;17148:25;;17307:1;17239:66;17235:74;17232:1;17229:81;17226:2;;;17313:18;;:::i;:::-;17226:2;17357:1;17354;17350:9;17343:16;;17104:261;;;;:::o;17371:191::-;;17431:20;17449:1;17431:20;:::i;:::-;17426:25;;17465:20;17483:1;17465:20;:::i;:::-;17460:25;;17504:1;17501;17498:8;17495:2;;;17509:18;;:::i;:::-;17495:2;17554:1;17551;17547:9;17539:17;;17416:146;;;;:::o;17568:96::-;;17634:24;17652:5;17634:24;:::i;:::-;17623:35;;17613:51;;;:::o;17670:90::-;;17747:5;17740:13;17733:21;17722:32;;17712:48;;;:::o;17766:126::-;;17843:42;17836:5;17832:54;17821:65;;17811:81;;;:::o;17898:77::-;;17964:5;17953:16;;17943:32;;;:::o;17981:86::-;;18056:4;18049:5;18045:16;18034:27;;18024:43;;;:::o;18073:307::-;18141:1;18151:113;18165:6;18162:1;18159:13;18151:113;;;18250:1;18245:3;18241:11;18235:18;18231:1;18226:3;18222:11;18215:39;18187:2;18184:1;18180:10;18175:15;;18151:113;;;18282:6;18279:1;18276:13;18273:2;;;18362:1;18353:6;18348:3;18344:16;18337:27;18273:2;18122:258;;;;:::o;18386:320::-;;18467:1;18461:4;18457:12;18447:22;;18514:1;18508:4;18504:12;18535:18;18525:2;;18591:4;18583:6;18579:17;18569:27;;18525:2;18653;18645:6;18642:14;18622:18;18619:38;18616:2;;;18672:18;;:::i;:::-;18616:2;18437:269;;;;:::o;18712:180::-;18760:77;18757:1;18750:88;18857:4;18854:1;18847:15;18881:4;18878:1;18871:15;18898:180;18946:77;18943:1;18936:88;19043:4;19040:1;19033:15;19067:4;19064:1;19057:15;19084:102;;19176:2;19172:7;19167:2;19160:5;19156:14;19152:28;19142:38;;19132:54;;;:::o;19192:222::-;19332:34;19328:1;19320:6;19316:14;19309:58;19401:5;19396:2;19388:6;19384:15;19377:30;19298:116;:::o;19420:221::-;19560:34;19556:1;19548:6;19544:14;19537:58;19629:4;19624:2;19616:6;19612:15;19605:29;19526:115;:::o;19647:225::-;19787:34;19783:1;19775:6;19771:14;19764:58;19856:8;19851:2;19843:6;19839:15;19832:33;19753:119;:::o;19878:221::-;20018:34;20014:1;20006:6;20002:14;19995:58;20087:4;20082:2;20074:6;20070:15;20063:29;19984:115;:::o;20105:225::-;20245:34;20241:1;20233:6;20229:14;20222:58;20314:8;20309:2;20301:6;20297:15;20290:33;20211:119;:::o;20336:166::-;20476:18;20472:1;20464:6;20460:14;20453:42;20442:60;:::o;20508:165::-;20648:17;20644:1;20636:6;20632:14;20625:41;20614:59;:::o;20679:227::-;20819:34;20815:1;20807:6;20803:14;20796:58;20888:10;20883:2;20875:6;20871:15;20864:35;20785:121;:::o;20912:182::-;21052:34;21048:1;21040:6;21036:14;21029:58;21018:76;:::o;21100:223::-;21240:34;21236:1;21228:6;21224:14;21217:58;21309:6;21304:2;21296:6;21292:15;21285:31;21206:117;:::o;21329:220::-;21469:34;21465:1;21457:6;21453:14;21446:58;21538:3;21533:2;21525:6;21521:15;21514:28;21435:114;:::o;21555:224::-;21695:34;21691:1;21683:6;21679:14;21672:58;21764:7;21759:2;21751:6;21747:15;21740:32;21661:118;:::o;21785:175::-;21925:27;21921:1;21913:6;21909:14;21902:51;21891:69;:::o;21966:223::-;22106:34;22102:1;22094:6;22090:14;22083:58;22175:6;22170:2;22162:6;22158:15;22151:31;22072:117;:::o;22195:224::-;22335:34;22331:1;22323:6;22319:14;22312:58;22404:7;22399:2;22391:6;22387:15;22380:32;22301:118;:::o;22425:122::-;22498:24;22516:5;22498:24;:::i;:::-;22491:5;22488:35;22478:2;;22537:1;22534;22527:12;22478:2;22468:79;:::o;22553:116::-;22623:21;22638:5;22623:21;:::i;:::-;22616:5;22613:32;22603:2;;22659:1;22656;22649:12;22603:2;22593:76;:::o;22675:122::-;22748:24;22766:5;22748:24;:::i;:::-;22741:5;22738:35;22728:2;;22787:1;22784;22777:12;22728:2;22718:79;:::o

Swarm Source

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