ERC-20
Overview
Max Total Supply
185 PYE SLICE
Holders
185
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Balance
1 PYE SLICEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PYESlice
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract PYESlice is ERC20, Ownable { address public stakingContract; mapping(address => uint256) public Balances; uint256 public _tTotal; uint8 constant _decimals = 0; event PYESliceBurned(address _account, address destination, uint256 _amount); event PYESliceMinted(address _account, address destination, uint256 _amount); modifier onlyStakingContract() { require(stakingContract != address(0) , "Staking contract hasn't been set!"); require(msg.sender == stakingContract , "Only PYEStakingContract!"); _; } constructor() ERC20("PYE Slice", "PYE SLICE") { } // --------- Setter Fxns ---------- function setStakingContract(address _stakingContract) external onlyOwner { stakingContract = _stakingContract; } // --------- Getter Fxns ---------- function decimals() public pure override returns (uint8) { return _decimals; } function balanceOf(address account) public view override returns (uint256) { return Balances[account]; } function totalSupply() public view override returns (uint256) { return _tTotal; } // --------- Modified Transfer Fxns ---------- // unused function params are left in to keep function signatures // the same as ERC-20 parent functions, otherwise override modifier won't work function transfer(address to, uint256 amount) public view override returns (bool) { revert("Your PYE Slice is non-transferrable"); } function transferFrom( address from, address to, uint256 amount ) public view override returns (bool) { revert("Your PYE Slice is non-transferrable"); } // --------- Modified Burn Fxns ---------- function burnPYESlice(address _staker, uint256 _amount) external onlyStakingContract() { _burn(_staker, _amount); } function _burn(address account, uint256 amount) internal override { require(account != address(0), "ERC20: cannot 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; } _tTotal -= amount; emit Transfer(account, address(0), amount); emit PYESliceBurned(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } // --------- Modified Mint Fxns ---------- function mintPYESlice(address _depositor, uint256 amount) external onlyStakingContract() { _mint(_depositor, amount); } function _mint(address account, uint256 amount) internal override { require(account != address(0), "ERC20: cannot mint to the zero address"); require(Balances[account] == 0, "Already has a PYE Slice"); _beforeTokenTransfer(address(0), account, amount); _tTotal += amount; Balances[account] += amount; emit Transfer(address(0), account, amount); emit PYESliceMinted(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); assert(amount == 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * 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 (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 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.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @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); }
{ "optimizer": { "enabled": true, "runs": 9999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PYESliceBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_account","type":"address"},{"indexed":false,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PYESliceMinted","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":"","type":"address"}],"name":"Balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnPYESlice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[{"internalType":"address","name":"_depositor","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPYESlice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingContract","type":"address"}],"name":"setStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"view","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":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600981526020016850594520536c69636560b81b8152506040518060400160405280600981526020016850594520534c49434560b81b815250816003908162000067919062000194565b50600462000076828262000194565b505050620000936200008d6200009960201b60201c565b6200009d565b62000260565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011a57607f821691505b6020821081036200013b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018f57600081815260208120601f850160051c810160208610156200016a5750805b601f850160051c820191505b818110156200018b5782815560010162000176565b5050505b505050565b81516001600160401b03811115620001b057620001b0620000ef565b620001c881620001c1845462000105565b8462000141565b602080601f831160018114620002005760008415620001e75750858301515b600019600386901b1c1916600185901b1785556200018b565b600085815260208120601f198616915b82811015620002315788860151825594840194600190910190840162000210565b5085821015620002505787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61124780620002706000396000f3fe608060405234801561001057600080fd5b506004361061016c5760003560e01c806395d89b41116100cd578063af465a2711610081578063dd62ed3e11610066578063dd62ed3e14610303578063ee99205c14610349578063f2fde38b1461036957600080fd5b8063af465a27146102e7578063d22bec87146102f057600080fd5b8063a457c2d7116100b2578063a457c2d7146102a6578063a8ec4c42146102b9578063a9059cbb146102d957600080fd5b806395d89b411461028b5780639dd373b91461029357600080fd5b8063395093511161012457806370a082311161010957806370a082311461020e578063715018a6146102445780638da5cb5b1461024c57600080fd5b806339509351146101e65780634e3a9408146101f957600080fd5b806318160ddd1161015557806318160ddd146101b257806323b872dd146101c4578063313ce567146101d757600080fd5b806306fdde0314610171578063095ea7b31461018f575b600080fd5b61017961037c565b6040516101869190610fda565b60405180910390f35b6101a261019d366004611076565b61040e565b6040519015158152602001610186565b6008545b604051908152602001610186565b6101a26101d23660046110a0565b610426565b60405160008152602001610186565b6101a26101f4366004611076565b61049c565b61020c610207366004611076565b6104e8565b005b6101b661021c3660046110dc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b61020c6105e8565b60055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b61017961065b565b61020c6102a13660046110dc565b61066a565b6101a26102b4366004611076565b610718565b6101b66102c73660046110dc565b60076020526000908152604090205481565b6101a26101d2366004611076565b6101b660085481565b61020c6102fe366004611076565b6107da565b6101b66103113660046110fe565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6006546102669073ffffffffffffffffffffffffffffffffffffffff1681565b61020c6103773660046110dc565b6108d6565b60606003805461038b90611131565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611131565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b60003361041c8185856109d2565b5060019392505050565b60405162461bcd60e51b815260206004820152602360248201527f596f75722050594520536c696365206973206e6f6e2d7472616e73666572726160448201527f626c65000000000000000000000000000000000000000000000000000000000060648201526000906084015b60405180910390fd5b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061041c90829086906104e39087906111b3565b6109d2565b60065473ffffffffffffffffffffffffffffffffffffffff166105735760405162461bcd60e51b815260206004820152602160248201527f5374616b696e6720636f6e7472616374206861736e2774206265656e2073657460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610493565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105da5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79205059455374616b696e67436f6e74726163742100000000000000006044820152606401610493565b6105e48282610b51565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461064f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b6106596000610d61565b565b60606004805461038b90611131565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610493565b6107cf82868684036109d2565b506001949350505050565b60065473ffffffffffffffffffffffffffffffffffffffff166108655760405162461bcd60e51b815260206004820152602160248201527f5374616b696e6720636f6e7472616374206861736e2774206265656e2073657460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610493565b60065473ffffffffffffffffffffffffffffffffffffffff1633146108cc5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79205059455374616b696e67436f6e74726163742100000000000000006044820152606401610493565b6105e48282610dd8565b60055473ffffffffffffffffffffffffffffffffffffffff16331461093d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b73ffffffffffffffffffffffffffffffffffffffff81166109c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610493565b6109cf81610d61565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610a5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff8216610ae35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bda5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2063616e6e6f74206275726e2066726f6d20746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205481811015610c765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600760205260408120838303905560088054849290610cb29084906111cb565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36040805173ffffffffffffffffffffffffffffffffffffffff85168152600060208201529081018390527fd131db5eabe02efd23561aa75dbc83f682a152ccaa3497a122f2f970bbbab7379060600160405180910390a1505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610e615760405162461bcd60e51b815260206004820152602660248201527f45524332303a2063616e6e6f74206d696e7420746f20746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205415610ed45760405162461bcd60e51b815260206004820152601760248201527f416c72656164792068617320612050594520536c6963650000000000000000006044820152606401610493565b8060086000828254610ee691906111b3565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081208054839290610f209084906111b3565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3604080516000815273ffffffffffffffffffffffffffffffffffffffff841660208201529081018290527f7c1025482f5ef9f95bbbd035a42442482cbbf7adbe9e50060d5bb5404641cf299060600160405180910390a1806001146105e4576105e46111e2565b600060208083528351808285015260005b8181101561100757858101830151858201604001528201610feb565b81811115611019576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461107157600080fd5b919050565b6000806040838503121561108957600080fd5b6110928361104d565b946020939093013593505050565b6000806000606084860312156110b557600080fd5b6110be8461104d565b92506110cc6020850161104d565b9150604084013590509250925092565b6000602082840312156110ee57600080fd5b6110f78261104d565b9392505050565b6000806040838503121561111157600080fd5b61111a8361104d565b91506111286020840161104d565b90509250929050565b600181811c9082168061114557607f821691505b60208210810361117e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156111c6576111c6611184565b500190565b6000828210156111dd576111dd611184565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea26469706673582212203dddd6a2207a8552b63c2c8dbe974bb99c413f7652ffa82d894d08f405b0198064736f6c634300080f0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061016c5760003560e01c806395d89b41116100cd578063af465a2711610081578063dd62ed3e11610066578063dd62ed3e14610303578063ee99205c14610349578063f2fde38b1461036957600080fd5b8063af465a27146102e7578063d22bec87146102f057600080fd5b8063a457c2d7116100b2578063a457c2d7146102a6578063a8ec4c42146102b9578063a9059cbb146102d957600080fd5b806395d89b411461028b5780639dd373b91461029357600080fd5b8063395093511161012457806370a082311161010957806370a082311461020e578063715018a6146102445780638da5cb5b1461024c57600080fd5b806339509351146101e65780634e3a9408146101f957600080fd5b806318160ddd1161015557806318160ddd146101b257806323b872dd146101c4578063313ce567146101d757600080fd5b806306fdde0314610171578063095ea7b31461018f575b600080fd5b61017961037c565b6040516101869190610fda565b60405180910390f35b6101a261019d366004611076565b61040e565b6040519015158152602001610186565b6008545b604051908152602001610186565b6101a26101d23660046110a0565b610426565b60405160008152602001610186565b6101a26101f4366004611076565b61049c565b61020c610207366004611076565b6104e8565b005b6101b661021c3660046110dc565b73ffffffffffffffffffffffffffffffffffffffff1660009081526007602052604090205490565b61020c6105e8565b60055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b61017961065b565b61020c6102a13660046110dc565b61066a565b6101a26102b4366004611076565b610718565b6101b66102c73660046110dc565b60076020526000908152604090205481565b6101a26101d2366004611076565b6101b660085481565b61020c6102fe366004611076565b6107da565b6101b66103113660046110fe565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6006546102669073ffffffffffffffffffffffffffffffffffffffff1681565b61020c6103773660046110dc565b6108d6565b60606003805461038b90611131565b80601f01602080910402602001604051908101604052809291908181526020018280546103b790611131565b80156104045780601f106103d957610100808354040283529160200191610404565b820191906000526020600020905b8154815290600101906020018083116103e757829003601f168201915b5050505050905090565b60003361041c8185856109d2565b5060019392505050565b60405162461bcd60e51b815260206004820152602360248201527f596f75722050594520536c696365206973206e6f6e2d7472616e73666572726160448201527f626c65000000000000000000000000000000000000000000000000000000000060648201526000906084015b60405180910390fd5b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061041c90829086906104e39087906111b3565b6109d2565b60065473ffffffffffffffffffffffffffffffffffffffff166105735760405162461bcd60e51b815260206004820152602160248201527f5374616b696e6720636f6e7472616374206861736e2774206265656e2073657460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610493565b60065473ffffffffffffffffffffffffffffffffffffffff1633146105da5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79205059455374616b696e67436f6e74726163742100000000000000006044820152606401610493565b6105e48282610b51565b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461064f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b6106596000610d61565b565b60606004805461038b90611131565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106d15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156107c25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610493565b6107cf82868684036109d2565b506001949350505050565b60065473ffffffffffffffffffffffffffffffffffffffff166108655760405162461bcd60e51b815260206004820152602160248201527f5374616b696e6720636f6e7472616374206861736e2774206265656e2073657460448201527f21000000000000000000000000000000000000000000000000000000000000006064820152608401610493565b60065473ffffffffffffffffffffffffffffffffffffffff1633146108cc5760405162461bcd60e51b815260206004820152601860248201527f4f6e6c79205059455374616b696e67436f6e74726163742100000000000000006044820152606401610493565b6105e48282610dd8565b60055473ffffffffffffffffffffffffffffffffffffffff16331461093d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610493565b73ffffffffffffffffffffffffffffffffffffffff81166109c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610493565b6109cf81610d61565b50565b73ffffffffffffffffffffffffffffffffffffffff8316610a5a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff8216610ae35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216610bda5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2063616e6e6f74206275726e2066726f6d20746865207a65726f60448201527f20616464726573730000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205481811015610c765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600760205260408120838303905560088054849290610cb29084906111cb565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36040805173ffffffffffffffffffffffffffffffffffffffff85168152600060208201529081018390527fd131db5eabe02efd23561aa75dbc83f682a152ccaa3497a122f2f970bbbab7379060600160405180910390a1505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610e615760405162461bcd60e51b815260206004820152602660248201527f45524332303a2063616e6e6f74206d696e7420746f20746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610493565b73ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604090205415610ed45760405162461bcd60e51b815260206004820152601760248201527f416c72656164792068617320612050594520536c6963650000000000000000006044820152606401610493565b8060086000828254610ee691906111b3565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526007602052604081208054839290610f209084906111b3565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3604080516000815273ffffffffffffffffffffffffffffffffffffffff841660208201529081018290527f7c1025482f5ef9f95bbbd035a42442482cbbf7adbe9e50060d5bb5404641cf299060600160405180910390a1806001146105e4576105e46111e2565b600060208083528351808285015260005b8181101561100757858101830151858201604001528201610feb565b81811115611019576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461107157600080fd5b919050565b6000806040838503121561108957600080fd5b6110928361104d565b946020939093013593505050565b6000806000606084860312156110b557600080fd5b6110be8461104d565b92506110cc6020850161104d565b9150604084013590509250925092565b6000602082840312156110ee57600080fd5b6110f78261104d565b9392505050565b6000806040838503121561111157600080fd5b61111a8361104d565b91506111286020840161104d565b90509250929050565b600181811c9082168061114557607f821691505b60208210810361117e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156111c6576111c6611184565b500190565b6000828210156111dd576111dd611184565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fdfea26469706673582212203dddd6a2207a8552b63c2c8dbe974bb99c413f7652ffa82d894d08f405b0198064736f6c634300080f0033
Deployed Bytecode Sourcemap
167:3277:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4433:197;;;;;;:::i;:::-;;:::i;:::-;;;1300:14:6;;1293:22;1275:41;;1263:2;1248:18;4433:197:1;1135:187:6;1235:93:5;1314:7;;1235:93;;;1473:25:6;;;1461:2;1446:18;1235:93:5;1327:177:6;1691:192:5;;;;;;:::i;:::-;;:::i;1017:90::-;;;1067:5;1984:36:6;;1972:2;1957:18;1017:90:5;1842:184:6;5873:236:1;;;;;;:::i;:::-;;:::i;1937:127:5:-;;;;;;:::i;:::-;;:::i;:::-;;1113:116;;;;;;:::i;:::-;1205:17;;1179:7;1205:17;;;:8;:17;;;;;;;1113:116;1668:101:0;;;:::i;1036:85::-;1108:6;;;;1036:85;;;2398:42:6;2386:55;;;2368:74;;2356:2;2341:18;1036:85:0;2222:226:6;2367:102:1;;;:::i;846:124:5:-;;;;;;:::i;:::-;;:::i;6596:429:1:-;;;;;;:::i;:::-;;:::i;246:43:5:-;;;;;;:::i;:::-;;;;;;;;;;;;;;1541:144;;;;;;:::i;295:22::-;;;;;;2760:130;;;;;;:::i;:::-;;:::i;3976:149:1:-;;;;;;:::i;:::-;4091:18;;;;4065:7;4091:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3976:149;210:30:5;;;;;;;;;1918:198:0;;;;;;:::i;:::-;;:::i;2156:98:1:-;2210:13;2242:5;2235:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2156:98;:::o;4433:197::-;4516:4;719:10:4;4570:32:1;719:10:4;4586:7:1;4595:6;4570:8;:32::i;:::-;-1:-1:-1;4619:4:1;;4433:197;-1:-1:-1;;;4433:197:1:o;1691:192:5:-;1831:45;;-1:-1:-1;;;1831:45:5;;3362:2:6;1831:45:5;;;3344:21:6;3401:2;3381:18;;;3374:30;3440:34;3420:18;;;3413:62;3511:5;3491:18;;;3484:33;1815:4:5;;3534:19:6;;1831:45:5;;;;;;;;5873:236:1;719:10:4;5961:4:1;6040:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;5961:4;;719:10:4;6015:66:1;;719:10:4;;6040:27:1;;:40;;6070:10;;6040:40;:::i;:::-;6015:8;:66::i;1937:127:5:-;577:15;;:29;:15;569:76;;;;-1:-1:-1;;;569:76:5;;4088:2:6;569:76:5;;;4070:21:6;4127:2;4107:18;;;4100:30;4166:34;4146:18;;;4139:62;4237:3;4217:18;;;4210:31;4258:19;;569:76:5;3886:397:6;569:76:5;677:15;;;;663:10;:29;655:67;;;;-1:-1:-1;;;655:67:5;;4490:2:6;655:67:5;;;4472:21:6;4529:2;4509:18;;;4502:30;4568:26;4548:18;;;4541:54;4612:18;;655:67:5;4288:348:6;655:67:5;2034:23:::1;2040:7;2049;2034:5;:23::i;:::-;1937:127:::0;;:::o;1668:101:0:-;1108:6;;1248:23;1108:6;719:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;4843:2:6;1240:68:0;;;4825:21:6;;;4862:18;;;4855:30;4921:34;4901:18;;;4894:62;4973:18;;1240:68:0;4641:356:6;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2367:102:1:-;2423:13;2455:7;2448:14;;;;;:::i;846:124:5:-;1108:6:0;;1248:23;1108:6;719:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;4843:2:6;1240:68:0;;;4825:21:6;;;4862:18;;;4855:30;4921:34;4901:18;;;4894:62;4973:18;;1240:68:0;4641:356:6;1240:68:0;929:15:5::1;:34:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;846:124::o;6596:429:1:-;719:10:4;6689:4:1;6770:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;6689:4;;719:10:4;6815:35:1;;;;6807:85;;;;-1:-1:-1;;;6807:85:1;;5204:2:6;6807:85:1;;;5186:21:6;5243:2;5223:18;;;5216:30;5282:34;5262:18;;;5255:62;5353:7;5333:18;;;5326:35;5378:19;;6807:85:1;5002:401:6;6807:85:1;6926:60;6935:5;6942:7;6970:15;6951:16;:34;6926:8;:60::i;:::-;-1:-1:-1;7014:4:1;;6596:429;-1:-1:-1;;;;6596:429:1:o;2760:130:5:-;577:15;;:29;:15;569:76;;;;-1:-1:-1;;;569:76:5;;4088:2:6;569:76:5;;;4070:21:6;4127:2;4107:18;;;4100:30;4166:34;4146:18;;;4139:62;4237:3;4217:18;;;4210:31;4258:19;;569:76:5;3886:397:6;569:76:5;677:15;;;;663:10;:29;655:67;;;;-1:-1:-1;;;655:67:5;;4490:2:6;655:67:5;;;4472:21:6;4529:2;4509:18;;;4502:30;4568:26;4548:18;;;4541:54;4612:18;;655:67:5;4288:348:6;655:67:5;2858:25:::1;2864:10;2876:6;2858:5;:25::i;1918:198:0:-:0;1108:6;;1248:23;1108:6;719:10:4;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;4843:2:6;1240:68:0;;;4825:21:6;;;4862:18;;;4855:30;4921:34;4901:18;;;4894:62;4973:18;;1240:68:0;4641:356:6;1240:68:0;2006:22:::1;::::0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;5610:2:6;1998:73:0::1;::::0;::::1;5592:21:6::0;5649:2;5629:18;;;5622:30;5688:34;5668:18;;;5661:62;5759:8;5739:18;;;5732:36;5785:19;;1998:73:0::1;5408:402:6::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;10123:370:1:-;10254:19;;;10246:68;;;;-1:-1:-1;;;10246:68:1;;6017:2:6;10246:68:1;;;5999:21:6;6056:2;6036:18;;;6029:30;6095:34;6075:18;;;6068:62;6166:6;6146:18;;;6139:34;6190:19;;10246:68:1;5815:400:6;10246:68:1;10332:21;;;10324:68;;;;-1:-1:-1;;;10324:68:1;;6422:2:6;10324:68:1;;;6404:21:6;6461:2;6441:18;;;6434:30;6500:34;6480:18;;;6473:62;6571:4;6551:18;;;6544:32;6593:19;;10324:68:1;6220:398:6;10324:68:1;10403:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10454:32;;1473:25:6;;;10454:32:1;;1446:18:6;10454:32:1;;;;;;;10123:370;;;:::o;2070:633:5:-;2154:21;;;2146:74;;;;-1:-1:-1;;;2146:74:5;;6825:2:6;2146:74:5;;;6807:21:6;6864:2;6844:18;;;6837:30;6903:34;6883:18;;;6876:62;6974:10;6954:18;;;6947:38;7002:19;;2146:74:5;6623:404:6;2146:74:5;2315:17;;;2290:22;2315:17;;;:8;:17;;;;;;2350:24;;;;2342:71;;;;-1:-1:-1;;;2342:71:5;;7234:2:6;2342:71:5;;;7216:21:6;7273:2;7253:18;;;7246:30;7312:34;7292:18;;;7285:62;7383:4;7363:18;;;7356:32;7405:19;;2342:71:5;7032:398:6;2342:71:5;2447:17;;;;;;;:8;:17;;;;;2467:23;;;2447:43;;2511:7;:17;;2484:6;;2447:17;2511;;2484:6;;2511:17;:::i;:::-;;;;-1:-1:-1;;2543:37:5;;1473:25:6;;;2569:1:5;;2543:37;;;;;;1461:2:6;1446:18;2543:37:5;;;;;;;2595:43;;;7777:42:6;7846:15;;7828:34;;2627:1:5;7893:2:6;7878:18;;7871:43;7930:18;;;7923:34;;;2595:43:5;;7755:2:6;7740:18;2595:43:5;;;;;;;2136:567;2070:633;;:::o;2270:187:0:-;2362:6;;;;2378:17;;;;;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;2896:546:5:-;2980:21;;;2972:72;;;;-1:-1:-1;;;2972:72:5;;8170:2:6;2972:72:5;;;8152:21:6;8209:2;8189:18;;;8182:30;8248:34;8228:18;;;8221:62;8319:8;8299:18;;;8292:36;8345:19;;2972:72:5;7968:402:6;2972:72:5;3062:17;;;;;;;:8;:17;;;;;;:22;3054:58;;;;-1:-1:-1;;;3054:58:5;;8577:2:6;3054:58:5;;;8559:21:6;8616:2;8596:18;;;8589:30;8655:25;8635:18;;;8628:53;8698:18;;3054:58:5;8375:347:6;3054:58:5;3194:6;3183:7;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;3210:17:5;;;;;;;:8;:17;;;;;:27;;3231:6;;3210:17;:27;;3231:6;;3210:27;:::i;:::-;;;;-1:-1:-1;;3252:37:5;;1473:25:6;;;3252:37:5;;;;3269:1;;3252:37;;1461:2:6;1446:18;3252:37:5;;;;;;;3304:43;;;3327:1;7828:34:6;;7777:42;7898:15;;7893:2;7878:18;;7871:43;7930:18;;;7923:34;;;3304:43:5;;7755:2:6;7740:18;3304:43:5;;;;;;;3423:6;3433:1;3423:11;3416:19;;;;:::i;14:656:6:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;586:2:6;574:15;591:66;570:88;555:104;;;;661:2;551:113;;14:656;-1:-1:-1;;;14:656:6:o;675:196::-;743:20;;803:42;792:54;;782:65;;772:93;;861:1;858;851:12;772:93;675:196;;;:::o;876:254::-;944:6;952;1005:2;993:9;984:7;980:23;976:32;973:52;;;1021:1;1018;1011:12;973:52;1044:29;1063:9;1044:29;:::i;:::-;1034:39;1120:2;1105:18;;;;1092:32;;-1:-1:-1;;;876:254:6:o;1509:328::-;1586:6;1594;1602;1655:2;1643:9;1634:7;1630:23;1626:32;1623:52;;;1671:1;1668;1661:12;1623:52;1694:29;1713:9;1694:29;:::i;:::-;1684:39;;1742:38;1776:2;1765:9;1761:18;1742:38;:::i;:::-;1732:48;;1827:2;1816:9;1812:18;1799:32;1789:42;;1509:328;;;;;:::o;2031:186::-;2090:6;2143:2;2131:9;2122:7;2118:23;2114:32;2111:52;;;2159:1;2156;2149:12;2111:52;2182:29;2201:9;2182:29;:::i;:::-;2172:39;2031:186;-1:-1:-1;;;2031:186:6:o;2453:260::-;2521:6;2529;2582:2;2570:9;2561:7;2557:23;2553:32;2550:52;;;2598:1;2595;2588:12;2550:52;2621:29;2640:9;2621:29;:::i;:::-;2611:39;;2669:38;2703:2;2692:9;2688:18;2669:38;:::i;:::-;2659:48;;2453:260;;;;;:::o;2718:437::-;2797:1;2793:12;;;;2840;;;2861:61;;2915:4;2907:6;2903:17;2893:27;;2861:61;2968:2;2960:6;2957:14;2937:18;2934:38;2931:218;;3005:77;3002:1;2995:88;3106:4;3103:1;3096:15;3134:4;3131:1;3124:15;2931:218;;2718:437;;;:::o;3564:184::-;3616:77;3613:1;3606:88;3713:4;3710:1;3703:15;3737:4;3734:1;3727:15;3753:128;3793:3;3824:1;3820:6;3817:1;3814:13;3811:39;;;3830:18;;:::i;:::-;-1:-1:-1;3866:9:6;;3753:128::o;7435:125::-;7475:4;7503:1;7500;7497:8;7494:34;;;7508:18;;:::i;:::-;-1:-1:-1;7545:9:6;;7435:125::o;8727:184::-;8779:77;8776:1;8769:88;8876:4;8873:1;8866:15;8900:4;8897:1;8890:15
Swarm Source
ipfs://3dddd6a2207a8552b63c2c8dbe974bb99c413f7652ffa82d894d08f405b01980
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.