ERC-20
Overview
Max Total Supply
100,000,000 $KANA
Holders
7,581
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
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 Name:
KToken
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.10
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract KToken is Ownable, ERC20 { uint256 public constant MAX_SUPPLY = 100000000 * 1e18; /* * Creates a token * @param _name Token name * @param _symbol Token symbol */ constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol){ _mint(msg.sender, MAX_SUPPLY); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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 {} }
// 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); }
// 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); }
// 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; } }
{ "compilerPath": "", "experimental": {}, "optimizer": { "enabled": true, "mode": "3" } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010001ff76c97e46e07b8befb4145a5cfa506a5bf657a2a564523261ba7b1be4000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4b616e6e61676920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005244b414e41000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0002000000000002000a00000000000200010000000103550000006001100270000001c00010019d0000008001000039000000400010043f0000000101200190000000400000c13d0000000001000031000000040110008c000003d30000413d0000000101000367000000000101043b000000e001100270000001d00210009c0000015f0000a13d000001d10210009c000001810000213d000001d70210009c000001cb0000213d000001da0210009c000002760000613d000001db0110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d000000000100041a000001c5021001970000000005000411000000000252004b000003d50000c13d000001c301100197000000000010041b000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c4011001c70000800d020000390000000303000039000001c604000041000000000600001906fc06f20000040f0000000101200190000003d30000613d0000000001000019000006fd0001042e0000000001000416000000000110004c000003d30000c13d00000000020000310000001f01200039000000200a00008a0000000004a1016f000000400100043d0000000003140019000000000443004b00000000040000190000000104004039000001c10530009c000004410000213d0000000104400190000004410000c13d000000400030043f0000001f0320018f000000010400036700000005052002720000005e0000613d000000000600001900000005076002100000000008710019000000000774034f000000000707043b00000000007804350000000106600039000000000756004b000000560000413d000000000630004c0000006d0000613d0000000505500210000000000454034f00000000055100190000000303300210000000000605043300000000063601cf000000000636022f000000000404043b0000010003300089000000000434022f00000000033401cf000000000363019f0000000000350435000001c203000041000000400420008c00000000040000190000000004034019000001c205200197000000000650004c000000000300a019000001c20550009c000000000304c019000000000330004c000003d30000c13d0000000034010434000001c10540009c000003d30000213d000000000221001900000000041400190000001f05400039000001c206000041000000000725004b00000000070000190000000007068019000001c205500197000001c208200197000000000985004b0000000006008019000000000585013f000001c20550009c00000000050700190000000005066019000000000550004c000003d30000c13d0000000005040433000001c10650009c000004410000213d0000003f065000390000000006a6016f000000400900043d0000000006690019000000000796004b00000000070000190000000107004039000001c10860009c000004410000213d0000000107700190000004410000c13d000000400060043f000a00000009001d0000000006590436000900000006001d00000020065000390000000007460019000000000727004b000003d30000213d000000000750004c0000000a0b000029000000ad0000613d000000000700001900000020077000390000000008b70019000000000947001900000000090904330000000000980435000000000857004b000000a60000413d00000000046b001900000000000404350000000003030433000001c10430009c000003d30000213d00000000011300190000001f03100039000001c204000041000000000523004b00000000050000190000000005048019000001c203300197000001c206200197000000000763004b0000000004008019000000000363013f000001c20330009c00000000030500190000000003046019000000000330004c000003d30000c13d0000000003010433000001c10430009c000004410000213d0000003f043000390000000004a4016f000000400700043d0000000004470019000000000574004b00000000050000190000000105004039000001c10640009c000004410000213d0000000105500190000004410000c13d000000400040043f000800000007001d0000000004370436000700000004001d00000020043000390000000005140019000000000225004b000003d30000213d00060000000a001d000000000230004c0000000807000029000000e40000613d000000000200001900000020022000390000000005720019000000000612001900000000060604330000000000650435000000000532004b000000dd0000413d00000000014700190000000000010435000000000200041a000001c3012001970000000006000411000000000161019f000000000010041b000001c0010000410000000003000414000001c00430009c0000000001034019000000c001100210000001c4011001c7000001c5052001970000800d020000390000000303000039000001c604000041000400000003001d000500000006001d06fc06f20000040f0000000101200190000003d30000613d0000000a010000290000000001010433000300000001001d000001c10110009c000004410000213d0000000401000039000200000001001d000000000101041a000000010210019000000001011002700000007f0310018f0000000001036019000100000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b0000035a0000c13d0000000101000029000000200110008c0000012d0000413d00000002010000290000000000100435000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c7011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d00000003030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000012d0000813d000000000002041b0000000102200039000000000312004b000001290000413d00000003010000290000001f0110008c000004fc0000a13d00000002010000290000000000100435000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c7011001c7000080100200003906fc06f70000040f00000001022001900000000602000029000003d30000613d000000030300002900000000032301700000002002000039000000000101043b0000000a060000290000014d0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001450000413d0000000304000029000000000343004b0000015b0000813d00000003030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000a0400002900000000024200190000000002020433000000000232016f000000000021041b0000000301000029000000010110021000000001011001bf0000050a0000013d000001dc0210009c000001aa0000a13d000001dd0210009c000001f70000213d000001e00210009c0000029b0000613d000001e10110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d000000400100043d00000012020000390000000000210435000001c002000041000001c00310009c00000000010280190000004001100210000001e8011001c7000006fd0001042e000001d20210009c000002400000213d000001d50210009c000002eb0000613d000001d60110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000400310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000001010003670000000402100370000000000202043b000001c50320009c000003d30000213d0000002401100370000000000301043b000000000100041106fc05f50000040f0000000101000039000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e000001e20210009c0000033c0000613d000001e30210009c000003600000613d000001e40110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d0000000301000039000000000101041a000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e000001d80210009c000003830000613d000001d90110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d0000000505000039000000000405041a000000010640019000000001014002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000224013f00000001022001900000035a0000c13d000000400200043d0000000003120436000000000660004c000003f00000c13d000001000500008a000000000454016f0000000000430435000000000110004c00000020040000390000000004006019000003fd0000013d000001de0210009c0000039e0000613d000001df0110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000400310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000004010000390000000101100367000000000101043b000a00000001001d000001c50110009c000003d30000213d0000000001000411000900000001001d00000000001004350000000201000039000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b0000000a020000290000000000200435000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b000000000101041a00000024020000390000000102200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000004660000613d000001ed0100004100000000001004350000001101000039000000040010043f000001ee01000041000006fe00010430000001d30210009c000003b80000613d000001d40110009c000003d30000c13d0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000200310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000004010000390000000101100367000000000601043b000001c50160009c000003d30000213d000000000100041a000001c5021001970000000005000411000000000252004b000003d50000c13d000000000260004c000004560000c13d000000400100043d0000006402100039000001e50300004100000000003204350000004402100039000001e6030000410000000000320435000000240210003900000026030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe000104300000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000200310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000004010000390000000101100367000000000101043b000001c50210009c000003d30000213d00000000001004350000000101000039000000200010043f0000004002000039000000000100001906fc05c90000040f000000000101041a000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000600310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000001010003670000000402100370000000000202043b000a00000002001d000001c50220009c000003d30000213d0000002402100370000000000202043b000900000002001d000001c50220009c000003d30000213d0000004401100370000000000101043b000800000001001d0000000a0100002900000000001004350000000201000039000700000001001d000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b0000000002000411000600000002001d0000000000200435000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b000000000201041a000000010100008a000500000002001d000000000112004b0000047f0000c13d0000000a010000290000000902000029000000080300002906fc05f50000040f0000000101000039000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000400310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000001010003670000000402100370000000000202043b000a00000002001d000001c50220009c000003d30000213d0000002401100370000000000101043b000900000001001d0000000001000411000800000001001d00000000001004350000000201000039000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b0000000a020000290000000000200435000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b000000000101041a0000000903000029000000000231004b000004720000813d000000400100043d0000006402100039000001e90300004100000000003204350000004402100039000001ea030000410000000000320435000000240210003900000025030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe000104300000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d0000000403000039000000000203041a000000010420019000000001012002700000007f0510018f000000000601001900000000060560190000001f0560008c00000000050000190000000105002039000000000552013f0000000105500190000003e60000613d000001ed0100004100000000001004350000002201000039000000040010043f000001ee01000041000006fe000104300000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000400310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000001010003670000000402100370000000000202043b000001c50320009c000003d30000213d0000002401100370000000000301043b000000000100041106fc068b0000040f0000000101000039000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d000000000100041a000001c501100197000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000000310004c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d000000400100043d000001c9020000410000000000210435000001c002000041000001c00310009c00000000010280190000004001100210000001e8011001c7000006fd0001042e0000000001000416000000000110004c000003d30000c13d000000040100008a0000000001100031000001c202000041000000400310008c00000000030000190000000003024019000001c201100197000000000410004c000000000200a019000001c20110009c00000000010300190000000001026019000000000110004c000003d30000c13d00000001020003670000000401200370000000000101043b000001c50310009c000003d30000213d0000002402200370000000000202043b000a00000002001d000001c50220009c000004160000a13d0000000001000019000006fe00010430000000400100043d0000004402100039000001ec030000410000000000320435000001ce02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001cf011001c7000006fe00010430000000800060043f000000000440004c0000042c0000c13d000001000300008a000000000232016f000000a00020043f000000000160004c000000c001000039000000a0010060390000043b0000013d0000000000500435000000000410004c0000000004000019000003fd0000613d000001eb0500004100000000040000190000000006430019000000000705041a000000000076043500000001055000390000002004400039000000000614004b000003f60000413d0000003f01400039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000001c10310009c000004410000213d0000000103400190000004410000c13d000000400010043f000a00000001001d06fc05df0000040f0000000a040000290000000001410049000001c002000041000001c00310009c0000000001028019000001c00340009c000000000204401900000040022002100000006001100210000000000121019f000006fd0001042e00000000001004350000000201000039000000200010043f0000004002000039000900000002001d000000000100001906fc05c90000040f0000000a020000290000000000200435000000200010043f0000000001000019000000090200002906fc05c90000040f000000000101041a000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e0000000000300435000000a001000039000000000260004c000004470000613d000001f50200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000564004b000004320000413d000000c0013000390000001f01100039000000200200008a000000000121016f000001f602100041000001f70220009c000004470000813d000001ed0100004100000000001004350000004101000039000000040010043f000001ee01000041000006fe00010430000a00000001001d000000400010043f000000800200003906fc05df0000040f0000000a040000290000000001410049000001c002000041000001c00310009c0000000001028019000001c00340009c000000000204401900000040022002100000006001100210000000000121019f000006fd0001042e000001c301100197000000000161019f000000000010041b000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c4011001c70000800d020000390000000303000039000001c60400004106fc06f20000040f00000001012001900000003e0000c13d000003d30000013d00000009010000290000000a0200002906fc068b0000040f0000000101000039000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e000000000331004900000008010000290000000a0200002906fc068b0000040f0000000101000039000000400200043d0000000000120435000001c001000041000001c00320009c00000000010240190000004001100210000001e8011001c7000006fd0001042e00000008010000290000000502000029000000000112004b000004950000813d000000400100043d0000004402100039000001f403000041000000000032043500000024021000390000001d030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001cf011001c7000006fe000104300000000a01000029000000000110004c000004ad0000c13d000000400100043d0000006402100039000001f20300004100000000003204350000004402100039000001f3030000410000000000320435000000240210003900000024030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe000104300000000601000029000001c501100198000600000001001d000004c60000c13d000000400100043d0000006402100039000001f00300004100000000003204350000004402100039000001f1030000410000000000320435000000240210003900000022030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe000104300000000a0100002900000000001004350000000701000029000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b00000006020000290000000000200435000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000080200002900000005030000290000000002230049000000000101043b000000000021041b000000400100043d0000000000210435000001c0020000410000000003000414000001c00430009c0000000003028019000001c00410009c00000000010280190000004001100210000000c002300210000000000112019f000001c7011001c70000800d020000390000000303000039000001ef040000410000000a05000029000000060600002906fc06f20000040f0000000101200190000002de0000c13d000003d30000013d0000000301000029000000000110004c0000000001000019000005020000613d0000000901000029000000000101043300000003040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000202000029000000000012041b00000008010000290000000001010433000a00000001001d000001c10110009c000004410000213d0000000501000039000900000001001d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000300000002001d0000001f0220008c00000000020000190000000102002039000000000121013f00000001011001900000035a0000c13d0000000301000029000000200110008c0000053f0000413d00000009010000290000000000100435000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c7011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d0000000a030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b00000003010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000053f0000813d000000000002041b0000000102200039000000000312004b0000053b0000413d0000000a010000290000001f0110008c000005710000a13d00000009010000290000000000100435000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001c7011001c7000080100200003906fc06f70000040f00000001022001900000000602000029000003d30000613d0000000a0300002900000000032301700000002002000039000000000101043b00000008060000290000055f0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000005570000413d0000000a04000029000000000343004b0000056d0000813d0000000a030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f000000080400002900000000024200190000000002020433000000000232016f000000000021041b0000000a01000029000000010110021000000001011001bf0000057f0000013d0000000a01000029000000000110004c0000000001000019000005770000613d000000070100002900000000010104330000000a040000290000000302400210000000010300008a000000000223022f000000000232013f000000000121016f0000000102400210000000000121019f0000000902000029000000000012041b0000000501000029000000000110004c000005960000c13d000000400100043d0000004402100039000001cd03000041000000000032043500000024021000390000001f030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001cf011001c7000006fe000104300000000401000029000000000101041a000001c80210009c0000023a0000813d000001c9011000410000000402000029000000000012041b000000050100002900000000001004350000000101000039000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f0000000102200190000003d30000613d000000000101043b000000000201041a000001c902200041000000000021041b000001c901000041000000400200043d0000000000120435000001c0010000410000000003000414000001c00430009c0000000003018019000001c00420009c00000000010240190000004001100210000000c002300210000000000121019f000001c7011001c70000800d020000390000000303000039000001cb040000410000000005000019000000050600002906fc06f20000040f0000000101200190000003d30000613d000000200100003900000100001004430000012000000443000001cc01000041000006fd0001042e000001c003000041000001c00410009c00000000010380190000004001100210000001c00420009c00000000020380190000006002200210000000000112019f0000000002000414000001c00420009c0000000002038019000000c002200210000000000112019f000001c4011001c7000080100200003906fc06f70000040f0000000102200190000005dd0000613d000000000101043b000000000001042d0000000001000019000006fe0001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c000005ee0000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b000005e70000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0005000000000002000500000003001d000001c5011001980000064c0000613d000001c502200198000300000002001d000006610000613d000400000001001d00000000001004350000000101000039000200000001001d000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f00000001022001900000064a0000613d000000000101043b000000000201041a0000000501000029000100000002001d000000000112004b000006760000413d000000040100002900000000001004350000000201000029000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f00000001022001900000064a0000613d000000050200002900000001030000290000000002230049000000000101043b000000000021041b00000003010000290000000000100435000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f00000001022001900000064a0000613d000000000101043b000000000201041a00000005030000290000000002320019000000000021041b000000400100043d0000000000310435000001c0020000410000000003000414000001c00430009c0000000003028019000001c00410009c00000000010280190000004001100210000000c002300210000000000112019f000001c7011001c70000800d020000390000000303000039000001cb040000410000000405000029000000030600002906fc06f20000040f00000001012001900000064a0000613d000000000001042d0000000001000019000006fe00010430000000400100043d0000006402100039000001fc0300004100000000003204350000004402100039000001fd030000410000000000320435000000240210003900000025030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe00010430000000400100043d0000006402100039000001fa0300004100000000003204350000004402100039000001fb030000410000000000320435000000240210003900000023030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe00010430000000400100043d0000006402100039000001f80300004100000000003204350000004402100039000001f9030000410000000000320435000000240210003900000026030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe000104300003000000000002000001c501100198000006c80000613d000200000003001d000001c502200198000300000002001d000006dd0000613d000100000001001d00000000001004350000000201000039000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f00000001022001900000000304000029000006c60000613d000000000101043b0000000000400435000000200010043f000001c0010000410000000002000414000001c00320009c0000000001024019000000c001100210000001ca011001c7000080100200003906fc06f70000040f00000003060000290000000102200190000006c60000613d000000000101043b0000000202000029000000000021041b000000400100043d0000000000210435000001c0020000410000000003000414000001c00430009c0000000003028019000001c00410009c00000000010280190000004001100210000000c002300210000000000112019f000001c7011001c70000800d020000390000000303000039000001ef04000041000000010500002906fc06f20000040f0000000101200190000006c60000613d000000000001042d0000000001000019000006fe00010430000000400100043d0000006402100039000001f20300004100000000003204350000004402100039000001f3030000410000000000320435000000240210003900000024030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe00010430000000400100043d0000006402100039000001f00300004100000000003204350000004402100039000001f1030000410000000000320435000000240210003900000022030000390000000000320435000001ce020000410000000000210435000000040210003900000020030000390000000000320435000001c002000041000001c00310009c00000000010280190000004001100210000001e7011001c7000006fe00010430000006f5002104210000000102000039000000000001042d0000000002000019000000000001042d000006fa002104230000000102000039000000000001042d0000000002000019000000000001042d000006fc00000432000006fd0001042e000006fe00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e00200000000000000000000000000000000000020000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffad482d2337f32d1c00000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000000000000000000000070a0823000000000000000000000000000000000000000000000000000000000a457c2d600000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a60000000000000000000000000000000000000000000000000000000023b872dc0000000000000000000000000000000000000000000000000000000032cb6b0b0000000000000000000000000000000000000000000000000000000032cb6b0c00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd64647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206100000000000000000000000000000000000000840000000000000000000000000000000000000000000000000000000000000020000000000000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db04f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a20696e73756666696369656e7420616c6c6f77616e63650000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff0000000000000080616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f206164c3f4d7c499e6acab8b80931cbecd5afe90ce4c0ee5cd2e83b8420111e91c4a11
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d4b616e6e61676920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005244b414e41000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Kannagi Token
Arg [1] : _symbol (string): $KANA
-----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.