ETH Price: $3,952.60 (-1.00%)

Token

izumi Token (iZi)

Overview

Max Total Supply

200,000,000 iZi

Holders

220,438

Market

Price

$0.0107 @ 0.000003 ETH (-0.44%)

Onchain Market Cap

$2,144,556.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
35.139551006585698902 iZi

Value
$0.38 ( ~9.61391315801269E-05 ETH) [0.0000%]
0x62b8e69f9540305cbcce6a94830597ecaaa8183d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

izumi Finance is a platform providing programmable Liquidity As A Service (LaaS) on Uniswap V3 and Multi-chains, aimed to become the next-generation LaaS to support the future of on-chain liquidity.

Market

Volume (24H):$183,711.00
Market Capitalization:$0.00
Circulating Supply:0.00 iZi
Market Data Source: Coinmarketcap

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
izumiToken

Compiler Version
v0.8.17+commit.8df45f5f

ZkSolc Version
v1.3.5

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at era.zksync.network on 2024-01-03
*/

// 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;
    }
}


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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

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

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

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

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

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


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

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();
  event NotPausable();

  bool public paused = false;
  bool public canPause = true;

  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused || msg.sender == owner());
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
     * @dev called by the owner to pause, triggers stopped state
  **/
  function pause() onlyOwner whenNotPaused public {
    require(canPause == true);
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    require(paused == true);
    paused = false;
    emit Unpause();
  }
  
  /**
   * @dev Prevent the token from ever being paused again
   **/
  function notPausable() onlyOwner public {
    paused = false;
    canPause = false;
    emit NotPausable();
  }
}

/**
 * @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 { }
}


contract OperableToken is ERC20, Ownable, Pausable {
  address public operator;
  mapping(address=>bool) public trusted;

  modifier onlyTrusted {
      require(trusted[msg.sender] || msg.sender == owner(), "not trusted");
      _;
  }
  modifier onlyOperator {
      require(msg.sender == operator, "operator only");
      _;
  }

  constructor(string memory name, string memory symbol) ERC20(name, symbol) {
    operator = msg.sender;
  }

  function transferOperator(address newOperator) public onlyOperator {
    require(newOperator != address(0), "zero operator");
    operator = newOperator;
  }

  function addTrusted(address user) public onlyOperator {
      trusted[user] = true;
  }

  function removeTrusted(address user) public onlyOperator {
      trusted[user] = false;
  }

  function mint(address account, uint amount) public onlyTrusted {
    _mint(account, amount);
  }

  function burn(address account, uint amount) public onlyTrusted {
    _burn(account, amount);
  }

  /**
   * @dev Transfer tokens when not paused
   */
  function transfer(address _to, uint256 _value) public whenNotPaused override returns (bool) {
    return super.transfer(_to, _value);
  }
    
  /**
   * @dev transferFrom function to tansfer tokens when token is not paused
   **/
  function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused override returns (bool) {
    return super.transferFrom(_from, _to, _value);
  }
}

