ERC-20
Overview
Max Total Supply
666,444,444,444,444 RapEgg
Holders
139
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
221,135,103,989.805774528719958007 RapEggValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
RaptorEgg
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-15 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @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 returns (address) { return msg.sender; } } /** * @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 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 RaptorEgg is Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint256 private _burnAmount; 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() { _name = "Raptor Egg"; _symbol = "RapEgg"; _mint(msg.sender, 666444444444444 * 10 ** decimals()); _transferOwnership(address(0)); } /** * @dev Returns the name of the token. */ function name() external view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view 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 pure returns (uint8) { return 18; } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) external { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) external { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() external view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function tokensBurnt() external view returns (uint256) { return _burnAmount; } /** * @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) external returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view 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) external 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 ) external 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 ) external 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 ) external 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) private { 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); } /** @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) private { 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); } /** * @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) private { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; _burnAmount += amount; } emit Transfer(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) private { 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 ) private { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } }
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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensBurnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5062000032620000266200011b60201b60201c565b6200012360201b60201c565b6040518060400160405280600a81526020017f526170746f72204567670000000000000000000000000000000000000000000081525060059081620000789190620005b0565b506040518060400160405280600681526020017f526170456767000000000000000000000000000000000000000000000000000081525060069081620000bf9190620005b0565b506200010333620000d5620001e760201b60201c565b600a620000e3919062000827565b66025e20b05fa71c620000f7919062000878565b620001f060201b60201c565b6200011560006200012360201b60201c565b620009af565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002599062000924565b60405180910390fd5b806003600082825462000276919062000946565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200032a919062000992565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003b857607f821691505b602082108103620003ce57620003cd62000370565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004387fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003f9565b620004448683620003f9565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004916200048b62000485846200045c565b62000466565b6200045c565b9050919050565b6000819050919050565b620004ad8362000470565b620004c5620004bc8262000498565b84845462000406565b825550505050565b600090565b620004dc620004cd565b620004e9818484620004a2565b505050565b5b81811015620005115762000505600082620004d2565b600181019050620004ef565b5050565b601f82111562000560576200052a81620003d4565b6200053584620003e9565b8101602085101562000545578190505b6200055d6200055485620003e9565b830182620004ee565b50505b505050565b600082821c905092915050565b6000620005856000198460080262000565565b1980831691505092915050565b6000620005a0838362000572565b9150826002028217905092915050565b620005bb8262000336565b67ffffffffffffffff811115620005d757620005d662000341565b5b620005e382546200039f565b620005f082828562000515565b600060209050601f83116001811462000628576000841562000613578287015190505b6200061f858262000592565b8655506200068f565b601f1984166200063886620003d4565b60005b8281101562000662578489015182556001820191506020850194506020810190506200063b565b868310156200068257848901516200067e601f89168262000572565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200072557808604811115620006fd57620006fc62000697565b5b60018516156200070d5780820291505b80810290506200071d85620006c6565b9450620006dd565b94509492505050565b60008262000740576001905062000813565b8162000750576000905062000813565b81600181146200076957600281146200077457620007aa565b600191505062000813565b60ff84111562000789576200078862000697565b5b8360020a915084821115620007a357620007a262000697565b5b5062000813565b5060208310610133831016604e8410600b8410161715620007e45782820a905083811115620007de57620007dd62000697565b5b62000813565b620007f38484846001620006d3565b925090508184048111156200080d576200080c62000697565b5b81810290505b9392505050565b600060ff82169050919050565b600062000834826200045c565b915062000841836200081a565b9250620008707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200072e565b905092915050565b600062000885826200045c565b915062000892836200045c565b9250828202620008a2816200045c565b91508282048414831517620008bc57620008bb62000697565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200090c601f83620008c3565b91506200091982620008d4565b602082019050919050565b600060208201905081810360008301526200093f81620008fd565b9050919050565b600062000953826200045c565b915062000960836200045c565b92508282019050808211156200097b576200097a62000697565b5b92915050565b6200098c816200045c565b82525050565b6000602082019050620009a9600083018462000981565b92915050565b61167c80620009bf6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063c6ead8af146102e8578063dd62ed3e14610306576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610dde565b60405180910390f35b610132600480360381019061012d9190610e99565b6103c8565b60405161013f9190610ef4565b60405180910390f35b6101506103eb565b60405161015d9190610f1e565b60405180910390f35b610180600480360381019061017b9190610f39565b6103f5565b60405161018d9190610ef4565b60405180910390f35b61019e610424565b6040516101ab9190610fa8565b60405180910390f35b6101ce60048036038101906101c99190610e99565b61042d565b6040516101db9190610ef4565b60405180910390f35b6101fe60048036038101906101f99190610fc3565b610464565b005b61021a60048036038101906102159190610ff0565b610478565b6040516102279190610f1e565b60405180910390f35b61024a60048036038101906102459190610e99565b6104c1565b005b6102546104e1565b604051610261919061102c565b60405180910390f35b61027261050a565b60405161027f9190610dde565b60405180910390f35b6102a2600480360381019061029d9190610e99565b61059c565b6040516102af9190610ef4565b60405180910390f35b6102d260048036038101906102cd9190610e99565b610613565b6040516102df9190610ef4565b60405180910390f35b6102f0610636565b6040516102fd9190610f1e565b60405180910390f35b610320600480360381019061031b9190611047565b610640565b60405161032d9190610f1e565b60405180910390f35b606060058054610345906110b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906110b6565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106c7565b90506103e08185856106cf565b600191505092915050565b6000600354905090565b6000806104006106c7565b905061040d858285610898565b610418858585610924565b60019150509392505050565b60006012905090565b6000806104386106c7565b905061045981858561044a8589610640565b6104549190611116565b6106cf565b600191505092915050565b61047561046f6106c7565b82610b87565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104d3826104cd6106c7565b83610898565b6104dd8282610b87565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610519906110b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610545906110b6565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b6000806105a76106c7565b905060006105b58286610640565b9050838110156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f1906111bc565b60405180910390fd5b61060782868684036106cf565b60019250505092915050565b60008061061e6106c7565b905061062b818585610924565b600191505092915050565b6000600454905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107359061124e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a4906112e0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161088b9190610f1e565b60405180910390a3505050565b60006108a48484610640565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461091e5781811015610910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109079061134c565b60405180910390fd5b61091d84848484036106cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906113de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611470565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090611502565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b799190610f1e565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90611594565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490611626565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254039250508190555081600460008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d419190610f1e565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d88578082015181840152602081019050610d6d565b60008484015250505050565b6000601f19601f8301169050919050565b6000610db082610d4e565b610dba8185610d59565b9350610dca818560208601610d6a565b610dd381610d94565b840191505092915050565b60006020820190508181036000830152610df88184610da5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e3082610e05565b9050919050565b610e4081610e25565b8114610e4b57600080fd5b50565b600081359050610e5d81610e37565b92915050565b6000819050919050565b610e7681610e63565b8114610e8157600080fd5b50565b600081359050610e9381610e6d565b92915050565b60008060408385031215610eb057610eaf610e00565b5b6000610ebe85828601610e4e565b9250506020610ecf85828601610e84565b9150509250929050565b60008115159050919050565b610eee81610ed9565b82525050565b6000602082019050610f096000830184610ee5565b92915050565b610f1881610e63565b82525050565b6000602082019050610f336000830184610f0f565b92915050565b600080600060608486031215610f5257610f51610e00565b5b6000610f6086828701610e4e565b9350506020610f7186828701610e4e565b9250506040610f8286828701610e84565b9150509250925092565b600060ff82169050919050565b610fa281610f8c565b82525050565b6000602082019050610fbd6000830184610f99565b92915050565b600060208284031215610fd957610fd8610e00565b5b6000610fe784828501610e84565b91505092915050565b60006020828403121561100657611005610e00565b5b600061101484828501610e4e565b91505092915050565b61102681610e25565b82525050565b6000602082019050611041600083018461101d565b92915050565b6000806040838503121561105e5761105d610e00565b5b600061106c85828601610e4e565b925050602061107d85828601610e4e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110ce57607f821691505b6020821081036110e1576110e0611087565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112182610e63565b915061112c83610e63565b9250828201905080821115611144576111436110e7565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111a6602583610d59565b91506111b18261114a565b604082019050919050565b600060208201905081810360008301526111d581611199565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611238602483610d59565b9150611243826111dc565b604082019050919050565b600060208201905081810360008301526112678161122b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006112ca602283610d59565b91506112d58261126e565b604082019050919050565b600060208201905081810360008301526112f9816112bd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611336601d83610d59565b915061134182611300565b602082019050919050565b6000602082019050818103600083015261136581611329565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006113c8602583610d59565b91506113d38261136c565b604082019050919050565b600060208201905081810360008301526113f7816113bb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061145a602383610d59565b9150611465826113fe565b604082019050919050565b600060208201905081810360008301526114898161144d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114ec602683610d59565b91506114f782611490565b604082019050919050565b6000602082019050818103600083015261151b816114df565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061157e602183610d59565b915061158982611522565b604082019050919050565b600060208201905081810360008301526115ad81611571565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611610602283610d59565b915061161b826115b4565b604082019050919050565b6000602082019050818103600083015261163f81611603565b905091905056fea2646970667358221220672d50912cec5aa6e52af813108203f7e0ade78061b28d65d09dbe713cd4279b64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063c6ead8af146102e8578063dd62ed3e14610306576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806395d89b411461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610dde565b60405180910390f35b610132600480360381019061012d9190610e99565b6103c8565b60405161013f9190610ef4565b60405180910390f35b6101506103eb565b60405161015d9190610f1e565b60405180910390f35b610180600480360381019061017b9190610f39565b6103f5565b60405161018d9190610ef4565b60405180910390f35b61019e610424565b6040516101ab9190610fa8565b60405180910390f35b6101ce60048036038101906101c99190610e99565b61042d565b6040516101db9190610ef4565b60405180910390f35b6101fe60048036038101906101f99190610fc3565b610464565b005b61021a60048036038101906102159190610ff0565b610478565b6040516102279190610f1e565b60405180910390f35b61024a60048036038101906102459190610e99565b6104c1565b005b6102546104e1565b604051610261919061102c565b60405180910390f35b61027261050a565b60405161027f9190610dde565b60405180910390f35b6102a2600480360381019061029d9190610e99565b61059c565b6040516102af9190610ef4565b60405180910390f35b6102d260048036038101906102cd9190610e99565b610613565b6040516102df9190610ef4565b60405180910390f35b6102f0610636565b6040516102fd9190610f1e565b60405180910390f35b610320600480360381019061031b9190611047565b610640565b60405161032d9190610f1e565b60405180910390f35b606060058054610345906110b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610371906110b6565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106c7565b90506103e08185856106cf565b600191505092915050565b6000600354905090565b6000806104006106c7565b905061040d858285610898565b610418858585610924565b60019150509392505050565b60006012905090565b6000806104386106c7565b905061045981858561044a8589610640565b6104549190611116565b6106cf565b600191505092915050565b61047561046f6106c7565b82610b87565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104d3826104cd6106c7565b83610898565b6104dd8282610b87565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610519906110b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610545906110b6565b80156105925780601f1061056757610100808354040283529160200191610592565b820191906000526020600020905b81548152906001019060200180831161057557829003601f168201915b5050505050905090565b6000806105a76106c7565b905060006105b58286610640565b9050838110156105fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f1906111bc565b60405180910390fd5b61060782868684036106cf565b60019250505092915050565b60008061061e6106c7565b905061062b818585610924565b600191505092915050565b6000600454905090565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361073e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107359061124e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a4906112e0565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161088b9190610f1e565b60405180910390a3505050565b60006108a48484610640565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461091e5781811015610910576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109079061134c565b60405180910390fd5b61091d84848484036106cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610993576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098a906113de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990611470565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090611502565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b799190610f1e565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bed90611594565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7490611626565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160036000828254039250508190555081600460008282540192505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d419190610f1e565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610d88578082015181840152602081019050610d6d565b60008484015250505050565b6000601f19601f8301169050919050565b6000610db082610d4e565b610dba8185610d59565b9350610dca818560208601610d6a565b610dd381610d94565b840191505092915050565b60006020820190508181036000830152610df88184610da5565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e3082610e05565b9050919050565b610e4081610e25565b8114610e4b57600080fd5b50565b600081359050610e5d81610e37565b92915050565b6000819050919050565b610e7681610e63565b8114610e8157600080fd5b50565b600081359050610e9381610e6d565b92915050565b60008060408385031215610eb057610eaf610e00565b5b6000610ebe85828601610e4e565b9250506020610ecf85828601610e84565b9150509250929050565b60008115159050919050565b610eee81610ed9565b82525050565b6000602082019050610f096000830184610ee5565b92915050565b610f1881610e63565b82525050565b6000602082019050610f336000830184610f0f565b92915050565b600080600060608486031215610f5257610f51610e00565b5b6000610f6086828701610e4e565b9350506020610f7186828701610e4e565b9250506040610f8286828701610e84565b9150509250925092565b600060ff82169050919050565b610fa281610f8c565b82525050565b6000602082019050610fbd6000830184610f99565b92915050565b600060208284031215610fd957610fd8610e00565b5b6000610fe784828501610e84565b91505092915050565b60006020828403121561100657611005610e00565b5b600061101484828501610e4e565b91505092915050565b61102681610e25565b82525050565b6000602082019050611041600083018461101d565b92915050565b6000806040838503121561105e5761105d610e00565b5b600061106c85828601610e4e565b925050602061107d85828601610e4e565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806110ce57607f821691505b6020821081036110e1576110e0611087565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061112182610e63565b915061112c83610e63565b9250828201905080821115611144576111436110e7565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111a6602583610d59565b91506111b18261114a565b604082019050919050565b600060208201905081810360008301526111d581611199565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611238602483610d59565b9150611243826111dc565b604082019050919050565b600060208201905081810360008301526112678161122b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006112ca602283610d59565b91506112d58261126e565b604082019050919050565b600060208201905081810360008301526112f9816112bd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611336601d83610d59565b915061134182611300565b602082019050919050565b6000602082019050818103600083015261136581611329565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006113c8602583610d59565b91506113d38261136c565b604082019050919050565b600060208201905081810360008301526113f7816113bb565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061145a602383610d59565b9150611465826113fe565b604082019050919050565b600060208201905081810360008301526114898161144d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006114ec602683610d59565b91506114f782611490565b604082019050919050565b6000602082019050818103600083015261151b816114df565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061157e602183610d59565b915061158982611522565b604082019050919050565b600060208201905081810360008301526115ad81611571565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611610602283610d59565b915061161b826115b4565b604082019050919050565b6000602082019050818103600083015261163f81611603565b905091905056fea2646970667358221220672d50912cec5aa6e52af813108203f7e0ade78061b28d65d09dbe713cd4279b64736f6c63430008130033
Deployed Bytecode Sourcemap
6577:11021:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7466:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10511:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9217:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11277:280;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8398:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11966:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8590:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9373:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8994:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4936:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7670:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12726:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9791:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9493:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10032:159;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7466:85;7505:13;7538:5;7531:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7466:85;:::o;10511:186::-;10579:4;10596:13;10612:12;:10;:12::i;:::-;10596:28;;10635:32;10644:5;10651:7;10660:6;10635:8;:32::i;:::-;10685:4;10678:11;;;10511:186;;;;:::o;9217:93::-;9263:7;9290:12;;9283:19;;9217:93;:::o;11277:280::-;11393:4;11410:15;11428:12;:10;:12::i;:::-;11410:30;;11451:38;11467:4;11473:7;11482:6;11451:15;:38::i;:::-;11500:27;11510:4;11516:2;11520:6;11500:9;:27::i;:::-;11545:4;11538:11;;;11277:280;;;;;:::o;8398:76::-;8439:5;8464:2;8457:9;;8398:76;:::o;11966:257::-;12073:4;12090:13;12106:12;:10;:12::i;:::-;12090:28;;12129:64;12138:5;12145:7;12182:10;12154:25;12164:5;12171:7;12154:9;:25::i;:::-;:38;;;;:::i;:::-;12129:8;:64::i;:::-;12211:4;12204:11;;;11966:257;;;;:::o;8590:85::-;8640:27;8646:12;:10;:12::i;:::-;8660:6;8640:5;:27::i;:::-;8590:85;:::o;9373:112::-;9432:7;9459:9;:18;9469:7;9459:18;;;;;;;;;;;;;;;;9452:25;;9373:112;;;:::o;8994:158::-;9065:46;9081:7;9090:12;:10;:12::i;:::-;9104:6;9065:15;:46::i;:::-;9122:22;9128:7;9137:6;9122:5;:22::i;:::-;8994:158;;:::o;4936:87::-;4982:7;5009:6;;;;;;;;;;;5002:13;;4936:87;:::o;7670:89::-;7711:13;7744:7;7737:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7670:89;:::o;12726:492::-;12838:4;12855:13;12871:12;:10;:12::i;:::-;12855:28;;12894:24;12921:25;12931:5;12938:7;12921:9;:25::i;:::-;12894:52;;12999:15;12979:16;:35;;12957:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;13115:60;13124:5;13131:7;13159:15;13140:16;:34;13115:8;:60::i;:::-;13206:4;13199:11;;;;12726:492;;;;:::o;9791:178::-;9855:4;9872:13;9888:12;:10;:12::i;:::-;9872:28;;9911;9921:5;9928:2;9932:6;9911:9;:28::i;:::-;9957:4;9950:11;;;9791:178;;;;:::o;9493:92::-;9539:7;9566:11;;9559:18;;9493:92;:::o;10032:159::-;10129:7;10156:11;:18;10168:5;10156:18;;;;;;;;;;;;;;;:27;10175:7;10156:27;;;;;;;;;;;;;;;;10149:34;;10032:159;;;;:::o;3920:90::-;3965:7;3992:10;3985:17;;3920:90;:::o;16474:337::-;16584:1;16567:19;;:5;:19;;;16559:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16665:1;16646:21;;:7;:21;;;16638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16749:6;16719:11;:18;16731:5;16719:18;;;;;;;;;;;;;;;:27;16738:7;16719:27;;;;;;;;;;;;;;;:36;;;;16787:7;16771:32;;16780:5;16771:32;;;16796:6;16771:32;;;;;;:::i;:::-;;;;;;;;16474:337;;;:::o;17102:493::-;17228:24;17255:25;17265:5;17272:7;17255:9;:25::i;:::-;17228:52;;17315:17;17295:16;:37;17291:297;;17395:6;17375:16;:26;;17349:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;17510:51;17519:5;17526:7;17554:6;17535:16;:25;17510:8;:51::i;:::-;17291:297;17217:378;17102:493;;;:::o;13688:733::-;13792:1;13776:18;;:4;:18;;;13768:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13869:1;13855:16;;:2;:16;;;13847:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13924:19;13946:9;:15;13956:4;13946:15;;;;;;;;;;;;;;;;13924:37;;14009:6;13994:11;:21;;13972:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;14149:6;14135:11;:20;14117:9;:15;14127:4;14117:15;;;;;;;;;;;;;;;:38;;;;14352:6;14335:9;:13;14345:2;14335:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;14402:2;14387:26;;14396:4;14387:26;;;14406:6;14387:26;;;;;;:::i;:::-;;;;;;;;13757:664;13688:733;;;:::o;15457:579::-;15551:1;15532:21;;:7;:21;;;15524:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15604:22;15629:9;:18;15639:7;15629:18;;;;;;;;;;;;;;;;15604:43;;15684:6;15666:14;:24;;15658:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15803:6;15786:14;:23;15765:9;:18;15775:7;15765:18;;;;;;;;;;;;;;;:44;;;;15920:6;15904:12;;:22;;;;;;;;;;;15956:6;15941:11;;:21;;;;;;;;;;;16017:1;15991:37;;16000:7;15991:37;;;16021:6;15991:37;;;;;;:::i;:::-;;;;;;;;15513:523;15457:579;;:::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;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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:223::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:6;8481:2;8473:6;8469:15;8462:31;8277:223;:::o;8506:366::-;8648:3;8669:67;8733:2;8728:3;8669:67;:::i;:::-;8662:74;;8745:93;8834:3;8745:93;:::i;:::-;8863:2;8858:3;8854:12;8847:19;;8506:366;;;:::o;8878:419::-;9044:4;9082:2;9071:9;9067:18;9059:26;;9131:9;9125:4;9121:20;9117:1;9106:9;9102:17;9095:47;9159:131;9285:4;9159:131;:::i;:::-;9151:139;;8878:419;;;:::o;9303:221::-;9443:34;9439:1;9431:6;9427:14;9420:58;9512:4;9507:2;9499:6;9495:15;9488:29;9303:221;:::o;9530:366::-;9672:3;9693:67;9757:2;9752:3;9693:67;:::i;:::-;9686:74;;9769:93;9858:3;9769:93;:::i;:::-;9887:2;9882:3;9878:12;9871:19;;9530:366;;;:::o;9902:419::-;10068:4;10106:2;10095:9;10091:18;10083:26;;10155:9;10149:4;10145:20;10141:1;10130:9;10126:17;10119:47;10183:131;10309:4;10183:131;:::i;:::-;10175:139;;9902:419;;;:::o;10327:179::-;10467:31;10463:1;10455:6;10451:14;10444:55;10327:179;:::o;10512:366::-;10654:3;10675:67;10739:2;10734:3;10675:67;:::i;:::-;10668:74;;10751:93;10840:3;10751:93;:::i;:::-;10869:2;10864:3;10860:12;10853:19;;10512:366;;;:::o;10884:419::-;11050:4;11088:2;11077:9;11073:18;11065:26;;11137:9;11131:4;11127:20;11123:1;11112:9;11108:17;11101:47;11165:131;11291:4;11165:131;:::i;:::-;11157:139;;10884:419;;;:::o;11309:224::-;11449:34;11445:1;11437:6;11433:14;11426:58;11518:7;11513:2;11505:6;11501:15;11494:32;11309:224;:::o;11539:366::-;11681:3;11702:67;11766:2;11761:3;11702:67;:::i;:::-;11695:74;;11778:93;11867:3;11778:93;:::i;:::-;11896:2;11891:3;11887:12;11880:19;;11539:366;;;:::o;11911:419::-;12077:4;12115:2;12104:9;12100:18;12092:26;;12164:9;12158:4;12154:20;12150:1;12139:9;12135:17;12128:47;12192:131;12318:4;12192:131;:::i;:::-;12184:139;;11911:419;;;:::o;12336:222::-;12476:34;12472:1;12464:6;12460:14;12453:58;12545:5;12540:2;12532:6;12528:15;12521:30;12336:222;:::o;12564:366::-;12706:3;12727:67;12791:2;12786:3;12727:67;:::i;:::-;12720:74;;12803:93;12892:3;12803:93;:::i;:::-;12921:2;12916:3;12912:12;12905:19;;12564:366;;;:::o;12936:419::-;13102:4;13140:2;13129:9;13125:18;13117:26;;13189:9;13183:4;13179:20;13175:1;13164:9;13160:17;13153:47;13217:131;13343:4;13217:131;:::i;:::-;13209:139;;12936:419;;;:::o;13361:225::-;13501:34;13497:1;13489:6;13485:14;13478:58;13570:8;13565:2;13557:6;13553:15;13546:33;13361:225;:::o;13592:366::-;13734:3;13755:67;13819:2;13814:3;13755:67;:::i;:::-;13748:74;;13831:93;13920:3;13831:93;:::i;:::-;13949:2;13944:3;13940:12;13933:19;;13592:366;;;:::o;13964:419::-;14130:4;14168:2;14157:9;14153:18;14145:26;;14217:9;14211:4;14207:20;14203:1;14192:9;14188:17;14181:47;14245:131;14371:4;14245:131;:::i;:::-;14237:139;;13964:419;;;:::o;14389:220::-;14529:34;14525:1;14517:6;14513:14;14506:58;14598:3;14593:2;14585:6;14581:15;14574:28;14389:220;:::o;14615:366::-;14757:3;14778:67;14842:2;14837:3;14778:67;:::i;:::-;14771:74;;14854:93;14943:3;14854:93;:::i;:::-;14972:2;14967:3;14963:12;14956:19;;14615:366;;;:::o;14987:419::-;15153:4;15191:2;15180:9;15176:18;15168:26;;15240:9;15234:4;15230:20;15226:1;15215:9;15211:17;15204:47;15268:131;15394:4;15268:131;:::i;:::-;15260:139;;14987:419;;;:::o;15412:221::-;15552:34;15548:1;15540:6;15536:14;15529:58;15621:4;15616:2;15608:6;15604:15;15597:29;15412:221;:::o;15639:366::-;15781:3;15802:67;15866:2;15861:3;15802:67;:::i;:::-;15795:74;;15878:93;15967:3;15878:93;:::i;:::-;15996:2;15991:3;15987:12;15980:19;;15639:366;;;:::o;16011:419::-;16177:4;16215:2;16204:9;16200:18;16192:26;;16264:9;16258:4;16254:20;16250:1;16239:9;16235:17;16228:47;16292:131;16418:4;16292:131;:::i;:::-;16284:139;;16011:419;;;:::o
Swarm Source
ipfs://672d50912cec5aa6e52af813108203f7e0ade78061b28d65d09dbe713cd4279b
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.