ETH Price: $3,195.47 (-1.86%)

Token

Karat Token (KAT)

Overview

Max Total Supply

1,960,109,651.600824167632228961 KAT

Holders

75,697

Market

Price

$0.00 @ 0.000000 ETH (-1.83%)

Onchain Market Cap

$1,514,400.32

Circulating Supply Market Cap

$845,062.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Odos: Router V2
Balance
2,425.171431206913692728 KAT

Value
$1.87 ( ~0.000585203771573515 ETH) [0.0001%]
0x4bba932e9792a2b917d47830c93a9bc79320e4f7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Aims to revolutionize and simplify how projects & individuals are able to utilize the vast network of on-chain data.

Market

Volume (24H):$48,492.00
Market Capitalization:$845,062.00
Circulating Supply:1,090,715,670.00 KAT
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:
KaratToken

Compiler Version
v0.8.18+commit.87f61d96

ZkSolc Version
v1.3.13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 6 : KaratToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract KaratToken is ERC20, ERC20Burnable {

    uint256 public TOTAL_SUPPLY = 2_000_000_000e18; // Two Billion Karat Token

    constructor(address to) ERC20("Karat Token", "KAT") {
        _mint(to, TOTAL_SUPPLY);
    }
}

File 2 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 3 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 4 of 6 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";
import "../../../utils/Context.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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

File 5 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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) {
        return msg.data;
    }
}

Settings
{
  "compilerPath": "/Users/canp0y/Library/Caches/hardhat-nodejs/compilers-v2/zksolc/zksolc-v1.3.13",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "3"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"to","type":"address"}],"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":"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":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"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"}]

9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001eb0230bdb14fdf6d6ea51cea085daa7ab270bcc7528f1b0153d1d24add00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000020000000000000000000000000b37f2bc6dbc44d6e9d42eb2c890e9a7ca2d68196

Deployed Bytecode

