Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 17948569 | 938 days ago | IN | 0 ETH | 0.00059581 | ||||
| Transfer | 17948554 | 938 days ago | IN | 0 ETH | 0.00064484 | ||||
| Transfer | 17948538 | 938 days ago | IN | 0 ETH | 0.00063579 | ||||
| Transfer | 17848311 | 952 days ago | IN | 0 ETH | 0.00075143 | ||||
| Initialize Devel... | 17848214 | 952 days ago | IN | 0 ETH | 0.00086209 | ||||
| Initialize Marke... | 17848206 | 952 days ago | IN | 0 ETH | 0.00095971 | ||||
| Initialize Found... | 17848187 | 952 days ago | IN | 0 ETH | 0.00134388 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MONWU
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.10;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract MONWU is ERC20, Ownable {
uint256 public cap = 1_000_000_000 * (10**decimals());
uint256 public burned = 0;
// allocations
uint256 public constant foundersAllocation = 100_000_000;
uint256 public constant marketingAllocation = 50_000_000;
uint256 public constant developmentAllocation = 50_000_000;
uint256 public constant privateSaleAllocation = 150_000_000;
uint256 public constant publicSaleAllocation = 100_000_000;
uint256 public constant liquidityPoolAllocation = 100_000_000;
uint256 public constant stakingAllocation = 200_000_000;
uint256 public constant rewardsAllocation = 250_000_000;
bool public foundersVestingInitialized;
bool public marketingVestingInitialized;
bool public developmentVestingInitialized;
bool public privateSaleInitialized;
bool public publicSaleInitialized;
bool public poolInitialized;
bool public stakingInitialized;
bool public rewardsInitialized;
constructor() ERC20("MONWU Token", "MONWU") {
transferOwnership(0xa3152e1FCbB08C6e08D30006c03E693F31c2C89f);
}
// ====================================================================================
// PUBLIC INTERFACE
// ====================================================================================
function burn(uint256 amount) external {
require(cap - amount >= 500_000_000 * (10**decimals()), "Minimal cap reached");
cap -= amount;
burned += amount;
_burn(_msgSender(), amount);
}
// ====================================================================================
// ====================================================================================
// OWNER INTERFACE
// ====================================================================================
function initializeFoundersVesting(address foundersVestingContract) external onlyOwner {
require(foundersVestingInitialized == false, "Vesting already initialized");
uint256 amount = foundersAllocation * (10**decimals());
foundersVestingInitialized = true;
internalMint(foundersVestingContract, amount);
}
function initializeMarketingVesting(address marketingVestingContract) external onlyOwner {
require(marketingVestingInitialized == false, "Marketing vesting already initialized");
uint256 amount = marketingAllocation * (10**decimals());
marketingVestingInitialized = true;
internalMint(marketingVestingContract, amount);
}
function initializeDevelopmentVesting(address developmentVestingContract) external onlyOwner {
require(developmentVestingInitialized == false, "Development vesting already initialized");
uint256 amount = developmentAllocation * (10**decimals());
developmentVestingInitialized = true;
internalMint(developmentVestingContract, amount);
}
function initializePrivateSale(address privateSaleVestingContract) external onlyOwner {
require(privateSaleInitialized == false, "Private sale already initialized");
uint256 amount = privateSaleAllocation * (10**decimals());
privateSaleInitialized = true;
internalMint(privateSaleVestingContract, amount);
}
function initializePublicSale(address publicSaleAddress) external onlyOwner {
require(publicSaleInitialized == false, "Public sale already initialized");
uint256 amount = publicSaleAllocation * (10**decimals());
publicSaleInitialized = true;
internalMint(publicSaleAddress, amount);
}
function initializePool(address poolInitializer) external onlyOwner {
require(poolInitialized == false, "Pool already initialized");
uint256 amount = liquidityPoolAllocation * (10**decimals());
poolInitialized = true;
internalMint(poolInitializer, amount);
}
function initializeStaking(address stakingContract) external onlyOwner {
require(stakingInitialized == false, "Staking already initialized");
uint256 amount = stakingAllocation * (10**decimals());
stakingInitialized = true;
internalMint(stakingContract, amount);
}
function initializeRewards(address rewardsContract) external onlyOwner {
require(rewardsInitialized == false, "Rewards already initialized");
uint256 amount = rewardsAllocation * (10**decimals());
rewardsInitialized = true;
internalMint(rewardsContract, amount);
}
// ====================================================================================
// ====================================================================================
// HELPERS
// ====================================================================================
function internalMint(address to, uint256 amount) internal {
require(totalSupply() + amount <= cap, "ERC20Capped: cap exceeded");
_mint(to, amount);
}
// ====================================================================================
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions 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);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}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":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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","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":[],"name":"developmentAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentVestingInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundersAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"foundersVestingInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"developmentVestingContract","type":"address"}],"name":"initializeDevelopmentVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"foundersVestingContract","type":"address"}],"name":"initializeFoundersVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"marketingVestingContract","type":"address"}],"name":"initializeMarketingVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolInitializer","type":"address"}],"name":"initializePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"privateSaleVestingContract","type":"address"}],"name":"initializePrivateSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"publicSaleAddress","type":"address"}],"name":"initializePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"rewardsContract","type":"address"}],"name":"initializeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakingContract","type":"address"}],"name":"initializeStaking","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityPoolAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingVestingInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"poolInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSaleInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingInitialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052620000146200013460201b60201c565b600a620000229190620005a7565b633b9aca00620000339190620005f8565b60065560006007553480156200004857600080fd5b506040518060400160405280600b81526020017f4d4f4e575520546f6b656e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d4f4e57550000000000000000000000000000000000000000000000000000008152508160039080519060200190620000cd9291906200035d565b508060049080519060200190620000e69291906200035d565b50505062000109620000fd6200013d60201b60201c565b6200014560201b60201c565b6200012e73a3152e1fcbb08c6e08d30006c03e693f31c2c89f6200020b60201b60201c565b620007d9565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021b620002a260201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200028e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028590620006e0565b60405180910390fd5b6200029f816200014560201b60201c565b50565b620002b26200013d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d86200033360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003289062000752565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036b90620007a3565b90600052602060002090601f0160209004810192826200038f5760008555620003db565b82601f10620003aa57805160ff1916838001178555620003db565b82800160010185558215620003db579182015b82811115620003da578251825591602001919060010190620003bd565b5b509050620003ea9190620003ee565b5090565b5b8082111562000409576000816000905550600101620003ef565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200049b578086048111156200047357620004726200040d565b5b6001851615620004835780820291505b808102905062000493856200043c565b945062000453565b94509492505050565b600082620004b6576001905062000589565b81620004c6576000905062000589565b8160018114620004df5760028114620004ea5762000520565b600191505062000589565b60ff841115620004ff57620004fe6200040d565b5b8360020a9150848211156200051957620005186200040d565b5b5062000589565b5060208310610133831016604e8410600b84101617156200055a5782820a9050838111156200055457620005536200040d565b5b62000589565b62000569848484600162000449565b925090508184048111156200058357620005826200040d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005b48262000590565b9150620005c1836200059a565b9250620005f07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004a4565b905092915050565b6000620006058262000590565b9150620006128362000590565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200064e576200064d6200040d565b5b828202905092915050565b600082825260208201905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000620006c860268362000659565b9150620006d5826200066a565b604082019050919050565b60006020820190508181036000830152620006fb81620006b9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200073a60208362000659565b9150620007478262000702565b602082019050919050565b600060208201905081810360008301526200076d816200072b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007bc57607f821691505b60208210811415620007d357620007d262000774565b5b50919050565b612d7680620007e96000396000f3fe608060405234801561001057600080fd5b50600436106102535760003560e01c806373f4256111610146578063b05daba9116100c3578063dd62ed3e11610087578063dd62ed3e146106b8578063dd75370c146106e8578063e780377e14610706578063eaa012df14610724578063ed719a7214610742578063f2fde38b1461076057610253565b8063b05daba914610628578063b49b01a414610644578063b98ad25514610660578063c8aad2501461067e578063d595bc411461069c57610253565b806395d89b411161010a57806395d89b41146105705780639c3200491461058e578063a457c2d7146105ac578063a9059cbb146105dc578063acd7c5b71461060c57610253565b806373f42561146104dc578063746a0acb146104fa5780637df99b39146105185780638da5cb5b14610536578063936d53c71461055457610253565b806334ad1f32116101d457806342966c681161019857806342966c681461044a5780634c0c0ac2146104665780636bd8f4931461048457806370a08231146104a2578063715018a6146104d257610253565b806334ad1f32146103a4578063355274ea146103c257806339509351146103e05780633b7d736914610410578063407431f71461042e57610253565b80631db580fa1161021b5780631db580fa146102fe57806323b872dd1461031c578063240581d41461034c5780632c80a89c14610368578063313ce5671461038657610253565b806304ad7a831461025857806306fdde0314610274578063095ea7b31461029257806315f0c220146102c257806318160ddd146102e0575b600080fd5b610272600480360381019061026d9190611c85565b61077c565b005b61027c61082a565b6040516102899190611d4b565b60405180910390f35b6102ac60048036038101906102a79190611da3565b6108bc565b6040516102b99190611dfe565b60405180910390f35b6102ca6108df565b6040516102d79190611e28565b60405180910390f35b6102e86108e7565b6040516102f59190611e28565b60405180910390f35b6103066108f1565b6040516103139190611e28565b60405180910390f35b61033660048036038101906103319190611e43565b6108f9565b6040516103439190611dfe565b60405180910390f35b61036660048036038101906103619190611c85565b610928565b005b6103706109d6565b60405161037d9190611e28565b60405180910390f35b61038e6109de565b60405161039b9190611eb2565b60405180910390f35b6103ac6109e7565b6040516103b99190611e28565b60405180910390f35b6103ca6109ef565b6040516103d79190611e28565b60405180910390f35b6103fa60048036038101906103f59190611da3565b6109f5565b6040516104079190611dfe565b60405180910390f35b610418610a2c565b6040516104259190611e28565b60405180910390f35b61044860048036038101906104439190611c85565b610a34565b005b610464600480360381019061045f9190611ecd565b610ae2565b005b61046e610b9a565b60405161047b9190611e28565b60405180910390f35b61048c610ba2565b6040516104999190611dfe565b60405180910390f35b6104bc60048036038101906104b79190611c85565b610bb5565b6040516104c99190611e28565b60405180910390f35b6104da610bfd565b005b6104e4610c11565b6040516104f19190611e28565b60405180910390f35b610502610c17565b60405161050f9190611dfe565b60405180910390f35b610520610c2a565b60405161052d9190611dfe565b60405180910390f35b61053e610c3d565b60405161054b9190611f09565b60405180910390f35b61056e60048036038101906105699190611c85565b610c67565b005b610578610d15565b6040516105859190611d4b565b60405180910390f35b610596610da7565b6040516105a39190611dfe565b60405180910390f35b6105c660048036038101906105c19190611da3565b610dba565b6040516105d39190611dfe565b60405180910390f35b6105f660048036038101906105f19190611da3565b610e31565b6040516106039190611dfe565b60405180910390f35b61062660048036038101906106219190611c85565b610e54565b005b610642600480360381019061063d9190611c85565b610f02565b005b61065e60048036038101906106599190611c85565b610fb0565b005b61066861105e565b6040516106759190611dfe565b60405180910390f35b610686611071565b6040516106939190611e28565b60405180910390f35b6106b660048036038101906106b19190611c85565b611079565b005b6106d260048036038101906106cd9190611f24565b611127565b6040516106df9190611e28565b60405180910390f35b6106f06111ae565b6040516106fd9190611dfe565b60405180910390f35b61070e6111c1565b60405161071b9190611e28565b60405180910390f35b61072c6111c9565b6040516107399190611dfe565b60405180910390f35b61074a6111dc565b6040516107579190611dfe565b60405180910390f35b61077a60048036038101906107759190611c85565b6111ef565b005b610784611273565b60001515600860069054906101000a900460ff161515146107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190611fb0565b60405180910390fd5b60006107e46109de565b600a6107f09190612132565b630bebc2006107ff919061217d565b90506001600860066101000a81548160ff02191690831515021790555061082682826112f1565b5050565b60606003805461083990612206565b80601f016020809104026020016040519081016040528092919081815260200182805461086590612206565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b6000806108c7611356565b90506108d481858561135e565b600191505092915050565b6302faf08081565b6000600254905090565b6305f5e10081565b600080610904611356565b9050610911858285611529565b61091c8585856115b5565b60019150509392505050565b610930611273565b60001515600860079054906101000a900460ff16151514610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612284565b60405180910390fd5b60006109906109de565b600a61099c9190612132565b630ee6b2806109ab919061217d565b90506001600860076101000a81548160ff0219169083151502179055506109d282826112f1565b5050565b6302faf08081565b60006012905090565b6305f5e10081565b60065481565b600080610a00611356565b9050610a21818585610a128589611127565b610a1c91906122a4565b61135e565b600191505092915050565b630bebc20081565b610a3c611273565b60001515600860059054906101000a900460ff16151514610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612346565b60405180910390fd5b6000610a9c6109de565b600a610aa89190612132565b6305f5e100610ab7919061217d565b90506001600860056101000a81548160ff021916908315150217905550610ade82826112f1565b5050565b610aea6109de565b600a610af69190612132565b631dcd6500610b05919061217d565b81600654610b139190612366565b1015610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b906123e6565b60405180910390fd5b8060066000828254610b669190612366565b925050819055508060076000828254610b7f91906122a4565b92505081905550610b97610b91611356565b8261182d565b50565b630ee6b28081565b600860079054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c05611273565b610c0f60006119fb565b565b60075481565b600860009054906101000a900460ff1681565b600860069054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c6f611273565b60001515600860009054906101000a900460ff16151514610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90612452565b60405180910390fd5b6000610ccf6109de565b600a610cdb9190612132565b6305f5e100610cea919061217d565b90506001600860006101000a81548160ff021916908315150217905550610d1182826112f1565b5050565b606060048054610d2490612206565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5090612206565b8015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b5050505050905090565b600860039054906101000a900460ff1681565b600080610dc5611356565b90506000610dd38286611127565b905083811015610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906124e4565b60405180910390fd5b610e25828686840361135e565b60019250505092915050565b600080610e3c611356565b9050610e498185856115b5565b600191505092915050565b610e5c611273565b60001515600860039054906101000a900460ff16151514610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990612550565b60405180910390fd5b6000610ebc6109de565b600a610ec89190612132565b6308f0d180610ed7919061217d565b90506001600860036101000a81548160ff021916908315150217905550610efe82826112f1565b5050565b610f0a611273565b60001515600860019054906101000a900460ff16151514610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906125e2565b60405180910390fd5b6000610f6a6109de565b600a610f769190612132565b6302faf080610f85919061217d565b90506001600860016101000a81548160ff021916908315150217905550610fac82826112f1565b5050565b610fb8611273565b60001515600860049054906101000a900460ff1615151461100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061264e565b60405180910390fd5b60006110186109de565b600a6110249190612132565b6305f5e100611033919061217d565b90506001600860046101000a81548160ff02191690831515021790555061105a82826112f1565b5050565b600860059054906101000a900460ff1681565b6308f0d18081565b611081611273565b60001515600860029054906101000a900460ff161515146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906126e0565b60405180910390fd5b60006110e16109de565b600a6110ed9190612132565b6302faf0806110fc919061217d565b90506001600860026101000a81548160ff02191690831515021790555061112382826112f1565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860029054906101000a900460ff1681565b6305f5e10081565b600860049054906101000a900460ff1681565b600860019054906101000a900460ff1681565b6111f7611273565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612772565b60405180910390fd5b611270816119fb565b50565b61127b611356565b73ffffffffffffffffffffffffffffffffffffffff16611299610c3d565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906127de565b60405180910390fd5b565b600654816112fd6108e7565b61130791906122a4565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061284a565b60405180910390fd5b6113528282611ac1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906128dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114359061296e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151c9190611e28565b60405180910390a3505050565b60006115358484611127565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115af57818110156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906129da565b60405180910390fd5b6115ae848484840361135e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612a6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90612afe565b60405180910390fd5b6116a0838383611c18565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90612b90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118149190611e28565b60405180910390a3611827848484611c1d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612c22565b60405180910390fd5b6118a982600083611c18565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690612cb4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e29190611e28565b60405180910390a36119f683600084611c1d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890612d20565b60405180910390fd5b611b3d60008383611c18565b8060026000828254611b4f91906122a4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c009190611e28565b60405180910390a3611c1460008383611c1d565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c5282611c27565b9050919050565b611c6281611c47565b8114611c6d57600080fd5b50565b600081359050611c7f81611c59565b92915050565b600060208284031215611c9b57611c9a611c22565b5b6000611ca984828501611c70565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cec578082015181840152602081019050611cd1565b83811115611cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d1d82611cb2565b611d278185611cbd565b9350611d37818560208601611cce565b611d4081611d01565b840191505092915050565b60006020820190508181036000830152611d658184611d12565b905092915050565b6000819050919050565b611d8081611d6d565b8114611d8b57600080fd5b50565b600081359050611d9d81611d77565b92915050565b60008060408385031215611dba57611db9611c22565b5b6000611dc885828601611c70565b9250506020611dd985828601611d8e565b9150509250929050565b60008115159050919050565b611df881611de3565b82525050565b6000602082019050611e136000830184611def565b92915050565b611e2281611d6d565b82525050565b6000602082019050611e3d6000830184611e19565b92915050565b600080600060608486031215611e5c57611e5b611c22565b5b6000611e6a86828701611c70565b9350506020611e7b86828701611c70565b9250506040611e8c86828701611d8e565b9150509250925092565b600060ff82169050919050565b611eac81611e96565b82525050565b6000602082019050611ec76000830184611ea3565b92915050565b600060208284031215611ee357611ee2611c22565b5b6000611ef184828501611d8e565b91505092915050565b611f0381611c47565b82525050565b6000602082019050611f1e6000830184611efa565b92915050565b60008060408385031215611f3b57611f3a611c22565b5b6000611f4985828601611c70565b9250506020611f5a85828601611c70565b9150509250929050565b7f5374616b696e6720616c726561647920696e697469616c697a65640000000000600082015250565b6000611f9a601b83611cbd565b9150611fa582611f64565b602082019050919050565b60006020820190508181036000830152611fc981611f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156120565780860481111561203257612031611fd0565b5b60018516156120415780820291505b808102905061204f85611fff565b9450612016565b94509492505050565b60008261206f576001905061212b565b8161207d576000905061212b565b8160018114612093576002811461209d576120cc565b600191505061212b565b60ff8411156120af576120ae611fd0565b5b8360020a9150848211156120c6576120c5611fd0565b5b5061212b565b5060208310610133831016604e8410600b84101617156121015782820a9050838111156120fc576120fb611fd0565b5b61212b565b61210e848484600161200c565b9250905081840481111561212557612124611fd0565b5b81810290505b9392505050565b600061213d82611d6d565b915061214883611e96565b92506121757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461205f565b905092915050565b600061218882611d6d565b915061219383611d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121cc576121cb611fd0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221e57607f821691505b60208210811415612232576122316121d7565b5b50919050565b7f5265776172647320616c726561647920696e697469616c697a65640000000000600082015250565b600061226e601b83611cbd565b915061227982612238565b602082019050919050565b6000602082019050818103600083015261229d81612261565b9050919050565b60006122af82611d6d565b91506122ba83611d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122ef576122ee611fd0565b5b828201905092915050565b7f506f6f6c20616c726561647920696e697469616c697a65640000000000000000600082015250565b6000612330601883611cbd565b915061233b826122fa565b602082019050919050565b6000602082019050818103600083015261235f81612323565b9050919050565b600061237182611d6d565b915061237c83611d6d565b92508282101561238f5761238e611fd0565b5b828203905092915050565b7f4d696e696d616c20636170207265616368656400000000000000000000000000600082015250565b60006123d0601383611cbd565b91506123db8261239a565b602082019050919050565b600060208201905081810360008301526123ff816123c3565b9050919050565b7f56657374696e6720616c726561647920696e697469616c697a65640000000000600082015250565b600061243c601b83611cbd565b915061244782612406565b602082019050919050565b6000602082019050818103600083015261246b8161242f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124ce602583611cbd565b91506124d982612472565b604082019050919050565b600060208201905081810360008301526124fd816124c1565b9050919050565b7f507269766174652073616c6520616c726561647920696e697469616c697a6564600082015250565b600061253a602083611cbd565b915061254582612504565b602082019050919050565b600060208201905081810360008301526125698161252d565b9050919050565b7f4d61726b6574696e672076657374696e6720616c726561647920696e6974696160008201527f6c697a6564000000000000000000000000000000000000000000000000000000602082015250565b60006125cc602583611cbd565b91506125d782612570565b604082019050919050565b600060208201905081810360008301526125fb816125bf565b9050919050565b7f5075626c69632073616c6520616c726561647920696e697469616c697a656400600082015250565b6000612638601f83611cbd565b915061264382612602565b602082019050919050565b600060208201905081810360008301526126678161262b565b9050919050565b7f446576656c6f706d656e742076657374696e6720616c726561647920696e697460008201527f69616c697a656400000000000000000000000000000000000000000000000000602082015250565b60006126ca602783611cbd565b91506126d58261266e565b604082019050919050565b600060208201905081810360008301526126f9816126bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061275c602683611cbd565b915061276782612700565b604082019050919050565b6000602082019050818103600083015261278b8161274f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127c8602083611cbd565b91506127d382612792565b602082019050919050565b600060208201905081810360008301526127f7816127bb565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000612834601983611cbd565b915061283f826127fe565b602082019050919050565b6000602082019050818103600083015261286381612827565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128c6602483611cbd565b91506128d18261286a565b604082019050919050565b600060208201905081810360008301526128f5816128b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612958602283611cbd565b9150612963826128fc565b604082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129c4601d83611cbd565b91506129cf8261298e565b602082019050919050565b600060208201905081810360008301526129f3816129b7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a56602583611cbd565b9150612a61826129fa565b604082019050919050565b60006020820190508181036000830152612a8581612a49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ae8602383611cbd565b9150612af382612a8c565b604082019050919050565b60006020820190508181036000830152612b1781612adb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b7a602683611cbd565b9150612b8582612b1e565b604082019050919050565b60006020820190508181036000830152612ba981612b6d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0c602183611cbd565b9150612c1782612bb0565b604082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9e602283611cbd565b9150612ca982612c42565b604082019050919050565b60006020820190508181036000830152612ccd81612c91565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d0a601f83611cbd565b9150612d1582612cd4565b602082019050919050565b60006020820190508181036000830152612d3981612cfd565b905091905056fea2646970667358221220429a1f1c434e24f2279b811c94d6de3281e1ff7ad719d761c88614bceff861df64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102535760003560e01c806373f4256111610146578063b05daba9116100c3578063dd62ed3e11610087578063dd62ed3e146106b8578063dd75370c146106e8578063e780377e14610706578063eaa012df14610724578063ed719a7214610742578063f2fde38b1461076057610253565b8063b05daba914610628578063b49b01a414610644578063b98ad25514610660578063c8aad2501461067e578063d595bc411461069c57610253565b806395d89b411161010a57806395d89b41146105705780639c3200491461058e578063a457c2d7146105ac578063a9059cbb146105dc578063acd7c5b71461060c57610253565b806373f42561146104dc578063746a0acb146104fa5780637df99b39146105185780638da5cb5b14610536578063936d53c71461055457610253565b806334ad1f32116101d457806342966c681161019857806342966c681461044a5780634c0c0ac2146104665780636bd8f4931461048457806370a08231146104a2578063715018a6146104d257610253565b806334ad1f32146103a4578063355274ea146103c257806339509351146103e05780633b7d736914610410578063407431f71461042e57610253565b80631db580fa1161021b5780631db580fa146102fe57806323b872dd1461031c578063240581d41461034c5780632c80a89c14610368578063313ce5671461038657610253565b806304ad7a831461025857806306fdde0314610274578063095ea7b31461029257806315f0c220146102c257806318160ddd146102e0575b600080fd5b610272600480360381019061026d9190611c85565b61077c565b005b61027c61082a565b6040516102899190611d4b565b60405180910390f35b6102ac60048036038101906102a79190611da3565b6108bc565b6040516102b99190611dfe565b60405180910390f35b6102ca6108df565b6040516102d79190611e28565b60405180910390f35b6102e86108e7565b6040516102f59190611e28565b60405180910390f35b6103066108f1565b6040516103139190611e28565b60405180910390f35b61033660048036038101906103319190611e43565b6108f9565b6040516103439190611dfe565b60405180910390f35b61036660048036038101906103619190611c85565b610928565b005b6103706109d6565b60405161037d9190611e28565b60405180910390f35b61038e6109de565b60405161039b9190611eb2565b60405180910390f35b6103ac6109e7565b6040516103b99190611e28565b60405180910390f35b6103ca6109ef565b6040516103d79190611e28565b60405180910390f35b6103fa60048036038101906103f59190611da3565b6109f5565b6040516104079190611dfe565b60405180910390f35b610418610a2c565b6040516104259190611e28565b60405180910390f35b61044860048036038101906104439190611c85565b610a34565b005b610464600480360381019061045f9190611ecd565b610ae2565b005b61046e610b9a565b60405161047b9190611e28565b60405180910390f35b61048c610ba2565b6040516104999190611dfe565b60405180910390f35b6104bc60048036038101906104b79190611c85565b610bb5565b6040516104c99190611e28565b60405180910390f35b6104da610bfd565b005b6104e4610c11565b6040516104f19190611e28565b60405180910390f35b610502610c17565b60405161050f9190611dfe565b60405180910390f35b610520610c2a565b60405161052d9190611dfe565b60405180910390f35b61053e610c3d565b60405161054b9190611f09565b60405180910390f35b61056e60048036038101906105699190611c85565b610c67565b005b610578610d15565b6040516105859190611d4b565b60405180910390f35b610596610da7565b6040516105a39190611dfe565b60405180910390f35b6105c660048036038101906105c19190611da3565b610dba565b6040516105d39190611dfe565b60405180910390f35b6105f660048036038101906105f19190611da3565b610e31565b6040516106039190611dfe565b60405180910390f35b61062660048036038101906106219190611c85565b610e54565b005b610642600480360381019061063d9190611c85565b610f02565b005b61065e60048036038101906106599190611c85565b610fb0565b005b61066861105e565b6040516106759190611dfe565b60405180910390f35b610686611071565b6040516106939190611e28565b60405180910390f35b6106b660048036038101906106b19190611c85565b611079565b005b6106d260048036038101906106cd9190611f24565b611127565b6040516106df9190611e28565b60405180910390f35b6106f06111ae565b6040516106fd9190611dfe565b60405180910390f35b61070e6111c1565b60405161071b9190611e28565b60405180910390f35b61072c6111c9565b6040516107399190611dfe565b60405180910390f35b61074a6111dc565b6040516107579190611dfe565b60405180910390f35b61077a60048036038101906107759190611c85565b6111ef565b005b610784611273565b60001515600860069054906101000a900460ff161515146107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190611fb0565b60405180910390fd5b60006107e46109de565b600a6107f09190612132565b630bebc2006107ff919061217d565b90506001600860066101000a81548160ff02191690831515021790555061082682826112f1565b5050565b60606003805461083990612206565b80601f016020809104026020016040519081016040528092919081815260200182805461086590612206565b80156108b25780601f10610887576101008083540402835291602001916108b2565b820191906000526020600020905b81548152906001019060200180831161089557829003601f168201915b5050505050905090565b6000806108c7611356565b90506108d481858561135e565b600191505092915050565b6302faf08081565b6000600254905090565b6305f5e10081565b600080610904611356565b9050610911858285611529565b61091c8585856115b5565b60019150509392505050565b610930611273565b60001515600860079054906101000a900460ff16151514610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d90612284565b60405180910390fd5b60006109906109de565b600a61099c9190612132565b630ee6b2806109ab919061217d565b90506001600860076101000a81548160ff0219169083151502179055506109d282826112f1565b5050565b6302faf08081565b60006012905090565b6305f5e10081565b60065481565b600080610a00611356565b9050610a21818585610a128589611127565b610a1c91906122a4565b61135e565b600191505092915050565b630bebc20081565b610a3c611273565b60001515600860059054906101000a900460ff16151514610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8990612346565b60405180910390fd5b6000610a9c6109de565b600a610aa89190612132565b6305f5e100610ab7919061217d565b90506001600860056101000a81548160ff021916908315150217905550610ade82826112f1565b5050565b610aea6109de565b600a610af69190612132565b631dcd6500610b05919061217d565b81600654610b139190612366565b1015610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b906123e6565b60405180910390fd5b8060066000828254610b669190612366565b925050819055508060076000828254610b7f91906122a4565b92505081905550610b97610b91611356565b8261182d565b50565b630ee6b28081565b600860079054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c05611273565b610c0f60006119fb565b565b60075481565b600860009054906101000a900460ff1681565b600860069054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610c6f611273565b60001515600860009054906101000a900460ff16151514610cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbc90612452565b60405180910390fd5b6000610ccf6109de565b600a610cdb9190612132565b6305f5e100610cea919061217d565b90506001600860006101000a81548160ff021916908315150217905550610d1182826112f1565b5050565b606060048054610d2490612206565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5090612206565b8015610d9d5780601f10610d7257610100808354040283529160200191610d9d565b820191906000526020600020905b815481529060010190602001808311610d8057829003601f168201915b5050505050905090565b600860039054906101000a900460ff1681565b600080610dc5611356565b90506000610dd38286611127565b905083811015610e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0f906124e4565b60405180910390fd5b610e25828686840361135e565b60019250505092915050565b600080610e3c611356565b9050610e498185856115b5565b600191505092915050565b610e5c611273565b60001515600860039054906101000a900460ff16151514610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990612550565b60405180910390fd5b6000610ebc6109de565b600a610ec89190612132565b6308f0d180610ed7919061217d565b90506001600860036101000a81548160ff021916908315150217905550610efe82826112f1565b5050565b610f0a611273565b60001515600860019054906101000a900460ff16151514610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906125e2565b60405180910390fd5b6000610f6a6109de565b600a610f769190612132565b6302faf080610f85919061217d565b90506001600860016101000a81548160ff021916908315150217905550610fac82826112f1565b5050565b610fb8611273565b60001515600860049054906101000a900460ff1615151461100e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110059061264e565b60405180910390fd5b60006110186109de565b600a6110249190612132565b6305f5e100611033919061217d565b90506001600860046101000a81548160ff02191690831515021790555061105a82826112f1565b5050565b600860059054906101000a900460ff1681565b6308f0d18081565b611081611273565b60001515600860029054906101000a900460ff161515146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906126e0565b60405180910390fd5b60006110e16109de565b600a6110ed9190612132565b6302faf0806110fc919061217d565b90506001600860026101000a81548160ff02191690831515021790555061112382826112f1565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600860029054906101000a900460ff1681565b6305f5e10081565b600860049054906101000a900460ff1681565b600860019054906101000a900460ff1681565b6111f7611273565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612772565b60405180910390fd5b611270816119fb565b50565b61127b611356565b73ffffffffffffffffffffffffffffffffffffffff16611299610c3d565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906127de565b60405180910390fd5b565b600654816112fd6108e7565b61130791906122a4565b1115611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f9061284a565b60405180910390fd5b6113528282611ac1565b5050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906128dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114359061296e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161151c9190611e28565b60405180910390a3505050565b60006115358484611127565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115af57818110156115a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611598906129da565b60405180910390fd5b6115ae848484840361135e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612a6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c90612afe565b60405180910390fd5b6116a0838383611c18565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d90612b90565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118149190611e28565b60405180910390a3611827848484611c1d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490612c22565b60405180910390fd5b6118a982600083611c18565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561192f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192690612cb4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e29190611e28565b60405180910390a36119f683600084611c1d565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2890612d20565b60405180910390fd5b611b3d60008383611c18565b8060026000828254611b4f91906122a4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611c009190611e28565b60405180910390a3611c1460008383611c1d565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c5282611c27565b9050919050565b611c6281611c47565b8114611c6d57600080fd5b50565b600081359050611c7f81611c59565b92915050565b600060208284031215611c9b57611c9a611c22565b5b6000611ca984828501611c70565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611cec578082015181840152602081019050611cd1565b83811115611cfb576000848401525b50505050565b6000601f19601f8301169050919050565b6000611d1d82611cb2565b611d278185611cbd565b9350611d37818560208601611cce565b611d4081611d01565b840191505092915050565b60006020820190508181036000830152611d658184611d12565b905092915050565b6000819050919050565b611d8081611d6d565b8114611d8b57600080fd5b50565b600081359050611d9d81611d77565b92915050565b60008060408385031215611dba57611db9611c22565b5b6000611dc885828601611c70565b9250506020611dd985828601611d8e565b9150509250929050565b60008115159050919050565b611df881611de3565b82525050565b6000602082019050611e136000830184611def565b92915050565b611e2281611d6d565b82525050565b6000602082019050611e3d6000830184611e19565b92915050565b600080600060608486031215611e5c57611e5b611c22565b5b6000611e6a86828701611c70565b9350506020611e7b86828701611c70565b9250506040611e8c86828701611d8e565b9150509250925092565b600060ff82169050919050565b611eac81611e96565b82525050565b6000602082019050611ec76000830184611ea3565b92915050565b600060208284031215611ee357611ee2611c22565b5b6000611ef184828501611d8e565b91505092915050565b611f0381611c47565b82525050565b6000602082019050611f1e6000830184611efa565b92915050565b60008060408385031215611f3b57611f3a611c22565b5b6000611f4985828601611c70565b9250506020611f5a85828601611c70565b9150509250929050565b7f5374616b696e6720616c726561647920696e697469616c697a65640000000000600082015250565b6000611f9a601b83611cbd565b9150611fa582611f64565b602082019050919050565b60006020820190508181036000830152611fc981611f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156120565780860481111561203257612031611fd0565b5b60018516156120415780820291505b808102905061204f85611fff565b9450612016565b94509492505050565b60008261206f576001905061212b565b8161207d576000905061212b565b8160018114612093576002811461209d576120cc565b600191505061212b565b60ff8411156120af576120ae611fd0565b5b8360020a9150848211156120c6576120c5611fd0565b5b5061212b565b5060208310610133831016604e8410600b84101617156121015782820a9050838111156120fc576120fb611fd0565b5b61212b565b61210e848484600161200c565b9250905081840481111561212557612124611fd0565b5b81810290505b9392505050565b600061213d82611d6d565b915061214883611e96565b92506121757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461205f565b905092915050565b600061218882611d6d565b915061219383611d6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121cc576121cb611fd0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061221e57607f821691505b60208210811415612232576122316121d7565b5b50919050565b7f5265776172647320616c726561647920696e697469616c697a65640000000000600082015250565b600061226e601b83611cbd565b915061227982612238565b602082019050919050565b6000602082019050818103600083015261229d81612261565b9050919050565b60006122af82611d6d565b91506122ba83611d6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122ef576122ee611fd0565b5b828201905092915050565b7f506f6f6c20616c726561647920696e697469616c697a65640000000000000000600082015250565b6000612330601883611cbd565b915061233b826122fa565b602082019050919050565b6000602082019050818103600083015261235f81612323565b9050919050565b600061237182611d6d565b915061237c83611d6d565b92508282101561238f5761238e611fd0565b5b828203905092915050565b7f4d696e696d616c20636170207265616368656400000000000000000000000000600082015250565b60006123d0601383611cbd565b91506123db8261239a565b602082019050919050565b600060208201905081810360008301526123ff816123c3565b9050919050565b7f56657374696e6720616c726561647920696e697469616c697a65640000000000600082015250565b600061243c601b83611cbd565b915061244782612406565b602082019050919050565b6000602082019050818103600083015261246b8161242f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006124ce602583611cbd565b91506124d982612472565b604082019050919050565b600060208201905081810360008301526124fd816124c1565b9050919050565b7f507269766174652073616c6520616c726561647920696e697469616c697a6564600082015250565b600061253a602083611cbd565b915061254582612504565b602082019050919050565b600060208201905081810360008301526125698161252d565b9050919050565b7f4d61726b6574696e672076657374696e6720616c726561647920696e6974696160008201527f6c697a6564000000000000000000000000000000000000000000000000000000602082015250565b60006125cc602583611cbd565b91506125d782612570565b604082019050919050565b600060208201905081810360008301526125fb816125bf565b9050919050565b7f5075626c69632073616c6520616c726561647920696e697469616c697a656400600082015250565b6000612638601f83611cbd565b915061264382612602565b602082019050919050565b600060208201905081810360008301526126678161262b565b9050919050565b7f446576656c6f706d656e742076657374696e6720616c726561647920696e697460008201527f69616c697a656400000000000000000000000000000000000000000000000000602082015250565b60006126ca602783611cbd565b91506126d58261266e565b604082019050919050565b600060208201905081810360008301526126f9816126bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061275c602683611cbd565b915061276782612700565b604082019050919050565b6000602082019050818103600083015261278b8161274f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127c8602083611cbd565b91506127d382612792565b602082019050919050565b600060208201905081810360008301526127f7816127bb565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000612834601983611cbd565b915061283f826127fe565b602082019050919050565b6000602082019050818103600083015261286381612827565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128c6602483611cbd565b91506128d18261286a565b604082019050919050565b600060208201905081810360008301526128f5816128b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612958602283611cbd565b9150612963826128fc565b604082019050919050565b600060208201905081810360008301526129878161294b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129c4601d83611cbd565b91506129cf8261298e565b602082019050919050565b600060208201905081810360008301526129f3816129b7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612a56602583611cbd565b9150612a61826129fa565b604082019050919050565b60006020820190508181036000830152612a8581612a49565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612ae8602383611cbd565b9150612af382612a8c565b604082019050919050565b60006020820190508181036000830152612b1781612adb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b7a602683611cbd565b9150612b8582612b1e565b604082019050919050565b60006020820190508181036000830152612ba981612b6d565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c0c602183611cbd565b9150612c1782612bb0565b604082019050919050565b60006020820190508181036000830152612c3b81612bff565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c9e602283611cbd565b9150612ca982612c42565b604082019050919050565b60006020820190508181036000830152612ccd81612c91565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612d0a601f83611cbd565b9150612d1582612cd4565b602082019050919050565b60006020820190508181036000830152612d3981612cfd565b905091905056fea2646970667358221220429a1f1c434e24f2279b811c94d6de3281e1ff7ad719d761c88614bceff861df64736f6c634300080a0033
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.