contract izumiToken is OperableToken {
  constructor() OperableToken("izumi Token", "iZi") {}
}

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":[],"name":"NotPausable","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":[],"name":"Pause","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"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addTrusted","outputs":[],"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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"canPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notPausable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeTrusted","outputs":[],"stateMutability":"nonpayable","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":"_value","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":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOperator","type":"address"}],"name":"transferOperator","outputs":[],"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":"trusted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010002537675684e1988edbce54fb17e9f5e938f64f9aaed96923e0b78f9482c00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0002000000000002000500000000000200010000000103550000006001100270000002010010019d0000000101200190000000790000c13d0000008001000039000000400010043f0000000001000031000000040110008c000006840000413d0000000101000367000000000101043b000000e0011002700000020d0210009c000002c80000613d0000020e0210009c000001060000613d0000020f0210009c000001240000613d000002100210009c000002fe0000613d000002110210009c0000034d0000613d000002120210009c0000037f0000613d000002130210009c000003960000613d000002140210009c000003b10000613d000002150210009c000003e40000613d000002160210009c000004130000613d000002170210009c0000013c0000613d000002180210009c000001680000613d000002190210009c000001810000613d0000021a0210009c000004510000613d0000021b0210009c0000019c0000613d0000021c0210009c000001ba0000613d0000021d0210009c000004730000613d0000021e0210009c000001ec0000613d0000021f0210009c000004af0000613d000002200210009c000002050000613d000002210210009c000004ea0000613d000002220210009c000005290000613d000002230210009c000002460000613d000002240210009c000002720000613d000002250210009c0000029d0000613d000002260110009c000006840000c13d0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000ff0000c13d000000800010043f000000000440004c000005c20000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a0040060390000001f01400039000000200200008a000000000221016f0000024201200041000002430110009c000000ec0000413d000000400020043f0000000001020019000500000001001d000000800200003907fd06b10000040f000000050300002900000000023100490000000001030019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000c001000039000000400010043f0000000b01000039000000800010043f0000020201000041000000a00010043f000000400500043d000002030150009c000000ec0000813d0000004001500039000000400010043f00000003060000390000000000650435000000200450003900000204010000410000000000140435000000800700043d000002050170009c000000ec0000213d000000000106041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000000ff0000c13d000000200130008c000500000005001d000400000004001d000300000006001d000200000007001d000000b80000413d000000000060043500000020020000390000000001000019000100000003001d07fd06870000040f00000002070000290000000306000029000000040400002900000005050000290000001f027000390000000502200270000000200370008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000b80000813d000000000001041b0000000101100039000000b30000013d0000001f0170008c000000ce0000a13d00000000006004350000002002000039000100000002001d000000000100001907fd06870000040f000000010700002900000002060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b0000008004700039000000d90000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000000c50000013d000000000170004c0000000001000019000000d20000613d000000a00100043d0000000302700210000000010300008a000000000223022f000000000232013f000000000221016f0000000101700210000000e70000013d000000000262004b000000e30000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b0000000101000039000000010260021000000004040000290000000306000029000000000112019f000000000016041b0000000006050433000002050160009c000000f30000a13d0000023b0100004100000000001004350000004101000039000000040010043f0000002402000039000000000100001907fd06a80000040f0000000405000039000000000105041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000005500000613d0000023b0100004100000000001004350000002201000039000000040010043f0000002402000039000000000100001907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f00000024020000390000000102200367000000000302043b0000000002010019000000000100041107fd07020000040f0000000102000039000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000201000039000000000201041a000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000500000001001d000000000101041a000400000001001d00000228011001970000000002000411000000000121004b0000000001000019000000010100603907fd06d90000040f000000040100002900000209011001970000000502000029000000000012041b00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d0200003900000001030000390000023a0400004107fd07f30000040f0000000101200190000004ab0000c13d000006840000013d0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000601000039000000000101041a0000022802100197000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000000000101041a0000022c011001980000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f00000228011001970000000000100435000000200000043f0000004002000039000000000100001907fd06870000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000400000001001d000000000101041a000300000001001d0000022802100197000500000002001d0000000001000411000000000112004b0000000001000019000000010100603907fd06d90000040f00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d02000039000000030300003900000207040000410000000505000029000000000600001907fd07f30000040f0000000101200190000006840000613d00000003010000290000020b011001970000000402000029000000000012041b00000000010000190000000002000019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000000000101041a0000022802100197000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000001010003670000000402100370000000000202043b000500000002001d000002280220009c000006840000213d0000002401100370000000000101043b000400000001001d0000000001000411000300000001001d00000000001004350000000701000039000000200010043f0000004002000039000000000100001907fd06870000040f000000000101041a000000ff01100190000002310000c13d0000000501000039000000000101041a00000228011001970000000302000029000000000112004b0000000001000019000000010100603907fd07640000040f0000000503000029000000000130004c000005cd0000c13d000000400100043d0000006402100039000002330300004100000000003204350000004402100039000002340300004100000000003204350000002402100039000000210300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f000500000001001d0000000601000039000000000101041a00000228011001970000000002000411000000000112004b0000000001000019000000010100603907fd07530000040f0000000501000029000002280110019700000000001004350000000701000039000000200010043f0000004002000039000000000100001907fd06870000040f000001000200008a000000000301041a000000000223016f00000001022001bf000000000021041b00000000010000190000000002000019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f000500000001001d0000000601000039000000000101041a00000228011001970000000002000411000000000112004b0000000001000019000000010100603907fd07530000040f0000000501000029000002280110019700000000001004350000000701000039000000200010043f0000004002000039000000000100001907fd06870000040f000001000200008a000000000301041a000000000223016f000000000021041b00000000010000190000000002000019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f000500000001001d07fd06d00000040f0000000502000029000002280220019700000000002004350000000102000039000000200020043f000400000001001d0000004002000039000500000002001d000000000100001907fd06870000040f000000040200002900000228022001970000000000200435000000200010043f0000000001000019000000050200002907fd06870000040f000000000201041a000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000004010000390000000101100367000000000101043b000500000001001d000002280110009c000006840000213d0000000501000039000300000001001d000000000101041a000200000001001d00000228021001970000000001000411000400000002001d000000000112004b0000000001000019000000010100603907fd06d90000040f0000000501000029000000000110004c000005e70000c13d000000400100043d00000064021000390000022903000041000000000032043500000044021000390000022a0300004100000000003204350000002402100039000000260300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000600310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000001010003670000000402100370000000000202043b0000000004020019000002280220009c000006840000213d0000002402100370000000000202043b000002280320009c000006840000213d0000004401100370000000000501043b0000000501000039000000000101041a0000022c03100198000003230000613d00000228011001970000000003000411000000000113004b000006840000c13d0000000001040019000500000001001d0000000003050019000400000003001d07fd07750000040f000000050100002900000000001004350000000101000039000200000001001d000000200010043f0000004002000039000300000002001d000000000100001907fd06870000040f0000000002000411000100000002001d0000000000200435000000200010043f0000000001000019000000030200002907fd06870000040f0000000402000029000000000101041a000000000321004b000006630000813d000000400100043d00000064021000390000023f0300004100000000003204350000004402100039000002400300004100000000003204350000002402100039000000280300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000004010000390000000101100367000000000101043b000500000001001d000002280110009c000006840000213d0000000601000039000400000001001d000000000101041a000300000001001d00000228011001970000000002000411000000000112004b0000000001000019000000010100603907fd07530000040f0000000502000029000000000120004c000005ff0000c13d000000400100043d00000044021000390000023e03000041000000000032043500000024021000390000000d0300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000640200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d000000400100043d000000120200003900000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000000000101041a00000236011001980000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f0000000002000411000300000002001d00000000002004350000000102000039000400000002001d000000200020043f000500000001001d0000004002000039000200000002001d000000000100001907fd06870000040f000000050200002900000228022001970000000000200435000000200010043f0000000001000019000000020200002907fd06870000040f00000024020000390000000102200367000000000202043b000000000101041a07fd06e90000040f00000000030100190000000301000029000000050200002907fd07020000040f000000400100043d000000040200002900000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000400000001001d000000000101041a000500000001001d00000228011001970000000002000411000000000121004b0000000001000019000000010100603907fd06d90000040f000000050100002900000000020100190000022c01100198000006840000613d00000237012001970000000402000029000000000012041b00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d0200003900000001030000390000023d0400004107fd07f30000040f0000000101200190000006840000613d000004ab0000013d0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000001010003670000000402100370000000000202043b000500000002001d000002280220009c000006840000213d0000002401100370000000000101043b000400000001001d0000000001000411000300000001001d00000000001004350000000701000039000000200010043f0000004002000039000000000100001907fd06870000040f000000000101041a000000ff011001900000043f0000c13d0000000501000039000000000101041a00000228011001970000000302000029000000000112004b0000000001000019000000010100603907fd07640000040f0000000501000029000000000110004c000006080000c13d000000400100043d00000044021000390000023c03000041000000000032043500000024021000390000001f0300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000640200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000200310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d07fd06c70000040f000002280110019700000000001004350000000701000039000000200010043f0000004002000039000000000100001907fd06870000040f000000000101041a000000ff011001900000000002000019000000010200c039000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000501000039000300000001001d000000000101041a000500000001001d00000228011001970000000002000411000000000121004b00000000010000190000000101006039000400000001001d07fd06d90000040f00000005040000290000022c01400198000000000100001900000001010060390000000402000029000000000221019f000000000304001900000236014001970000000102200190000006840000613d000000000110004c000006840000613d000002370130019700000238011001c70000000302000029000000000012041b00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d020000390000000103000039000002390400004107fd07f30000040f0000000101200190000006840000613d00000000010000190000000002000019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000000310004c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000223013f0000000102200190000000ff0000c13d000000400200043d0000000000120435000000000550004c000006360000c13d000001000400008a000000000343016f00000020042000390000000000340435000000000110004c000000200300003900000000030060190000003f01300039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000002050310009c000000ec0000213d0000000103400190000000ec0000c13d000000400010043f000500000001001d07fd06b10000040f000000050300002900000000023100490000000001030019000000000300001907fd069e0000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000001010003670000000402100370000000000202043b000500000002001d000002280220009c000006840000213d0000002401100370000000000101043b000400000001001d0000000001000411000100000001001d00000000001004350000000101000039000200000001001d000000200010043f0000004002000039000300000002001d000000000100001907fd06870000040f00000005020000290000000000200435000000200010043f0000000001000019000000030200002907fd06870000040f0000000402000029000000000101041a000000000321004b000006420000813d000000400100043d00000064021000390000022d03000041000000000032043500000044021000390000022e0300004100000000003204350000002402100039000000250300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000000001000416000000000110004c000006840000c13d000000040100008a00000000011000310000022702000041000000400310008c000000000300001900000000030240190000022701100197000000000410004c000000000200a019000002270110009c00000000010300190000000001026019000000000110004c000006840000c13d00000001030003670000000401300370000000000201043b000002280120009c000006840000213d00000000010004110000000504000039000000000504041a00000228045001970000022c05500198000005470000613d000000000441004b000006840000c13d0000002403300370000000000303043b07fd07750000040f0000000102000039000000400100043d00000000002104350000002002000039000000000300001907fd069e0000040f000000200130008c000300000005001d000200000006001d0000056b0000413d000000000050043500000020020000390000000001000019000100000003001d07fd06870000040f0000000206000029000000030500002900000004040000290000001f026000390000000502200270000000200360008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b0000056b0000813d000000000001041b0000000101100039000005660000013d0000001f0160008c000005810000a13d00000000005004350000002002000039000400000002001d000000000100001907fd06870000040f000000040700002900000002060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b00000000045700190000058c0000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000005780000013d000000000160004c0000000001000019000005850000613d00000000010404330000000302600210000000010300008a000000000223022f000000000232013f000000000221016f0000000101600210000005990000013d000000000262004b000005960000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000305000029000000000112019f000000000015041b0000000501000039000500000001001d000000000101041a000400000001001d00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d020000390000000303000039000002070400004100000000060004110000000005000019000300000006001d07fd07f30000040f0000000101200190000006840000613d0000000401000029000002080110019700000003030000290000020902300197000000000121019f0000020a011001c70000000502000029000000000012041b0000000601000039000000000201041a0000020b02200197000000000232019f000000000021041b000000200100003900000100001004430000012000000443000001000100003900000040020000390000020c0300004107fd069e0000040f000000000030043500000241020000410000000003000019000000a004300039000000000513004b000000690000813d000000000502041a000000000054043500000020033000390000000102200039000005c50000013d0000000000300435000000200000043f0000004002000039000000000100001907fd06870000040f000000000201041a0000000401000029000000000112004b0000064d0000813d000000400100043d0000006402100039000002310300004100000000003204350000004402100039000002320300004100000000003204350000002402100039000000220300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f00000201010000410000000002000414000002010320009c0000000001024019000000c00110021000000206011001c70000800d02000039000000030300003900000207040000410000000405000029000000050600002907fd07f30000040f0000000101200190000006840000613d00000002010000290000020b011001970000000502000029000000000121019f0000000302000029000000000012041b00000000010000190000000002000019000000000300001907fd069e0000040f00000003010000290000020b01100197000000000121019f0000000402000029000000000012041b00000000010000190000000002000019000000000300001907fd069e0000040f0000000201000039000000000301041a00000004020000290000000002230019000000000332004b0000000003000019000000010300403900000001033001900000065c0000c13d000000000021041b00000005010000290000000000100435000000200000043f0000004002000039000000000100001907fd06870000040f0000000404000029000000000301041a0000000002430019000000000332004b0000000003000019000000010300403900000001033001900000065c0000c13d000000000021041b000000400100043d000000000041043500000201020000410000000003000414000002010430009c0000000003028019000002010410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d02000039000000030300003900000230040000410000000005000019000000050600002907fd07f30000040f0000000101200190000004ab0000c13d000006840000013d0000000000400435000002350400004100000020052000390000000003000019000000000613004b000004d70000813d0000000006350019000000000704041a0000000000760435000000200330003900000001044000390000063a0000013d07fd06f70000040f00000000030100190000000101000029000000050200002907fd07020000040f000000400100043d000000020200002900000000002104350000002002000039000000000300001907fd069e0000040f00000005010000290000000000100435000000200000043f000300000002001d0000004002000039000000000100001907fd06870000040f000000040400002900000003020000290000000002420049000000000021041b0000000201000039000000000201041a000000000342004b0000066e0000813d0000023b0100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001907fd06a80000040f07fd06f70000040f00000000030100190000000501000029000000010200002907fd07020000040f000000400100043d000000020200002900000000002104350000002002000039000000000300001907fd069e0000040f0000000002420049000000000021041b000000400100043d000000000041043500000201020000410000000003000414000002010430009c0000000003028019000002010410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d02000039000000030300003900000230040000410000000505000029000000000600001907fd07f30000040f0000000101200190000004ab0000c13d0000000001000019000000000200001907fd06a80000040f0000020103000041000002010410009c00000000010380190000004001100210000002010420009c00000000020380190000006002200210000000000112019f0000000002000414000002010420009c0000000002038019000000c002200210000000000112019f00000206011001c7000080100200003907fd07f80000040f00000001022001900000069b0000613d000000000101043b000000000001042d0000000001000019000000000200001907fd06a80000040f0000020104000041000002010510009c000000000104801900000040011002100000000001310019000002010320009c000000000204801900000060022002100000000001210019000007fe0001042e0000020103000041000002010420009c0000000002038019000002010410009c000000000103801900000040011002100000006002200210000000000112019f000007ff000104300000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000006c00000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000006b80000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000101100367000000000101043b000002380210009c000006cd0000813d000000000001042d0000000001000019000000000200001907fd06a80000040f00000024010000390000000101100367000000000101043b000002380210009c000006d60000813d000000000001042d0000000001000019000000000200001907fd06a80000040f000000000110004c000006dc0000613d000000000001042d000000400100043d0000004402100039000002440300004100000000003204350000022b02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000000640200003907fd06a80000040f0000000001120019000000000221004b000000000200001900000001020040390000000102200190000006f00000c13d000000000001042d0000023b0100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001907fd06a80000040f000000000321004b000006fb0000413d0000000001210049000000000001042d0000023b0100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001907fd06a80000040f000400000000000200000228041001980000072e0000613d000300000003001d0000022801200198000400000001001d0000073f0000613d00000000004004350000000101000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d07fd06870000040f00000004020000290000000000200435000000200010043f0000000001000019000000010200002907fd06870000040f0000000302000029000000000021041b000000400100043d000000000021043500000201020000410000000003000414000002010430009c0000000003028019000002010410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d02000039000000030300003900000245040000410000000205000029000000040600002907fd07f30000040f0000000101200190000007500000613d000000000001042d000000400100043d0000006402100039000002480300004100000000003204350000004402100039000002490300004100000000003204350000002402100039000000240300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f000000400100043d0000006402100039000002460300004100000000003204350000004402100039000002470300004100000000003204350000002402100039000000220300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000000001000019000000000200001907fd06a80000040f000000000110004c000007560000613d000000000001042d000000400100043d00000044021000390000024a03000041000000000032043500000024021000390000000d0300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000640200003907fd06a80000040f000000000110004c000007670000613d000000000001042d000000400100043d00000044021000390000024b03000041000000000032043500000024021000390000000b0300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000640200003907fd06a80000040f00050000000000020000022804100198000007b60000613d000500000003001d0000022801200198000400000001001d000007c70000613d0000000000400435000000200000043f00000040020000390000000001000019000300000004001d07fd06870000040f000000000201041a0000000501000029000200000002001d000000000112004b000007d80000413d00000003010000290000000000100435000000200000043f0000004002000039000100000002001d000000000100001907fd06870000040f000000050300002900000002020000290000000002320049000000000021041b000000040100002900000000001004350000000001000019000000010200002907fd06870000040f000000000301041a00000005040000290000000002430019000000000332004b0000000003000019000000010300403900000001033001900000000003040019000007e90000c13d000000000021041b000000400100043d000000000031043500000201020000410000000003000414000002010430009c0000000003028019000002010410009c00000000010280190000004001100210000000c002300210000000000112019f0000022f011001c70000800d02000039000000030300003900000230040000410000000305000029000000040600002907fd07f30000040f0000000101200190000007f00000613d000000000001042d000000400100043d0000006402100039000002500300004100000000003204350000004402100039000002510300004100000000003204350000002402100039000000250300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f000000400100043d00000064021000390000024e03000041000000000032043500000044021000390000024f0300004100000000003204350000002402100039000000230300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f000000400100043d00000064021000390000024c03000041000000000032043500000044021000390000024d0300004100000000003204350000002402100039000000260300003900000000003204350000022b020000410000000000210435000000040210003900000020030000390000000000320435000000840200003907fd06a80000040f0000023b0100004100000000001004350000001101000039000000040010043f0000002402000039000000000100001907fd06a80000040f0000000001000019000000000200001907fd06a80000040f000007f6002104210000000102000039000000000001042d0000000002000019000007f50000013d000007fb002104230000000102000039000000000001042d0000000002000019000007fa0000013d000007fd00000432000007fe0001042e000007ff00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff697a756d6920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc0695a690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ffffffffffffffffffff00000000000000000000000000000000000000000000ffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff0000000000000000000001000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd0000000000000000000000000000000000000000000000000000000029605e7700000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000323be1c50000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000040c10f19000000000000000000000000000000000000000000000000000000004be8b05e00000000000000000000000000000000000000000000000000000000570ca735000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000006e9821c20000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000009dc29fac00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000d4d0d6e600000000000000000000000000000000000000000000000000000000d55e62a000000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000006fdde038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206108c379a0000000000000000000000000000000000000000000000000000000000000000000000000000000ff0000000000000000000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265738a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b00000000000000000000ff000000000000000000000000000000000000000000ffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff00000000000000000000000100000000000000000000000000000000000000006985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff625aff39f66825d4448497d384dee3f4a3adf00a622960add00806503ae4ccee01c4e487b710000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f2061646472657373007805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b337a65726f206f70657261746f72000000000000000000000000000000000000006c6c6f77616e636500000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732061c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000804f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f206164646f70657261746f72206f6e6c79000000000000000000000000000000000000006e6f742074727573746564000000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061640000000000000000000000000000000000000000000000000000000000000000

[ 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.