0x0002000000000002000900000000000200010000000103550000006001100270000001aa0010019d0000000101200190000000330000c13d0000008001000039000000400010043f0000000001000031000000040110008c000003190000413d0000000101000367000000000101043b000000e001100270000001bc0210009c000000430000213d000001c60210009c0000014b0000a13d000001c70210009c0000018d0000213d000001ca0210009c000001de0000613d000001cb0110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000000301004b00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d000000400100043d00000012020000390000000000210435000001aa02000041000001aa0310009c00000000010280190000004001100210000001cf011001c7000006a20001042e0000000001000416000000000101004b000003190000c13d00000000010000310000009f02100039000000200800008a000000000282016f000001ab03200041000001ac0330009c0000009d0000213d000001d40100004100000000001004350000004101000039000000040010043f000001d501000041000006a300010430000001bd0210009c0000016c0000a13d000001be0210009c000001a90000213d000001c10210009c0000020c0000613d000001c20110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001010003670000000402100370000000000202043b000900000002001d000001ae0220009c000003190000213d0000002401100370000000000101043b000800000001001d0000000001000411000600000001001d00000000001004350000000101000039000700000001001d000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000003190000613d000000000101043b00000009020000290000000000200435000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000003190000613d000000000101043b000000000101041a0000000803000029000000000231004b000003ee0000813d000000400100043d0000006402100039000001d00300004100000000003204350000004402100039000001d1030000410000000000320435000000240210003900000025030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400020043f0000001f0210018f00000001030003670000000504100272000000ab0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000a30000413d000000000502004b000000ba0000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f0000000000240435000001ad02000041000000200310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d000000800100043d000001ae06100197000001ae0110009c000003190000213d000000400900043d000001af0190009c0000003d0000213d0000004001900039000000400010043f0000000b01000039000000000b190436000001b00100004100000000001b0435000000400700043d000001af0170009c0000003d0000213d0000004001700039000000400010043f00000003050000390000000004570436000001b1010000410000000000140435000000000a090433000001b201a0009c0000003d0000213d000000000105041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b000002520000c13d000000200130008c000700000007001d000900000006001d000800000008001d000600000004001d000001180000413d000100000003001d00020000000b001d00030000000a001d000400000009001d000500000005001d0000000000500435000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b3011001c7000080100200003906a1069c0000040f000000080800002900000009060000290000000102200190000003190000613d000000030a0000290000001f02a0003900000005022002700000002003a0008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000000707000029000000060400002900000005050000290000000409000029000000020b000029000001180000813d000000000002041b0000000102200039000000000312004b000001140000413d0000001f01a0008c0000037c0000a13d00030000000a001d000400000009001d000500000005001d0000000000500435000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b3011001c7000080100200003906a1069c0000040f000000080800002900000009060000290000000102200190000003190000613d000000030a00002900000000038a01700000002002000039000000000101043b000000070700002900000004090000290000013b0000613d0000002002000039000000000400001900000000059200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001330000413d0000000003a3004b000001460000813d0000000303a00210000000f80330018f000000010400008a000000000334022f000000000343013f00000000029200190000000002020433000000000232016f000000000021041b0000000101a0021000000001011001bf00000006040000290000000505000029000003870000013d000001cc0210009c000002340000613d000001cd0210009c000002580000613d000001ce0110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000000301004b00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d0000000201000039000000000101041a000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e000001c30210009c0000027b0000613d000001c40210009c0000029f0000613d000001c50110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000000301004b00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d0000000501000039000000000101041a000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e000001c80210009c000002c00000613d000001c90110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000200310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000004010000390000000101100367000000000201043b000000000100041106a106290000040f0000000001000019000006a20001042e000001bf0210009c000003030000613d000001c00110009c000003190000c13d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001020003670000000401200370000000000101043b000001ae0310009c000003190000213d0000002402200370000000000302043b000001ae0230009c000003190000213d00000000001004350000000101000039000000200010043f0000004002000039000900000002001d0000000001000019000800000003001d06a1045c0000040f00000008020000290000000000200435000000200010043f0000000001000019000000090200002906a1045c0000040f000000000101041a000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000600310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001030003670000000402300370000000000102043b000001ae0210009c000003190000213d0000002402300370000000000402043b000001ae0240009c000003190000213d0000004402300370000000000302043b000900000003001d0000000002000411000800000001001d000700000004001d06a105820000040f00000008010000290000000702000029000000090300002906a104880000040f0000000101000039000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000000301004b00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d0000000405000039000000000405041a000000010640019000000001014002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000224013f0000000102200190000002520000c13d000000400200043d0000000003120436000000000606004b000003320000c13d000001000500008a000000000454016f0000000000430435000000000101004b000000200400003900000000040060190000033f0000013d0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000000301004b00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f000000000601001900000000060560190000001f0560008c00000000050000190000000105002039000000000552013f00000001055001900000031b0000613d000001d40100004100000000001004350000002201000039000000040010043f000001d501000041000006a3000104300000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001010003670000000402100370000000000202043b000001ae0320009c000003190000213d0000002401100370000000000301043b000000000100041106a1051b0000040f0000000101000039000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000200310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000004010000390000000101100367000000000101043b000001ae0210009c000003190000213d0000000000100435000000200000043f0000004002000039000000000100001906a1045c0000040f000000000101041a000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001030003670000000402300370000000000102043b000001ae0210009c000003190000213d0000002402300370000000000302043b000800000003001d0000000002000411000900000001001d06a105820000040f0000000901000029000000080200002906a106290000040f0000000001000019000006a20001042e0000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000004010000390000000101100367000000000101043b000900000001001d000001ae0110009c000003190000213d0000000001000411000700000001001d00000000001004350000000101000039000800000001001d000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000003190000613d000000000101043b00000009020000290000000000200435000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000003190000613d000000000101043b000000000101041a00000024020000390000000102200367000000000202043b000000000312001a000002fd0000413d000003fb0000013d000001d40100004100000000001004350000001101000039000000040010043f000001d501000041000006a3000104300000000001000416000000000101004b000003190000c13d000000040100008a0000000001100031000001ad02000041000000400310008c00000000030000190000000003024019000001ad01100197000000000401004b000000000200a019000001ad0110009c00000000010300190000000001026019000000000101004b000003190000c13d00000001010003670000000402100370000000000202043b000001ae0320009c000003250000a13d0000000001000019000006a300010430000000800060043f000000000404004b000003580000c13d000001000300008a000000000232016f000000a00020043f000000000106004b000000c001000039000000a001006039000003670000013d0000002401100370000000000301043b000000000100041106a104880000040f0000000101000039000000400200043d0000000000120435000001aa01000041000001aa0320009c00000000010240190000004001100210000001cf011001c7000006a20001042e0000000000500435000000000401004b00000000040000190000033f0000613d000001d30500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000614004b000003380000413d0000003f01400039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000001b20310009c0000003d0000213d00000001034001900000003d0000c13d000000400010043f000900000001001d06a104720000040f00000009040000290000000001410049000001aa02000041000001aa0310009c0000000001028019000001aa0340009c000000000204401900000040022002100000006001100210000000000121019f000006a20001042e0000000000300435000000a001000039000000000206004b0000036d0000613d000001d60200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b0000035e0000413d000000c0013000390000001f01100039000000200200008a000000000121016f000001ab02100041000001d70220009c0000003d0000413d000900000001001d000000400010043f000000800200003906a104720000040f00000009040000290000000001410049000001aa02000041000001aa0310009c0000000001028019000001aa0340009c000000000204401900000040022002100000006001100210000000000121019f000006a20001042e00000000010a004b0000000001000019000003800000613d00000000010b04330000000302a00210000000010300008a000000000223022f000000000232013f000000000121016f0000000102a00210000000000121019f000000000015041b0000000007070433000001b20170009c0000003d0000213d0000000405000039000000000105041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000002520000c13d000000200130008c000003bc0000413d000300000003001d000500000007001d000400000005001d0000000000500435000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b3011001c7000080100200003906a1069c0000040f000000080800002900000009060000290000000102200190000003190000613d00000005070000290000001f027000390000000502200270000000200370008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b00000006040000290000000405000029000003bc0000813d000000000002041b0000000102200039000000000312004b000003b80000413d0000001f0170008c000004070000a13d000500000007001d000400000005001d0000000000500435000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b3011001c7000080100200003906a1069c0000040f00000001022001900000000802000029000003190000613d000000050300002900000000032301700000002002000039000000000101043b0000000706000029000003dc0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000003d40000413d0000000505000029000000000353004b000003e90000813d0000000303500210000000f80330018f000000010400008a000000000334022f000000000343013f000000070400002900000000024200190000000002020433000000000232016f000000000021041b000000010150021000000001011001bf00000009030000290000000405000029000004130000013d00000000033100490000000601000029000000090200002906a1051b0000040f000000400100043d00000007020000290000000000210435000001aa02000041000001aa0310009c00000000010280190000004001100210000001cf011001c7000006a20001042e0000000701000029000000090200002906a1051b0000040f000000400100043d00000008020000290000000000210435000001aa02000041000001aa0310009c00000000010280190000004001100210000001cf011001c7000006a20001042e000000000107004b00000000010000190000040b0000613d00000000010404330000000302700210000000010300008a000000000223022f000000000232013f000000000121016f0000000102700210000000000121019f0000000903000029000000000015041b000001b4010000410000000502000039000000000012041b000000000103004b0000042b0000c13d000000400100043d0000004402100039000001b903000041000000000032043500000024021000390000001f030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001bb011001c7000006a3000104300000000201000039000000000201041a000001b50320009c000002fd0000813d000001b402200041000000000021041b00000009010000290000000000100435000000200000043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f00000009060000290000000102200190000003190000613d000000000101043b000000000201041a000001b402200041000000000021041b000001b401000041000000400200043d0000000000120435000001aa010000410000000003000414000001aa0430009c0000000003018019000001aa0420009c00000000010240190000004001100210000000c002300210000000000121019f000001b3011001c70000800d020000390000000303000039000001b704000041000000000500001906a106970000040f0000000101200190000003190000613d000000200100003900000100001004430000012000000443000001b801000041000006a20001042e000001aa03000041000001aa0410009c00000000010380190000004001100210000001aa0420009c00000000020380190000006002200210000000000112019f0000000002000414000001aa0420009c0000000002038019000000c002200210000000000112019f000001d8011001c7000080100200003906a1069c0000040f0000000102200190000004700000613d000000000101043b000000000001042d0000000001000019000006a30001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000403004b000004810000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b0000047a0000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0004000000000002000400000003001d000001ae01100198000004dc0000613d000001ae02200198000200000002001d000004f10000613d000300000001001d0000000000100435000000200000043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000004da0000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b000005060000413d00000003010000290000000000100435000000200000043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000004da0000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b00000002010000290000000000100435000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000004da0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d0000000000310435000001aa020000410000000003000414000001aa0430009c0000000003028019000001aa0410009c00000000010280190000004001100210000000c002300210000000000112019f000001b3011001c70000800d020000390000000303000039000001b7040000410000000305000029000000020600002906a106970000040f0000000101200190000004da0000613d000000000001042d0000000001000019000006a300010430000000400100043d0000006402100039000001dd0300004100000000003204350000004402100039000001de030000410000000000320435000000240210003900000025030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400100043d0000006402100039000001db0300004100000000003204350000004402100039000001dc030000410000000000320435000000240210003900000023030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400100043d0000006402100039000001d90300004100000000003204350000004402100039000001da030000410000000000320435000000240210003900000026030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a3000104300003000000000002000001ae01100198000005580000613d000200000003001d000001ae02200198000300000002001d0000056d0000613d000100000001001d00000000001004350000000101000039000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f00000001022001900000000304000029000005560000613d000000000101043b0000000000400435000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f00000003060000290000000102200190000005560000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001aa020000410000000003000414000001aa0430009c0000000003028019000001aa0410009c00000000010280190000004001100210000000c002300210000000000112019f000001b3011001c70000800d020000390000000303000039000001df04000041000000010500002906a106970000040f0000000101200190000005560000613d000000000001042d0000000001000019000006a300010430000000400100043d0000006402100039000001e20300004100000000003204350000004402100039000001e3030000410000000000320435000000240210003900000024030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400100043d0000006402100039000001e00300004100000000003204350000004402100039000001e1030000410000000000320435000000240210003900000022030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a3000104300005000000000002000300000003001d000400000002001d000001ae01100197000500000001001d00000000001004350000000101000039000100000001001d000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000005eb0000613d000000000101043b0000000402000029000001ae02200197000400000002001d0000000000200435000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000005eb0000613d000000000101043b000000000201041a000000010100008a000200000002001d000000000112004b000005ea0000613d00000003010000290000000202000029000000000112004b000005ed0000413d0000000501000029000000000101004b000005ff0000613d0000000401000029000000000101004b000006140000613d000000050100002900000000001004350000000101000029000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000005eb0000613d000000000101043b00000004020000290000000000200435000000200010043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f0000000102200190000005eb0000613d000000030200002900000002030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000001aa020000410000000003000414000001aa0430009c0000000003028019000001aa0410009c00000000010280190000004001100210000000c002300210000000000112019f000001b3011001c70000800d020000390000000303000039000001df040000410000000505000029000000040600002906a106970000040f0000000101200190000005eb0000613d000000000001042d0000000001000019000006a300010430000000400100043d0000004402100039000001e403000041000000000032043500000024021000390000001d030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001bb011001c7000006a300010430000000400100043d0000006402100039000001e20300004100000000003204350000004402100039000001e3030000410000000000320435000000240210003900000024030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400100043d0000006402100039000001e00300004100000000003204350000004402100039000001e1030000410000000000320435000000240210003900000022030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a3000104300003000000000002000300000002001d000001ae041001980000066d0000613d0000000000400435000000200000043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c70000801002000039000200000004001d06a1069c0000040f00000001022001900000066b0000613d0000000202000029000000000101043b000000000301041a0000000301000029000100000003001d000000000113004b000006820000413d0000000000200435000000200000043f000001aa010000410000000002000414000001aa0320009c0000000001024019000000c001100210000001b6011001c7000080100200003906a1069c0000040f00000001022001900000066b0000613d000000030300002900000001020000290000000002320049000000000101043b000000000021041b0000000201000039000000000201041a0000000002320049000000000021041b000000400100043d0000000000310435000001aa020000410000000003000414000001aa0430009c0000000003028019000001aa0410009c00000000010280190000004001100210000000c002300210000000000112019f000001b3011001c70000800d020000390000000303000039000001b7040000410000000205000029000000000600001906a106970000040f00000001012001900000066b0000613d000000000001042d0000000001000019000006a300010430000000400100043d0000006402100039000001e70300004100000000003204350000004402100039000001e8030000410000000000320435000000240210003900000021030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a300010430000000400100043d0000006402100039000001e50300004100000000003204350000004402100039000001e6030000410000000000320435000000240210003900000022030000390000000000320435000001ba020000410000000000210435000000040210003900000020030000390000000000320435000001aa02000041000001aa0310009c00000000010280190000004001100210000001d2011001c7000006a3000104300000069a002104210000000102000039000000000001042d0000000002000019000000000001042d0000069f002104230000000102000039000000000001042d0000000002000019000000000001042d000006a100000432000006a20001042e000006a300010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf4b6172617420546f6b656e0000000000000000000000000000000000000000004b41540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000006765c793fa10079d0000000fffffffffffffffffffffffffffffffffffffffff989a386c05eff86300000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a082300000000000000000000000000000000000000000000000000000000095d89b4000000000000000000000000000000000000000000000000000000000a9059cba00000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000079cc679000000000000000000000000000000000000000000000000000000000902d55a50000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000003950935000000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff00000000000000800200000000000000000000000000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000636500000000000000000000000000000000000000000000000000000000000045524332303a206275726e20616d6f756e7420657863656564732062616c616e730000000000000000000000000000000000000000000000000000000000000045524332303a206275726e2066726f6d20746865207a65726f206164647265730000000000000000000000000000000000000000000000000000000000000000ef49a2ac801cb8fc575b4048249df623c9dc106b3556c2e8a7a24181ababafa3

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0x000000000000000000000000b37f2bc6dbc44d6e9d42eb2c890e9a7ca2d68196

-----Decoded View---------------
Arg [0] : to (address): 0xb37F2bC6DbC44d6E9D42eB2C890E9a7CA2d68196

-----Encoded View---------------


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