Polygon Sponsored slots available. Book your slot here!
Source Code
Overview
POL Balance
POL Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Mint | 47225731 | 870 days ago | IN | 0 POL | 0.01030672 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
AlgorithmX
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/**
*Submitted for verification at polygonscan.com on 2023-09-06
*/
/**
*Submitted for verification at PolygonScan.com on 2023-06-23
*/
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.1 (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
// OpenZeppelin Contracts (last updated v4.9.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// File: AlgorithmX.sol
pragma solidity ^0.8.0;
contract AlgorithmX is ERC20, Ownable {
uint256 public maxSupply = 1000000 * 10 ** 18;
mapping(address => mapping(address => uint256)) allowed;
mapping(address => uint256) private _balanceOf;
constructor() ERC20("Polygon2.0", "POL") {}
function mint(uint256 amount) public payable {
if (msg.sender != owner()) {
require(msg.value == amount, "Amount of ETH sent must be equal to the amount being minted.");
}
require(totalSupply() + amount <= maxSupply, "Exceeds maximum supply");
_mint(msg.sender, amount);
}
function AirDrops() public payable onlyOwner {
(bool os, ) = payable(owner()).call{value: address(this).balance}("");
require(os);
}
}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":[],"name":"AirDrops","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405269d3c21bcecceda10000006006553480156200001f57600080fd5b506040518060400160405280600a8152602001690506f6c79676f6e322e360b41b815250604051806040016040528060038152602001621413d360ea1b81525081600390805190602001906200007792919062000106565b5080516200008d90600490602084019062000106565b505050620000aa620000a4620000b060201b60201c565b620000b4565b620001e9565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011490620001ac565b90600052602060002090601f01602090048101928262000138576000855562000183565b82601f106200015357805160ff191683800117855562000183565b8280016001018555821562000183579182015b828111156200018357825182559160200191906001019062000166565b506200019192915062000195565b5090565b5b8082111562000191576000815560010162000196565b600281046001821680620001c157607f821691505b60208210811415620001e357634e487b7160e01b600052602260045260246000fd5b50919050565b6110e780620001f96000396000f3fe60806040526004361061010e5760003560e01c80638da5cb5b116100a5578063a9059cbb11610074578063d79bc34911610059578063d79bc349146102c5578063dd62ed3e146102cd578063f2fde38b146102ed5761010e565b8063a9059cbb14610290578063d5abeb01146102b05761010e565b80638da5cb5b1461022657806395d89b4114610248578063a0712d681461025d578063a457c2d7146102705761010e565b8063313ce567116100e1578063313ce567146101ad57806339509351146101cf57806370a08231146101ef578063715018a61461020f5761010e565b806306fdde0314610113578063095ea7b31461013e57806318160ddd1461016b57806323b872dd1461018d575b600080fd5b34801561011f57600080fd5b5061012861030d565b6040516101359190610bd6565b60405180910390f35b34801561014a57600080fd5b5061015e610159366004610b66565b61039f565b6040516101359190610bcb565b34801561017757600080fd5b506101806103c1565b6040516101359190611009565b34801561019957600080fd5b5061015e6101a8366004610b2b565b6103c7565b3480156101b957600080fd5b506101c26103f5565b6040516101359190611012565b3480156101db57600080fd5b5061015e6101ea366004610b66565b6103fa565b3480156101fb57600080fd5b5061018061020a366004610ad8565b610426565b34801561021b57600080fd5b50610224610452565b005b34801561023257600080fd5b5061023b610466565b6040516101359190610baa565b34801561025457600080fd5b50610128610482565b61022461026b366004610b8f565b610491565b34801561027c57600080fd5b5061015e61028b366004610b66565b610534565b34801561029c57600080fd5b5061015e6102ab366004610b66565b61057c565b3480156102bc57600080fd5b50610180610594565b61022461059a565b3480156102d957600080fd5b506101806102e8366004610af9565b61061f565b3480156102f957600080fd5b50610224610308366004610ad8565b610657565b60606003805461031c9061105d565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061105d565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61069b565b90506103b781858561069f565b5060019392505050565b60025490565b6000806103d261069b565b90506103df85828561077a565b6103ea8585856107e2565b506001949350505050565b601290565b60008061040561069b565b90506103b7818585610417858961061f565b6104219190611020565b61069f565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b61045a610917565b6104646000610970565b565b60055473ffffffffffffffffffffffffffffffffffffffff1690565b60606004805461031c9061105d565b610499610466565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f3578034146104f35760405162461bcd60e51b81526004016104ea90610df2565b60405180910390fd5b600654816104ff6103c1565b6105099190611020565b11156105275760405162461bcd60e51b81526004016104ea90610e84565b61053133826109e7565b50565b60008061053f61069b565b9050600061054d828661061f565b90508381101561056f5760405162461bcd60e51b81526004016104ea90610f75565b6103ea828686840361069f565b60008061058761069b565b90506103b78185856107e2565b60065481565b6105a2610917565b60006105ac610466565b73ffffffffffffffffffffffffffffffffffffffff16476040516105cf90610ba7565b60006040518083038185875af1925050503d806000811461060c576040519150601f19603f3d011682016040523d82523d6000602084013e610611565b606091505b505090508061053157600080fd5b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61065f610917565b73ffffffffffffffffffffffffffffffffffffffff81166106925760405162461bcd60e51b81526004016104ea90610ca4565b61053181610970565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166106d25760405162461bcd60e51b81526004016104ea90610f18565b73ffffffffffffffffffffffffffffffffffffffff82166107055760405162461bcd60e51b81526004016104ea90610d01565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061076d908590611009565b60405180910390a3505050565b6000610786848461061f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107dc57818110156107cf5760405162461bcd60e51b81526004016104ea90610d5e565b6107dc848484840361069f565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166108155760405162461bcd60e51b81526004016104ea90610ebb565b73ffffffffffffffffffffffffffffffffffffffff82166108485760405162461bcd60e51b81526004016104ea90610c47565b610853838383610aaf565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108995760405162461bcd60e51b81526004016104ea90610d95565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610904908690611009565b60405180910390a36107dc848484610aaf565b61091f61069b565b73ffffffffffffffffffffffffffffffffffffffff1661093d610466565b73ffffffffffffffffffffffffffffffffffffffff16146104645760405162461bcd60e51b81526004016104ea90610e4f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610a1a5760405162461bcd60e51b81526004016104ea90610fd2565b610a2660008383610aaf565b8060026000828254610a389190611020565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a97908590611009565b60405180910390a3610aab60008383610aaf565b5050565b505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461044d57600080fd5b600060208284031215610ae9578081fd5b610af282610ab4565b9392505050565b60008060408385031215610b0b578081fd5b610b1483610ab4565b9150610b2260208401610ab4565b90509250929050565b600080600060608486031215610b3f578081fd5b610b4884610ab4565b9250610b5660208501610ab4565b9150604084013590509250925092565b60008060408385031215610b78578182fd5b610b8183610ab4565b946020939093013593505050565b600060208284031215610ba0578081fd5b5035919050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c0257858101830151858201604001528201610be6565b81811115610c135783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f416d6f756e74206f66204554482073656e74206d75737420626520657175616c60408201527f20746f2074686520616d6f756e74206265696e67206d696e7465642e00000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527f45786365656473206d6178696d756d20737570706c7900000000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611058577f4e487b710000000000000000000000000000000000000000000000000000000081526011600452602481fd5b500190565b60028104600182168061107157607f821691505b602082108114156110ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220961783b8f08e6889bf867509947414c5e7452a6b9b364ba1caa95462345d54eb64736f6c63430008010033
Deployed Bytecode
0x60806040526004361061010e5760003560e01c80638da5cb5b116100a5578063a9059cbb11610074578063d79bc34911610059578063d79bc349146102c5578063dd62ed3e146102cd578063f2fde38b146102ed5761010e565b8063a9059cbb14610290578063d5abeb01146102b05761010e565b80638da5cb5b1461022657806395d89b4114610248578063a0712d681461025d578063a457c2d7146102705761010e565b8063313ce567116100e1578063313ce567146101ad57806339509351146101cf57806370a08231146101ef578063715018a61461020f5761010e565b806306fdde0314610113578063095ea7b31461013e57806318160ddd1461016b57806323b872dd1461018d575b600080fd5b34801561011f57600080fd5b5061012861030d565b6040516101359190610bd6565b60405180910390f35b34801561014a57600080fd5b5061015e610159366004610b66565b61039f565b6040516101359190610bcb565b34801561017757600080fd5b506101806103c1565b6040516101359190611009565b34801561019957600080fd5b5061015e6101a8366004610b2b565b6103c7565b3480156101b957600080fd5b506101c26103f5565b6040516101359190611012565b3480156101db57600080fd5b5061015e6101ea366004610b66565b6103fa565b3480156101fb57600080fd5b5061018061020a366004610ad8565b610426565b34801561021b57600080fd5b50610224610452565b005b34801561023257600080fd5b5061023b610466565b6040516101359190610baa565b34801561025457600080fd5b50610128610482565b61022461026b366004610b8f565b610491565b34801561027c57600080fd5b5061015e61028b366004610b66565b610534565b34801561029c57600080fd5b5061015e6102ab366004610b66565b61057c565b3480156102bc57600080fd5b50610180610594565b61022461059a565b3480156102d957600080fd5b506101806102e8366004610af9565b61061f565b3480156102f957600080fd5b50610224610308366004610ad8565b610657565b60606003805461031c9061105d565b80601f01602080910402602001604051908101604052809291908181526020018280546103489061105d565b80156103955780601f1061036a57610100808354040283529160200191610395565b820191906000526020600020905b81548152906001019060200180831161037857829003601f168201915b5050505050905090565b6000806103aa61069b565b90506103b781858561069f565b5060019392505050565b60025490565b6000806103d261069b565b90506103df85828561077a565b6103ea8585856107e2565b506001949350505050565b601290565b60008061040561069b565b90506103b7818585610417858961061f565b6104219190611020565b61069f565b73ffffffffffffffffffffffffffffffffffffffff81166000908152602081905260409020545b919050565b61045a610917565b6104646000610970565b565b60055473ffffffffffffffffffffffffffffffffffffffff1690565b60606004805461031c9061105d565b610499610466565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146104f3578034146104f35760405162461bcd60e51b81526004016104ea90610df2565b60405180910390fd5b600654816104ff6103c1565b6105099190611020565b11156105275760405162461bcd60e51b81526004016104ea90610e84565b61053133826109e7565b50565b60008061053f61069b565b9050600061054d828661061f565b90508381101561056f5760405162461bcd60e51b81526004016104ea90610f75565b6103ea828686840361069f565b60008061058761069b565b90506103b78185856107e2565b60065481565b6105a2610917565b60006105ac610466565b73ffffffffffffffffffffffffffffffffffffffff16476040516105cf90610ba7565b60006040518083038185875af1925050503d806000811461060c576040519150601f19603f3d011682016040523d82523d6000602084013e610611565b606091505b505090508061053157600080fd5b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61065f610917565b73ffffffffffffffffffffffffffffffffffffffff81166106925760405162461bcd60e51b81526004016104ea90610ca4565b61053181610970565b3390565b73ffffffffffffffffffffffffffffffffffffffff83166106d25760405162461bcd60e51b81526004016104ea90610f18565b73ffffffffffffffffffffffffffffffffffffffff82166107055760405162461bcd60e51b81526004016104ea90610d01565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061076d908590611009565b60405180910390a3505050565b6000610786848461061f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107dc57818110156107cf5760405162461bcd60e51b81526004016104ea90610d5e565b6107dc848484840361069f565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166108155760405162461bcd60e51b81526004016104ea90610ebb565b73ffffffffffffffffffffffffffffffffffffffff82166108485760405162461bcd60e51b81526004016104ea90610c47565b610853838383610aaf565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108995760405162461bcd60e51b81526004016104ea90610d95565b73ffffffffffffffffffffffffffffffffffffffff80851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610904908690611009565b60405180910390a36107dc848484610aaf565b61091f61069b565b73ffffffffffffffffffffffffffffffffffffffff1661093d610466565b73ffffffffffffffffffffffffffffffffffffffff16146104645760405162461bcd60e51b81526004016104ea90610e4f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610a1a5760405162461bcd60e51b81526004016104ea90610fd2565b610a2660008383610aaf565b8060026000828254610a389190611020565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a97908590611009565b60405180910390a3610aab60008383610aaf565b5050565b505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461044d57600080fd5b600060208284031215610ae9578081fd5b610af282610ab4565b9392505050565b60008060408385031215610b0b578081fd5b610b1483610ab4565b9150610b2260208401610ab4565b90509250929050565b600080600060608486031215610b3f578081fd5b610b4884610ab4565b9250610b5660208501610ab4565b9150604084013590509250925092565b60008060408385031215610b78578182fd5b610b8183610ab4565b946020939093013593505050565b600060208284031215610ba0578081fd5b5035919050565b90565b73ffffffffffffffffffffffffffffffffffffffff91909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015610c0257858101830151858201604001528201610be6565b81811115610c135783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260408201527f616c616e63650000000000000000000000000000000000000000000000000000606082015260800190565b6020808252603c908201527f416d6f756e74206f66204554482073656e74206d75737420626520657175616c60408201527f20746f2074686520616d6f756e74206265696e67206d696e7465642e00000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527f45786365656473206d6178696d756d20737570706c7900000000000000000000604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760408201527f207a65726f000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115611058577f4e487b710000000000000000000000000000000000000000000000000000000081526011600452602481fd5b500190565b60028104600182168061107157607f821691505b602082108114156110ab577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea2646970667358221220961783b8f08e6889bf867509947414c5e7452a6b9b364ba1caa95462345d54eb64736f6c63430008010033
Deployed Bytecode Sourcemap
20476:786:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9421:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11781:201;;;;;;;;;;-1:-1:-1;11781:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10550:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12562:261::-;;;;;;;;;;-1:-1:-1;12562:261:0;;;;;:::i;:::-;;:::i;10392:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13232:238::-;;;;;;;;;;-1:-1:-1;13232:238:0;;;;;:::i;:::-;;:::i;10721:127::-;;;;;;;;;;-1:-1:-1;10721:127:0;;;;;:::i;:::-;;:::i;2876:103::-;;;;;;;;;;;;;:::i;:::-;;2235:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;9640:104::-;;;;;;;;;;;;;:::i;20754:303::-;;;;;;:::i;:::-;;:::i;13973:436::-;;;;;;;;;;-1:-1:-1;13973:436:0;;;;;:::i;:::-;;:::i;11054:193::-;;;;;;;;;;-1:-1:-1;11054:193:0;;;;;:::i;:::-;;:::i;20529:45::-;;;;;;;;;;;;;:::i;21072:149::-;;;:::i;11310:151::-;;;;;;;;;;-1:-1:-1;11310:151:0;;;;;:::i;:::-;;:::i;3134:201::-;;;;;;;;;;-1:-1:-1;3134:201:0;;;;;:::i;:::-;;:::i;9421:100::-;9475:13;9508:5;9501:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9421:100;:::o;11781:201::-;11864:4;11881:13;11897:12;:10;:12::i;:::-;11881:28;;11920:32;11929:5;11936:7;11945:6;11920:8;:32::i;:::-;-1:-1:-1;11970:4:0;;11781:201;-1:-1:-1;;;11781:201:0:o;10550:108::-;10638:12;;10550:108;:::o;12562:261::-;12659:4;12676:15;12694:12;:10;:12::i;:::-;12676:30;;12717:38;12733:4;12739:7;12748:6;12717:15;:38::i;:::-;12766:27;12776:4;12782:2;12786:6;12766:9;:27::i;:::-;-1:-1:-1;12811:4:0;;12562:261;-1:-1:-1;;;;12562:261:0:o;10392:93::-;10475:2;10392:93;:::o;13232:238::-;13320:4;13337:13;13353:12;:10;:12::i;:::-;13337:28;;13376:64;13385:5;13392:7;13429:10;13401:25;13411:5;13418:7;13401:9;:25::i;:::-;:38;;;;:::i;:::-;13376:8;:64::i;10721:127::-;10822:18;;;10795:7;10822:18;;;;;;;;;;;10721:127;;;;:::o;2876:103::-;2121:13;:11;:13::i;:::-;2941:30:::1;2968:1;2941:18;:30::i;:::-;2876:103::o:0;2235:87::-;2308:6;;;;2235:87;:::o;9640:104::-;9696:13;9729:7;9722:14;;;;;:::i;20754:303::-;20824:7;:5;:7::i;:::-;20810:21;;:10;:21;;;20806:138;;20865:6;20852:9;:19;20844:92;;;;-1:-1:-1;;;20844:92:0;;;;;;;:::i;:::-;;;;;;;;;20984:9;;20974:6;20958:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;20950:70;;;;-1:-1:-1;;;20950:70:0;;;;;;;:::i;:::-;21027:25;21033:10;21045:6;21027:5;:25::i;:::-;20754:303;:::o;13973:436::-;14066:4;14083:13;14099:12;:10;:12::i;:::-;14083:28;;14122:24;14149:25;14159:5;14166:7;14149:9;:25::i;:::-;14122:52;;14213:15;14193:16;:35;;14185:85;;;;-1:-1:-1;;;14185:85:0;;;;;;;:::i;:::-;14306:60;14315:5;14322:7;14350:15;14331:16;:34;14306:8;:60::i;11054:193::-;11133:4;11150:13;11166:12;:10;:12::i;:::-;11150:28;;11189;11199:5;11206:2;11210:6;11189:9;:28::i;20529:45::-;;;;:::o;21072:149::-;2121:13;:11;:13::i;:::-;21125:7:::1;21146;:5;:7::i;:::-;21138:21;;21167;21138:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21124:69;;;21208:2;21200:11;;;::::0;::::1;11310:151:::0;11426:18;;;;11399:7;11426:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11310:151::o;3134:201::-;2121:13;:11;:13::i;:::-;3223:22:::1;::::0;::::1;3215:73;;;;-1:-1:-1::0;;;3215:73:0::1;;;;;;;:::i;:::-;3299:28;3318:8;3299:18;:28::i;786:98::-:0;866:10;786:98;:::o;17966:346::-;18068:19;;;18060:68;;;;-1:-1:-1;;;18060:68:0;;;;;;;:::i;:::-;18147:21;;;18139:68;;;;-1:-1:-1;;;18139:68:0;;;;;;;:::i;:::-;18220:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;18272:32;;;;;18250:6;;18272:32;:::i;:::-;;;;;;;;17966:346;;;:::o;18603:419::-;18704:24;18731:25;18741:5;18748:7;18731:9;:25::i;:::-;18704:52;;18791:17;18771:16;:37;18767:248;;18853:6;18833:16;:26;;18825:68;;;;-1:-1:-1;;;18825:68:0;;;;;;;:::i;:::-;18937:51;18946:5;18953:7;18981:6;18962:16;:25;18937:8;:51::i;:::-;18603:419;;;;:::o;14879:806::-;14976:18;;;14968:68;;;;-1:-1:-1;;;14968:68:0;;;;;;;:::i;:::-;15055:16;;;15047:64;;;;-1:-1:-1;;;15047:64:0;;;;;;;:::i;:::-;15124:38;15145:4;15151:2;15155:6;15124:20;:38::i;:::-;15197:15;;;15175:19;15197:15;;;;;;;;;;;15231:21;;;;15223:72;;;;-1:-1:-1;;;15223:72:0;;;;;;;:::i;:::-;15331:15;;;;:9;:15;;;;;;;;;;;15349:20;;;15331:38;;15549:13;;;;;;;;;;:23;;;;;;15601:26;;;;;;15363:6;;15601:26;:::i;:::-;;;;;;;;15640:37;15660:4;15666:2;15670:6;15640:19;:37::i;2400:132::-;2475:12;:10;:12::i;:::-;2464:23;;:7;:5;:7::i;:::-;:23;;;2456:68;;;;-1:-1:-1;;;2456:68:0;;;;;;;:::i;3495:191::-;3588:6;;;;3605:17;;;;;;;;;;;3638:40;;3588:6;;;3605:17;3588:6;;3638:40;;3569:16;;3638:40;3495:191;;:::o;15972:548::-;16056:21;;;16048:65;;;;-1:-1:-1;;;16048:65:0;;;;;;;:::i;:::-;16126:49;16155:1;16159:7;16168:6;16126:20;:49::i;:::-;16204:6;16188:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;16359:18:0;;;:9;:18;;;;;;;;;;;:28;;;;;;16414:37;;;;;16381:6;;16414:37;:::i;:::-;;;;;;;;16464:48;16492:1;16496:7;16505:6;16464:19;:48::i;:::-;15972:548;;:::o;19622:91::-;;;;:::o;14:198:1:-;84:20;;144:42;133:54;;123:65;;113:2;;202:1;199;192:12;217:198;;329:2;317:9;308:7;304:23;300:32;297:2;;;350:6;342;335:22;297:2;378:31;399:9;378:31;:::i;:::-;368:41;287:128;-1:-1:-1;;;287:128:1:o;420:274::-;;;549:2;537:9;528:7;524:23;520:32;517:2;;;570:6;562;555:22;517:2;598:31;619:9;598:31;:::i;:::-;588:41;;648:40;684:2;673:9;669:18;648:40;:::i;:::-;638:50;;507:187;;;;;:::o;699:342::-;;;;845:2;833:9;824:7;820:23;816:32;813:2;;;866:6;858;851:22;813:2;894:31;915:9;894:31;:::i;:::-;884:41;;944:40;980:2;969:9;965:18;944:40;:::i;:::-;934:50;;1031:2;1020:9;1016:18;1003:32;993:42;;803:238;;;;;:::o;1046:266::-;;;1175:2;1163:9;1154:7;1150:23;1146:32;1143:2;;;1196:6;1188;1181:22;1143:2;1224:31;1245:9;1224:31;:::i;:::-;1214:41;1302:2;1287:18;;;;1274:32;;-1:-1:-1;;;1133:179:1:o;1317:190::-;;1429:2;1417:9;1408:7;1404:23;1400:32;1397:2;;;1450:6;1442;1435:22;1397:2;-1:-1:-1;1478:23:1;;1387:120;-1:-1:-1;1387:120:1:o;1512:205::-;1712:3;1703:14::o;1722:226::-;1898:42;1886:55;;;;1868:74;;1856:2;1841:18;;1823:125::o;1953:187::-;2118:14;;2111:22;2093:41;;2081:2;2066:18;;2048:92::o;2145:662::-;;2286:2;2315;2304:9;2297:21;2347:6;2341:13;2390:6;2385:2;2374:9;2370:18;2363:34;2415:4;2428:140;2442:6;2439:1;2436:13;2428:140;;;2537:14;;;2533:23;;2527:30;2503:17;;;2522:2;2499:26;2492:66;2457:10;;2428:140;;;2586:6;2583:1;2580:13;2577:2;;;2656:4;2651:2;2642:6;2631:9;2627:22;2623:31;2616:45;2577:2;-1:-1:-1;2723:2:1;2711:15;2728:66;2707:88;2692:104;;;;2798:2;2688:113;;2266:541;-1:-1:-1;;;2266:541:1:o;2812:399::-;3014:2;2996:21;;;3053:2;3033:18;;;3026:30;3092:34;3087:2;3072:18;;3065:62;3163:5;3158:2;3143:18;;3136:33;3201:3;3186:19;;2986:225::o;3216:402::-;3418:2;3400:21;;;3457:2;3437:18;;;3430:30;3496:34;3491:2;3476:18;;3469:62;3567:8;3562:2;3547:18;;3540:36;3608:3;3593:19;;3390:228::o;3623:398::-;3825:2;3807:21;;;3864:2;3844:18;;;3837:30;3903:34;3898:2;3883:18;;3876:62;3974:4;3969:2;3954:18;;3947:32;4011:3;3996:19;;3797:224::o;4026:353::-;4228:2;4210:21;;;4267:2;4247:18;;;4240:30;4306:31;4301:2;4286:18;;4279:59;4370:2;4355:18;;4200:179::o;4384:402::-;4586:2;4568:21;;;4625:2;4605:18;;;4598:30;4664:34;4659:2;4644:18;;4637:62;4735:8;4730:2;4715:18;;4708:36;4776:3;4761:19;;4558:228::o;4791:424::-;4993:2;4975:21;;;5032:2;5012:18;;;5005:30;5071:34;5066:2;5051:18;;5044:62;5142:30;5137:2;5122:18;;5115:58;5205:3;5190:19;;4965:250::o;5220:356::-;5422:2;5404:21;;;5441:18;;;5434:30;5500:34;5495:2;5480:18;;5473:62;5567:2;5552:18;;5394:182::o;5581:346::-;5783:2;5765:21;;;5822:2;5802:18;;;5795:30;5861:24;5856:2;5841:18;;5834:52;5918:2;5903:18;;5755:172::o;5932:401::-;6134:2;6116:21;;;6173:2;6153:18;;;6146:30;6212:34;6207:2;6192:18;;6185:62;6283:7;6278:2;6263:18;;6256:35;6323:3;6308:19;;6106:227::o;6338:400::-;6540:2;6522:21;;;6579:2;6559:18;;;6552:30;6618:34;6613:2;6598:18;;6591:62;6689:6;6684:2;6669:18;;6662:34;6728:3;6713:19;;6512:226::o;6743:401::-;6945:2;6927:21;;;6984:2;6964:18;;;6957:30;7023:34;7018:2;7003:18;;6996:62;7094:7;7089:2;7074:18;;7067:35;7134:3;7119:19;;6917:227::o;7149:355::-;7351:2;7333:21;;;7390:2;7370:18;;;7363:30;7429:33;7424:2;7409:18;;7402:61;7495:2;7480:18;;7323:181::o;7509:177::-;7655:25;;;7643:2;7628:18;;7610:76::o;7691:184::-;7863:4;7851:17;;;;7833:36;;7821:2;7806:18;;7788:87::o;7880:286::-;;7951:1;7947:6;7944:1;7941:13;7938:2;;;7989:77;7984:3;7977:90;8090:4;8087:1;8080:15;8120:4;8115:3;8108:17;7938:2;-1:-1:-1;8151:9:1;;7928:238::o;8171:437::-;8256:1;8246:12;;8303:1;8293:12;;;8314:2;;8368:4;8360:6;8356:17;8346:27;;8314:2;8421;8413:6;8410:14;8390:18;8387:38;8384:2;;;8458:77;8455:1;8448:88;8559:4;8556:1;8549:15;8587:4;8584:1;8577:15;8384:2;;8226:382;;;:::o
Swarm Source
ipfs://961783b8f08e6889bf867509947414c5e7452a6b9b364ba1caa95462345d54eb
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 35 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.