Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 66 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 23169346 | 192 days ago | IN | 0 ETH | 0.00002382 | ||||
| Approve | 22951190 | 222 days ago | IN | 0 ETH | 0.00005002 | ||||
| Approve | 22864666 | 234 days ago | IN | 0 ETH | 0.00011283 | ||||
| Approve | 22581390 | 274 days ago | IN | 0 ETH | 0.00077242 | ||||
| Approve | 22562702 | 277 days ago | IN | 0 ETH | 0.00004284 | ||||
| Approve | 22555170 | 278 days ago | IN | 0 ETH | 0.00004856 | ||||
| Approve | 22554805 | 278 days ago | IN | 0 ETH | 0.00006035 | ||||
| Approve | 22554800 | 278 days ago | IN | 0 ETH | 0.00006546 | ||||
| Approve | 22554785 | 278 days ago | IN | 0 ETH | 0.00002774 | ||||
| Approve | 22554759 | 278 days ago | IN | 0 ETH | 0.00002554 | ||||
| Approve | 22554756 | 278 days ago | IN | 0 ETH | 0.00002818 | ||||
| Approve | 22554743 | 278 days ago | IN | 0 ETH | 0.0000454 | ||||
| Approve | 22554741 | 278 days ago | IN | 0 ETH | 0.00011498 | ||||
| Approve | 22554728 | 278 days ago | IN | 0 ETH | 0.00006729 | ||||
| Approve | 22554725 | 278 days ago | IN | 0 ETH | 0.00011596 | ||||
| Approve | 22554724 | 278 days ago | IN | 0 ETH | 0.0000332 | ||||
| Approve | 22554721 | 278 days ago | IN | 0 ETH | 0.00004308 | ||||
| Approve | 22554719 | 278 days ago | IN | 0 ETH | 0.00166976 | ||||
| Approve | 22554713 | 278 days ago | IN | 0 ETH | 0.0001165 | ||||
| Approve | 22554712 | 278 days ago | IN | 0 ETH | 0.00004615 | ||||
| Approve | 22554709 | 278 days ago | IN | 0 ETH | 0.00004677 | ||||
| Approve | 22554706 | 278 days ago | IN | 0 ETH | 0.00004674 | ||||
| Approve | 22554700 | 278 days ago | IN | 0 ETH | 0.00011343 | ||||
| Approve | 22554658 | 278 days ago | IN | 0 ETH | 0.00004633 | ||||
| Approve | 22554656 | 278 days ago | IN | 0 ETH | 0.00004964 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
E
Compiler Version
v0.8.30+commit.73712a01
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-05-24
*/
// Sources flattened with hardhat v2.7.0 https://hardhat.org
// File @openzeppelin/contracts/utils/Context.sol@v4.4.0
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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;
}
}
// File @openzeppelin/contracts/access/Ownable.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_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);
}
}
// File @openzeppelin/contracts/token/ERC20/IERC20.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
// File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// File @openzeppelin/contracts/token/ERC20/ERC20.sol@v4.4.0
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin 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}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* 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 value {ERC20} uses, unless this function is
* 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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `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;
_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;
}
_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 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 {}
}
pragma solidity ^0.8.0;
contract E is Ownable, ERC20 {
bool public limited;
uint256 public maxHoldingAmount;
uint256 public minHoldingAmount;
address public uniswapV2Pair;
mapping(address => bool) public blacklists;
constructor(uint256 _totalSupply) ERC20(unicode"Ξ", unicode"Ξ") {
_mint(msg.sender, _totalSupply);
}
function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
blacklists[_address] = _isBlacklisting;
}
function go_Live(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner {
limited = _limited;
uniswapV2Pair = _uniswapV2Pair;
maxHoldingAmount = _maxHoldingAmount;
minHoldingAmount = _minHoldingAmount;
}
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) override internal virtual {
require(!blacklists[to] && !blacklists[from], "Blacklisted");
if (uniswapV2Pair == address(0)) {
require(from == owner() || to == owner(), "trading is not started");
return;
}
if (limited && from == uniswapV2Pair) {
require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid");
}
}
function burn(uint256 value) external {
_burn(msg.sender, value);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"go_Live","outputs":[],"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561000f575f5ffd5b50604051612eb3380380612eb3833981810160405281019061003191906106b2565b6040518060400160405280600281526020017fce9e0000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017fce9e0000000000000000000000000000000000000000000000000000000000008152506100b96100ae6100f160201b60201c565b6100f860201b60201c565b81600490816100c89190610911565b5080600590816100d89190610911565b5050506100eb33826101b960201b60201c565b50610c18565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e90610a3a565b60405180910390fd5b6102385f838361031d60201b60201c565b8060035f8282546102499190610a85565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461029c9190610a85565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103009190610ac7565b60405180910390a36103195f838361060960201b60201c565b5050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103bb5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6103fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f190610b2a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105115761045c61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806104cd575061049e61060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61050c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050390610b92565b60405180910390fd5b610604565b60065f9054906101000a900460ff168015610578575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561060357600754816105908461063560201b60201c565b61059a9190610a85565b111580156105c35750600854816105b68461063560201b60201c565b6105c09190610a85565b10155b610602576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f990610bfa565b60405180910390fd5b5b5b505050565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f5ffd5b5f819050919050565b6106918161067f565b811461069b575f5ffd5b50565b5f815190506106ac81610688565b92915050565b5f602082840312156106c7576106c661067b565b5b5f6106d48482850161069e565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061075857607f821691505b60208210810361076b5761076a610714565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026107cd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610792565b6107d78683610792565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61081261080d6108088461067f565b6107ef565b61067f565b9050919050565b5f819050919050565b61082b836107f8565b61083f61083782610819565b84845461079e565b825550505050565b5f5f905090565b610856610847565b610861818484610822565b505050565b5b81811015610884576108795f8261084e565b600181019050610867565b5050565b601f8211156108c95761089a81610771565b6108a384610783565b810160208510156108b2578190505b6108c66108be85610783565b830182610866565b50505b505050565b5f82821c905092915050565b5f6108e95f19846008026108ce565b1980831691505092915050565b5f61090183836108da565b9150826002028217905092915050565b61091a826106dd565b67ffffffffffffffff811115610933576109326106e7565b5b61093d8254610741565b610948828285610888565b5f60209050601f831160018114610979575f8415610967578287015190505b61097185826108f6565b8655506109d8565b601f19841661098786610771565b5f5b828110156109ae57848901518255600182019150602085019450602081019050610989565b868310156109cb57848901516109c7601f8916826108da565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610a24601f836109e0565b9150610a2f826109f0565b602082019050919050565b5f6020820190508181035f830152610a5181610a18565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610a8f8261067f565b9150610a9a8361067f565b9250828201905080821115610ab257610ab1610a58565b5b92915050565b610ac18161067f565b82525050565b5f602082019050610ada5f830184610ab8565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610b14600b836109e0565b9150610b1f82610ae0565b602082019050919050565b5f6020820190508181035f830152610b4181610b08565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f610b7c6016836109e0565b9150610b8782610b48565b602082019050919050565b5f6020820190508181035f830152610ba981610b70565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f610be46006836109e0565b9150610bef82610bb0565b602082019050919050565b5f6020820190508181035f830152610c1181610bd8565b9050919050565b61228e80610c255f395ff3fe608060405234801561000f575f5ffd5b5060043610610140575f3560e01c806370a08231116100b657806394690dfd1161007a57806394690dfd1461036657806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b806370a08231146102d2578063715018a614610302578063860a32ec1461030c57806389f9a1d31461032a5780638da5cb5b1461034857610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c578063404e51291461027c57806342966c681461029857806349bd5a5e146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f5ffd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610236610617565b60405161024391906118c6565b60405180910390f35b61026660048036038101906102619190611797565b61061f565b60405161027391906117ef565b60405180910390f35b61029660048036038101906102919190611909565b6106c6565b005b6102b260048036038101906102ad9190611947565b61079a565b005b6102bc6107a7565b6040516102c99190611981565b60405180910390f35b6102ec60048036038101906102e79190611808565b6107cc565b6040516102f99190611842565b60405180910390f35b61030a610812565b005b610314610899565b60405161032191906117ef565b60405180910390f35b6103326108ab565b60405161033f9190611842565b60405180910390f35b6103506108b1565b60405161035d9190611981565b60405180910390f35b610380600480360381019061037b919061199a565b6108d8565b005b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b5f6012905090565b5f6106bc61062b610ccc565b848460025f610638610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b79190611b54565b610cd3565b6001905092915050565b6106ce610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106ec6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611bd1565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107a4338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081a610ccc565b73ffffffffffffffffffffffffffffffffffffffff166108386108b1565b73ffffffffffffffffffffffffffffffffffffffff161461088e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088590611bd1565b60405180910390fd5b6108975f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108e0610ccc565b73ffffffffffffffffffffffffffffffffffffffff166108fe6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611bd1565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f5f60025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611bd1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611b54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d66108b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061154157506115126108b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846107cc565b6116089190611b54565b1115801561162b57506008548161161e846107cc565b6116289190611b54565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f5ffd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f5ffd5b50565b5f813590506117918161176d565b92915050565b5f5f604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f5f5f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b5f60ff82169050919050565b6118c0816118ab565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b6118e8816117d5565b81146118f2575f5ffd5b50565b5f81359050611903816118df565b92915050565b5f5f6040838503121561191f5761191e611706565b5b5f61192c85828601611750565b925050602061193d858286016118f5565b9150509250929050565b5f6020828403121561195c5761195b611706565b5b5f61196984828501611783565b91505092915050565b61197b81611729565b82525050565b5f6020820190506119945f830184611972565b92915050565b5f5f5f5f608085870312156119b2576119b1611706565b5b5f6119bf878288016118f5565b94505060206119d087828801611750565b93505060406119e187828801611783565b92505060606119f287828801611783565b91505092959194509250565b5f5f60408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b5e82611764565b9150611b6983611764565b9250828201905080821115611b8157611b80611b27565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bbb602083611680565b9150611bc682611b87565b602082019050919050565b5f6020820190508181035f830152611be881611baf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b27565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea2646970667358221220bd5e93ad6bbac4edf9ba557d937089671a170a5720a959e019f3fc9c18a43fbb64736f6c634300081e00330000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610140575f3560e01c806370a08231116100b657806394690dfd1161007a57806394690dfd1461036657806395d89b4114610382578063a457c2d7146103a0578063a9059cbb146103d0578063dd62ed3e14610400578063f2fde38b1461043057610140565b806370a08231146102d2578063715018a614610302578063860a32ec1461030c57806389f9a1d31461032a5780638da5cb5b1461034857610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c578063404e51291461027c57806342966c681461029857806349bd5a5e146102b457610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f5ffd5b61014c61044c565b60405161015991906116e6565b60405180910390f35b61017c60048036038101906101779190611797565b6104dc565b60405161018991906117ef565b60405180910390f35b6101ac60048036038101906101a79190611808565b6104f9565b6040516101b991906117ef565b60405180910390f35b6101ca610516565b6040516101d79190611842565b60405180910390f35b6101e861051f565b6040516101f59190611842565b60405180910390f35b6102186004803603810190610213919061185b565b610525565b60405161022591906117ef565b60405180910390f35b610236610617565b60405161024391906118c6565b60405180910390f35b61026660048036038101906102619190611797565b61061f565b60405161027391906117ef565b60405180910390f35b61029660048036038101906102919190611909565b6106c6565b005b6102b260048036038101906102ad9190611947565b61079a565b005b6102bc6107a7565b6040516102c99190611981565b60405180910390f35b6102ec60048036038101906102e79190611808565b6107cc565b6040516102f99190611842565b60405180910390f35b61030a610812565b005b610314610899565b60405161032191906117ef565b60405180910390f35b6103326108ab565b60405161033f9190611842565b60405180910390f35b6103506108b1565b60405161035d9190611981565b60405180910390f35b610380600480360381019061037b919061199a565b6108d8565b005b61038a6109c1565b60405161039791906116e6565b60405180910390f35b6103ba60048036038101906103b59190611797565b610a51565b6040516103c791906117ef565b60405180910390f35b6103ea60048036038101906103e59190611797565b610b37565b6040516103f791906117ef565b60405180910390f35b61041a600480360381019061041591906119fe565b610b54565b6040516104279190611842565b60405180910390f35b61044a60048036038101906104459190611808565b610bd6565b005b60606004805461045b90611a69565b80601f016020809104026020016040519081016040528092919081815260200182805461048790611a69565b80156104d25780601f106104a9576101008083540402835291602001916104d2565b820191905f5260205f20905b8154815290600101906020018083116104b557829003601f168201915b5050505050905090565b5f6104ef6104e8610ccc565b8484610cd3565b6001905092915050565b600a602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60085481565b5f610531848484610e96565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610578610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ee90611b09565b60405180910390fd5b61060b85610603610ccc565b858403610cd3565b60019150509392505050565b5f6012905090565b5f6106bc61062b610ccc565b848460025f610638610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b79190611b54565b610cd3565b6001905092915050565b6106ce610ccc565b73ffffffffffffffffffffffffffffffffffffffff166106ec6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990611bd1565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6107a4338261110e565b50565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61081a610ccc565b73ffffffffffffffffffffffffffffffffffffffff166108386108b1565b73ffffffffffffffffffffffffffffffffffffffff161461088e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088590611bd1565b60405180910390fd5b6108975f6112dc565b565b60065f9054906101000a900460ff1681565b60075481565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108e0610ccc565b73ffffffffffffffffffffffffffffffffffffffff166108fe6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610954576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094b90611bd1565b60405180910390fd5b8360065f6101000a81548160ff0219169083151502179055508260095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6060600580546109d090611a69565b80601f01602080910402602001604051908101604052809291908181526020018280546109fc90611a69565b8015610a475780601f10610a1e57610100808354040283529160200191610a47565b820191905f5260205f20905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b5f5f60025f610a5e610ccc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f90611c5f565b60405180910390fd5b610b2c610b23610ccc565b85858403610cd3565b600191505092915050565b5f610b4a610b43610ccc565b8484610e96565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610bde610ccc565b73ffffffffffffffffffffffffffffffffffffffff16610bfc6108b1565b73ffffffffffffffffffffffffffffffffffffffff1614610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990611bd1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611ced565b60405180910390fd5b610cc9816112dc565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890611d7b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da690611e09565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e899190611842565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efb90611e97565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990611f25565b60405180910390fd5b610f7d83838361139d565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890611fb3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546110919190611b54565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f59190611842565b60405180910390a3611108848484611671565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390612041565b60405180910390fd5b611187825f8361139d565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561120b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611202906120cf565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461126091906120ed565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112c49190611842565b60405180910390a36112d7835f84611671565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561143b5750600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b61147a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114719061216a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611585576114d66108b1565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061154157506115126108b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611580576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611577906121d2565b60405180910390fd5b61166c565b60065f9054906101000a900460ff1680156115ec575060095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561166b57600754816115fe846107cc565b6116089190611b54565b1115801561162b57506008548161161e846107cc565b6116289190611b54565b10155b61166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061223a565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6116b882611676565b6116c28185611680565b93506116d2818560208601611690565b6116db8161169e565b840191505092915050565b5f6020820190508181035f8301526116fe81846116ae565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117338261170a565b9050919050565b61174381611729565b811461174d575f5ffd5b50565b5f8135905061175e8161173a565b92915050565b5f819050919050565b61177681611764565b8114611780575f5ffd5b50565b5f813590506117918161176d565b92915050565b5f5f604083850312156117ad576117ac611706565b5b5f6117ba85828601611750565b92505060206117cb85828601611783565b9150509250929050565b5f8115159050919050565b6117e9816117d5565b82525050565b5f6020820190506118025f8301846117e0565b92915050565b5f6020828403121561181d5761181c611706565b5b5f61182a84828501611750565b91505092915050565b61183c81611764565b82525050565b5f6020820190506118555f830184611833565b92915050565b5f5f5f6060848603121561187257611871611706565b5b5f61187f86828701611750565b935050602061189086828701611750565b92505060406118a186828701611783565b9150509250925092565b5f60ff82169050919050565b6118c0816118ab565b82525050565b5f6020820190506118d95f8301846118b7565b92915050565b6118e8816117d5565b81146118f2575f5ffd5b50565b5f81359050611903816118df565b92915050565b5f5f6040838503121561191f5761191e611706565b5b5f61192c85828601611750565b925050602061193d858286016118f5565b9150509250929050565b5f6020828403121561195c5761195b611706565b5b5f61196984828501611783565b91505092915050565b61197b81611729565b82525050565b5f6020820190506119945f830184611972565b92915050565b5f5f5f5f608085870312156119b2576119b1611706565b5b5f6119bf878288016118f5565b94505060206119d087828801611750565b93505060406119e187828801611783565b92505060606119f287828801611783565b91505092959194509250565b5f5f60408385031215611a1457611a13611706565b5b5f611a2185828601611750565b9250506020611a3285828601611750565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a8057607f821691505b602082108103611a9357611a92611a3c565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f611af3602883611680565b9150611afe82611a99565b604082019050919050565b5f6020820190508181035f830152611b2081611ae7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611b5e82611764565b9150611b6983611764565b9250828201905080821115611b8157611b80611b27565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611bbb602083611680565b9150611bc682611b87565b602082019050919050565b5f6020820190508181035f830152611be881611baf565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611c49602583611680565b9150611c5482611bef565b604082019050919050565b5f6020820190508181035f830152611c7681611c3d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611cd7602683611680565b9150611ce282611c7d565b604082019050919050565b5f6020820190508181035f830152611d0481611ccb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611d65602483611680565b9150611d7082611d0b565b604082019050919050565b5f6020820190508181035f830152611d9281611d59565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611df3602283611680565b9150611dfe82611d99565b604082019050919050565b5f6020820190508181035f830152611e2081611de7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611e81602583611680565b9150611e8c82611e27565b604082019050919050565b5f6020820190508181035f830152611eae81611e75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611f0f602383611680565b9150611f1a82611eb5565b604082019050919050565b5f6020820190508181035f830152611f3c81611f03565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611f9d602683611680565b9150611fa882611f43565b604082019050919050565b5f6020820190508181035f830152611fca81611f91565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f61202b602183611680565b915061203682611fd1565b604082019050919050565b5f6020820190508181035f8301526120588161201f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f6120b9602283611680565b91506120c48261205f565b604082019050919050565b5f6020820190508181035f8301526120e6816120ad565b9050919050565b5f6120f782611764565b915061210283611764565b925082820390508181111561211a57612119611b27565b5b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f612154600b83611680565b915061215f82612120565b602082019050919050565b5f6020820190508181035f83015261218181612148565b9050919050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f6121bc601683611680565b91506121c782612188565b602082019050919050565b5f6020820190508181035f8301526121e9816121b0565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f612224600683611680565b915061222f826121f0565b602082019050919050565b5f6020820190508181035f83015261225181612218565b905091905056fea2646970667358221220bd5e93ad6bbac4edf9ba557d937089671a170a5720a959e019f3fc9c18a43fbb64736f6c634300081e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode Sourcemap
19310:1459:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19483:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19410:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12130:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10274:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13031:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19658:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20685:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19448:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10603:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2713:103;;;:::i;:::-;;19346:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19372:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2062:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19801:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9531:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13749:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10943:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11181:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2971:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9312:100;9366:13;9399:5;9392:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9312:100;:::o;11479:169::-;11562:4;11579:39;11588:12;:10;:12::i;:::-;11602:7;11611:6;11579:8;:39::i;:::-;11636:4;11629:11;;11479:169;;;;:::o;19483:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10432:108::-;10493:7;10520:12;;10513:19;;10432:108;:::o;19410:31::-;;;;:::o;12130:492::-;12270:4;12287:36;12297:6;12305:9;12316:6;12287:9;:36::i;:::-;12336:24;12363:11;:19;12375:6;12363:19;;;;;;;;;;;;;;;:33;12383:12;:10;:12::i;:::-;12363:33;;;;;;;;;;;;;;;;12336:60;;12435:6;12415:16;:26;;12407:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12522:57;12531:6;12539:12;:10;:12::i;:::-;12572:6;12553:16;:25;12522:8;:57::i;:::-;12610:4;12603:11;;;12130:492;;;;;:::o;10274:93::-;10332:5;10357:2;10350:9;;10274:93;:::o;13031:215::-;13119:4;13136:80;13145:12;:10;:12::i;:::-;13159:7;13205:10;13168:11;:25;13180:12;:10;:12::i;:::-;13168:25;;;;;;;;;;;;;;;:34;13194:7;13168:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13136:8;:80::i;:::-;13234:4;13227:11;;13031:215;;;;:::o;19658:135::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19770:15:::1;19747:10;:20;19758:8;19747:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;19658:135:::0;;:::o;20685:81::-;20734:24;20740:10;20752:5;20734;:24::i;:::-;20685:81;:::o;19448:28::-;;;;;;;;;;;;;:::o;10603:127::-;10677:7;10704:9;:18;10714:7;10704:18;;;;;;;;;;;;;;;;10697:25;;10603:127;;;:::o;2713:103::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2778:30:::1;2805:1;2778:18;:30::i;:::-;2713:103::o:0;19346:19::-;;;;;;;;;;;;;:::o;19372:31::-;;;;:::o;2062:87::-;2108:7;2135:6;;;;;;;;;;;2128:13;;2062:87;:::o;19801:301::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19951:8:::1;19941:7;;:18;;;;;;;;;;;;;;;;;;19986:14;19970:13;;:30;;;;;;;;;;;;;;;;;;20030:17;20011:16;:36;;;;20077:17;20058:16;:36;;;;19801:301:::0;;;;:::o;9531:104::-;9587:13;9620:7;9613:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:104;:::o;13749:413::-;13842:4;13859:24;13886:11;:25;13898:12;:10;:12::i;:::-;13886:25;;;;;;;;;;;;;;;:34;13912:7;13886:34;;;;;;;;;;;;;;;;13859:61;;13959:15;13939:16;:35;;13931:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14052:67;14061:12;:10;:12::i;:::-;14075:7;14103:15;14084:16;:34;14052:8;:67::i;:::-;14150:4;14143:11;;;13749:413;;;;:::o;10943:175::-;11029:4;11046:42;11056:12;:10;:12::i;:::-;11070:9;11081:6;11046:9;:42::i;:::-;11106:4;11099:11;;10943:175;;;;:::o;11181:151::-;11270:7;11297:11;:18;11309:5;11297:18;;;;;;;;;;;;;;;:27;11316:7;11297:27;;;;;;;;;;;;;;;;11290:34;;11181:151;;;;:::o;2971:201::-;2293:12;:10;:12::i;:::-;2282:23;;:7;:5;:7::i;:::-;:23;;;2274:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3080:1:::1;3060:22;;:8;:22;;::::0;3052:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3136:28;3155:8;3136:18;:28::i;:::-;2971:201:::0;:::o;780:98::-;833:7;860:10;853:17;;780:98;:::o;17433:380::-;17586:1;17569:19;;:5;:19;;;17561:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17667:1;17648:21;;:7;:21;;;17640:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17751:6;17721:11;:18;17733:5;17721:18;;;;;;;;;;;;;;;:27;17740:7;17721:27;;;;;;;;;;;;;;;:36;;;;17789:7;17773:32;;17782:5;17773:32;;;17798:6;17773:32;;;;;;:::i;:::-;;;;;;;;17433:380;;;:::o;14652:733::-;14810:1;14792:20;;:6;:20;;;14784:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14894:1;14873:23;;:9;:23;;;14865:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14949:47;14970:6;14978:9;14989:6;14949:20;:47::i;:::-;15009:21;15033:9;:17;15043:6;15033:17;;;;;;;;;;;;;;;;15009:41;;15086:6;15069:13;:23;;15061:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15207:6;15191:13;:22;15171:9;:17;15181:6;15171:17;;;;;;;;;;;;;;;:42;;;;15259:6;15235:9;:20;15245:9;15235:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15300:9;15283:35;;15292:6;15283:35;;;15311:6;15283:35;;;;;;:::i;:::-;;;;;;;;15331:46;15351:6;15359:9;15370:6;15331:19;:46::i;:::-;14773:612;14652:733;;;:::o;16404:591::-;16507:1;16488:21;;:7;:21;;;16480:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16560:49;16581:7;16598:1;16602:6;16560:20;:49::i;:::-;16622:22;16647:9;:18;16657:7;16647:18;;;;;;;;;;;;;;;;16622:43;;16702:6;16684:14;:24;;16676:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16821:6;16804:14;:23;16783:9;:18;16793:7;16783:18;;;;;;;;;;;;;;;:44;;;;16865:6;16849:12;;:22;;;;;;;:::i;:::-;;;;;;;;16915:1;16889:37;;16898:7;16889:37;;;16919:6;16889:37;;;;;;:::i;:::-;;;;;;;;16939:48;16959:7;16976:1;16980:6;16939:19;:48::i;:::-;16469:526;16404:591;;:::o;3332:191::-;3406:16;3425:6;;;;;;;;;;;3406:25;;3451:8;3442:6;;:17;;;;;;;;;;;;;;;;;;3506:8;3475:40;;3496:8;3475:40;;;;;;;;;;;;3395:128;3332:191;:::o;20110:567::-;20262:10;:14;20273:2;20262:14;;;;;;;;;;;;;;;;;;;;;;;;;20261:15;:36;;;;;20281:10;:16;20292:4;20281:16;;;;;;;;;;;;;;;;;;;;;;;;;20280:17;20261:36;20253:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20355:1;20330:27;;:13;;;;;;;;;;;:27;;;20326:148;;20390:7;:5;:7::i;:::-;20382:15;;:4;:15;;;:32;;;;20407:7;:5;:7::i;:::-;20401:13;;:2;:13;;;20382:32;20374:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20456:7;;20326:148;20490:7;;;;;;;;;;;:32;;;;;20509:13;;;;;;;;;;;20501:21;;:4;:21;;;20490:32;20486:184;;;20579:16;;20569:6;20547:19;20563:2;20547:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20631:16;;20621:6;20599:19;20615:2;20599:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20547:100;20539:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20486:184;20110:567;;;;:::o;19142:124::-;;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:468::-;5407:6;5415;5464:2;5452:9;5443:7;5439:23;5435:32;5432:119;;;5470:79;;:::i;:::-;5432:119;5590:1;5615:53;5660:7;5651:6;5640:9;5636:22;5615:53;:::i;:::-;5605:63;;5561:117;5717:2;5743:50;5785:7;5776:6;5765:9;5761:22;5743:50;:::i;:::-;5733:60;;5688:115;5342:468;;;;;:::o;5816:329::-;5875:6;5924:2;5912:9;5903:7;5899:23;5895:32;5892:119;;;5930:79;;:::i;:::-;5892:119;6050:1;6075:53;6120:7;6111:6;6100:9;6096:22;6075:53;:::i;:::-;6065:63;;6021:117;5816:329;;;;:::o;6151:118::-;6238:24;6256:5;6238:24;:::i;:::-;6233:3;6226:37;6151:118;;:::o;6275:222::-;6368:4;6406:2;6395:9;6391:18;6383:26;;6419:71;6487:1;6476:9;6472:17;6463:6;6419:71;:::i;:::-;6275:222;;;;:::o;6503:759::-;6586:6;6594;6602;6610;6659:3;6647:9;6638:7;6634:23;6630:33;6627:120;;;6666:79;;:::i;:::-;6627:120;6786:1;6811:50;6853:7;6844:6;6833:9;6829:22;6811:50;:::i;:::-;6801:60;;6757:114;6910:2;6936:53;6981:7;6972:6;6961:9;6957:22;6936:53;:::i;:::-;6926:63;;6881:118;7038:2;7064:53;7109:7;7100:6;7089:9;7085:22;7064:53;:::i;:::-;7054:63;;7009:118;7166:2;7192:53;7237:7;7228:6;7217:9;7213:22;7192:53;:::i;:::-;7182:63;;7137:118;6503:759;;;;;;;:::o;7268:474::-;7336:6;7344;7393:2;7381:9;7372:7;7368:23;7364:32;7361:119;;;7399:79;;:::i;:::-;7361:119;7519:1;7544:53;7589:7;7580:6;7569:9;7565:22;7544:53;:::i;:::-;7534:63;;7490:117;7646:2;7672:53;7717:7;7708:6;7697:9;7693:22;7672:53;:::i;:::-;7662:63;;7617:118;7268:474;;;;;:::o;7748:180::-;7796:77;7793:1;7786:88;7893:4;7890:1;7883:15;7917:4;7914:1;7907:15;7934:320;7978:6;8015:1;8009:4;8005:12;7995:22;;8062:1;8056:4;8052:12;8083:18;8073:81;;8139:4;8131:6;8127:17;8117:27;;8073:81;8201:2;8193:6;8190:14;8170:18;8167:38;8164:84;;8220:18;;:::i;:::-;8164:84;7985:269;7934:320;;;:::o;8260:227::-;8400:34;8396:1;8388:6;8384:14;8377:58;8469:10;8464:2;8456:6;8452:15;8445:35;8260:227;:::o;8493:366::-;8635:3;8656:67;8720:2;8715:3;8656:67;:::i;:::-;8649:74;;8732:93;8821:3;8732:93;:::i;:::-;8850:2;8845:3;8841:12;8834:19;;8493:366;;;:::o;8865:419::-;9031:4;9069:2;9058:9;9054:18;9046:26;;9118:9;9112:4;9108:20;9104:1;9093:9;9089:17;9082:47;9146:131;9272:4;9146:131;:::i;:::-;9138:139;;8865:419;;;:::o;9290:180::-;9338:77;9335:1;9328:88;9435:4;9432:1;9425:15;9459:4;9456:1;9449:15;9476:191;9516:3;9535:20;9553:1;9535:20;:::i;:::-;9530:25;;9569:20;9587:1;9569:20;:::i;:::-;9564:25;;9612:1;9609;9605:9;9598:16;;9633:3;9630:1;9627:10;9624:36;;;9640:18;;:::i;:::-;9624:36;9476:191;;;;:::o;9673:182::-;9813:34;9809:1;9801:6;9797:14;9790:58;9673:182;:::o;9861:366::-;10003:3;10024:67;10088:2;10083:3;10024:67;:::i;:::-;10017:74;;10100:93;10189:3;10100:93;:::i;:::-;10218:2;10213:3;10209:12;10202:19;;9861:366;;;:::o;10233:419::-;10399:4;10437:2;10426:9;10422:18;10414:26;;10486:9;10480:4;10476:20;10472:1;10461:9;10457:17;10450:47;10514:131;10640:4;10514:131;:::i;:::-;10506:139;;10233:419;;;:::o;10658:224::-;10798:34;10794:1;10786:6;10782:14;10775:58;10867:7;10862:2;10854:6;10850:15;10843:32;10658:224;:::o;10888:366::-;11030:3;11051:67;11115:2;11110:3;11051:67;:::i;:::-;11044:74;;11127:93;11216:3;11127:93;:::i;:::-;11245:2;11240:3;11236:12;11229:19;;10888:366;;;:::o;11260:419::-;11426:4;11464:2;11453:9;11449:18;11441:26;;11513:9;11507:4;11503:20;11499:1;11488:9;11484:17;11477:47;11541:131;11667:4;11541:131;:::i;:::-;11533:139;;11260:419;;;:::o;11685:225::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:8;11889:2;11881:6;11877:15;11870:33;11685:225;:::o;11916:366::-;12058:3;12079:67;12143:2;12138:3;12079:67;:::i;:::-;12072:74;;12155:93;12244:3;12155:93;:::i;:::-;12273:2;12268:3;12264:12;12257:19;;11916:366;;;:::o;12288:419::-;12454:4;12492:2;12481:9;12477:18;12469:26;;12541:9;12535:4;12531:20;12527:1;12516:9;12512:17;12505:47;12569:131;12695:4;12569:131;:::i;:::-;12561:139;;12288:419;;;:::o;12713:223::-;12853:34;12849:1;12841:6;12837:14;12830:58;12922:6;12917:2;12909:6;12905:15;12898:31;12713:223;:::o;12942:366::-;13084:3;13105:67;13169:2;13164:3;13105:67;:::i;:::-;13098:74;;13181:93;13270:3;13181:93;:::i;:::-;13299:2;13294:3;13290:12;13283:19;;12942:366;;;:::o;13314:419::-;13480:4;13518:2;13507:9;13503:18;13495:26;;13567:9;13561:4;13557:20;13553:1;13542:9;13538:17;13531:47;13595:131;13721:4;13595:131;:::i;:::-;13587:139;;13314:419;;;:::o;13739:221::-;13879:34;13875:1;13867:6;13863:14;13856:58;13948:4;13943:2;13935:6;13931:15;13924:29;13739:221;:::o;13966:366::-;14108:3;14129:67;14193:2;14188:3;14129:67;:::i;:::-;14122:74;;14205:93;14294:3;14205:93;:::i;:::-;14323:2;14318:3;14314:12;14307:19;;13966:366;;;:::o;14338:419::-;14504:4;14542:2;14531:9;14527:18;14519:26;;14591:9;14585:4;14581:20;14577:1;14566:9;14562:17;14555:47;14619:131;14745:4;14619:131;:::i;:::-;14611:139;;14338:419;;;:::o;14763:224::-;14903:34;14899:1;14891:6;14887:14;14880:58;14972:7;14967:2;14959:6;14955:15;14948:32;14763:224;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:222::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:5;15994:2;15986:6;15982:15;15975:30;15790:222;:::o;16018:366::-;16160:3;16181:67;16245:2;16240:3;16181:67;:::i;:::-;16174:74;;16257:93;16346:3;16257:93;:::i;:::-;16375:2;16370:3;16366:12;16359:19;;16018:366;;;:::o;16390:419::-;16556:4;16594:2;16583:9;16579:18;16571:26;;16643:9;16637:4;16633:20;16629:1;16618:9;16614:17;16607:47;16671:131;16797:4;16671:131;:::i;:::-;16663:139;;16390:419;;;:::o;16815:225::-;16955:34;16951:1;16943:6;16939:14;16932:58;17024:8;17019:2;17011:6;17007:15;17000:33;16815:225;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:220::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:3;18047:2;18039:6;18035:15;18028:28;17843:220;:::o;18069:366::-;18211:3;18232:67;18296:2;18291:3;18232:67;:::i;:::-;18225:74;;18308:93;18397:3;18308:93;:::i;:::-;18426:2;18421:3;18417:12;18410:19;;18069:366;;;:::o;18441:419::-;18607:4;18645:2;18634:9;18630:18;18622:26;;18694:9;18688:4;18684:20;18680:1;18669:9;18665:17;18658:47;18722:131;18848:4;18722:131;:::i;:::-;18714:139;;18441:419;;;:::o;18866:221::-;19006:34;19002:1;18994:6;18990:14;18983:58;19075:4;19070:2;19062:6;19058:15;19051:29;18866:221;:::o;19093:366::-;19235:3;19256:67;19320:2;19315:3;19256:67;:::i;:::-;19249:74;;19332:93;19421:3;19332:93;:::i;:::-;19450:2;19445:3;19441:12;19434:19;;19093:366;;;:::o;19465:419::-;19631:4;19669:2;19658:9;19654:18;19646:26;;19718:9;19712:4;19708:20;19704:1;19693:9;19689:17;19682:47;19746:131;19872:4;19746:131;:::i;:::-;19738:139;;19465:419;;;:::o;19890:194::-;19930:4;19950:20;19968:1;19950:20;:::i;:::-;19945:25;;19984:20;20002:1;19984:20;:::i;:::-;19979:25;;20028:1;20025;20021:9;20013:17;;20052:1;20046:4;20043:11;20040:37;;;20057:18;;:::i;:::-;20040:37;19890:194;;;;:::o;20090:161::-;20230:13;20226:1;20218:6;20214:14;20207:37;20090:161;:::o;20257:366::-;20399:3;20420:67;20484:2;20479:3;20420:67;:::i;:::-;20413:74;;20496:93;20585:3;20496:93;:::i;:::-;20614:2;20609:3;20605:12;20598:19;;20257:366;;;:::o;20629:419::-;20795:4;20833:2;20822:9;20818:18;20810:26;;20882:9;20876:4;20872:20;20868:1;20857:9;20853:17;20846:47;20910:131;21036:4;20910:131;:::i;:::-;20902:139;;20629:419;;;:::o;21054:172::-;21194:24;21190:1;21182:6;21178:14;21171:48;21054:172;:::o;21232:366::-;21374:3;21395:67;21459:2;21454:3;21395:67;:::i;:::-;21388:74;;21471:93;21560:3;21471:93;:::i;:::-;21589:2;21584:3;21580:12;21573:19;;21232:366;;;:::o;21604:419::-;21770:4;21808:2;21797:9;21793:18;21785:26;;21857:9;21851:4;21847:20;21843:1;21832:9;21828:17;21821:47;21885:131;22011:4;21885:131;:::i;:::-;21877:139;;21604:419;;;:::o;22029:156::-;22169:8;22165:1;22157:6;22153:14;22146:32;22029:156;:::o;22191:365::-;22333:3;22354:66;22418:1;22413:3;22354:66;:::i;:::-;22347:73;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22191:365;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o
Swarm Source
ipfs://bd5e93ad6bbac4edf9ba557d937089671a170a5720a959e019f3fc9c18a43fbb
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.