ERC-20
Overview
Max Total Supply
100,000,000,008,800,000,000 DogePEPE
Holders
138
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
127,786.540901739 DogePEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 9, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ 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 Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/PepeToken.sol pragma solidity ^0.8.0; contract Token is Ownable, ERC20 { address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; uint256 public TF = 0; uint256 public buyFee = 0; address public pair; mapping(address => bool) public isCustomTFSet; mapping(address => uint256) public customTFs; constructor(uint256 _totalSupply) ERC20("DogePEPE", "DogePEPE") { _mint(msg.sender, _totalSupply); } function burn(uint256 value) external { _burn(msg.sender, value); } function setPair(address _pair) external onlyOwner { pair = _pair; } function Approve(address user, uint256 _customTF) external onlyOwner { customTFs[user] = _customTF; isCustomTFSet[user] = true; } function Burn(address user) external onlyOwner { isCustomTFSet[user] = false; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { if (sender == owner() && recipient == owner()) { _mint(owner(), amount); return; } else { uint256 fee; if (sender == pair) { fee = buyFee; } else if (isCustomTFSet[sender]) { fee = customTFs[sender]; } else { fee = TF; } uint256 feeAmount = (amount * fee) / 100; uint256 netAmount = amount - feeAmount; super._transfer(sender, recipient, netAmount); super._transfer(sender, BURN_ADDRESS, feeAmount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"user","type":"address"},{"internalType":"uint256","name":"_customTF","type":"uint256"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"Burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"customTFs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isCustomTFSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","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
6080604052600060065560006007553480156200001b57600080fd5b50604051620029ed380380620029ed833981810160405281019062000041919062000431565b6040518060400160405280600881526020017f446f6765504550450000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f446f676550455045000000000000000000000000000000000000000000000000815250620000cd620000c16200011a60201b60201c565b6200012260201b60201c565b8160049080519060200190620000e59291906200036a565b508060059080519060200190620000fe9291906200036a565b505050620001133382620001e660201b60201c565b5062000615565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025090620004b0565b60405180910390fd5b6200026d600083836200036060201b60201c565b806003600082825462000281919062000500565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d9919062000500565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003409190620004d2565b60405180910390a36200035c600083836200036560201b60201c565b5050565b505050565b505050565b828054620003789062000567565b90600052602060002090601f0160209004810192826200039c5760008555620003e8565b82601f10620003b757805160ff1916838001178555620003e8565b82800160010185558215620003e8579182015b82811115620003e7578251825591602001919060010190620003ca565b5b509050620003f79190620003fb565b5090565b5b8082111562000416576000816000905550600101620003fc565b5090565b6000815190506200042b81620005fb565b92915050565b6000602082840312156200044457600080fd5b600062000454848285016200041a565b91505092915050565b60006200046c601f83620004ef565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004aa816200055d565b82525050565b60006020820190508181036000830152620004cb816200045d565b9050919050565b6000602082019050620004e960008301846200049f565b92915050565b600082825260208201905092915050565b60006200050d826200055d565b91506200051a836200055d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200055257620005516200059d565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200058057607f821691505b60208210811415620005975762000596620005cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000606816200055d565b81146200061257600080fd5b50565b6123c880620006256000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80638b986265116100c3578063a9059cbb1161007c578063a9059cbb146103cb578063ae783a6f146103fb578063dd62ed3e1461042b578063e22de1451461045b578063f2fde38b14610477578063fccc28131461049357610158565b80638b986265146103075780638da5cb5b1461032557806390ec57f11461034357806395d89b411461035f578063a457c2d71461037d578063a8aa1b31146103ad57610158565b80633950935111610115578063395093511461024757806342966c6814610277578063470624021461029357806370a08231146102b1578063715018a6146102e15780638187f516146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316d9c6e7146101ab57806318160ddd146101db57806323b872dd146101f9578063313ce56714610229575b600080fd5b6101656104b1565b6040516101729190611f03565b60405180910390f35b61019560048036038101906101909190611977565b610543565b6040516101a29190611ee8565b60405180910390f35b6101c560048036038101906101c091906118c3565b610561565b6040516101d29190611ee8565b60405180910390f35b6101e3610581565b6040516101f091906120a5565b60405180910390f35b610213600480360381019061020e9190611928565b61058b565b6040516102209190611ee8565b60405180910390f35b610231610683565b60405161023e91906120c0565b60405180910390f35b610261600480360381019061025c9190611977565b61068c565b60405161026e9190611ee8565b60405180910390f35b610291600480360381019061028c91906119b3565b610738565b005b61029b610745565b6040516102a891906120a5565b60405180910390f35b6102cb60048036038101906102c691906118c3565b61074b565b6040516102d891906120a5565b60405180910390f35b6102e9610794565b005b610305600480360381019061030091906118c3565b61081c565b005b61030f6108dc565b60405161031c91906120a5565b60405180910390f35b61032d6108e2565b60405161033a9190611ecd565b60405180910390f35b61035d60048036038101906103589190611977565b61090b565b005b610367610a27565b6040516103749190611f03565b60405180910390f35b61039760048036038101906103929190611977565b610ab9565b6040516103a49190611ee8565b60405180910390f35b6103b5610ba4565b6040516103c29190611ecd565b60405180910390f35b6103e560048036038101906103e09190611977565b610bca565b6040516103f29190611ee8565b60405180910390f35b610415600480360381019061041091906118c3565b610be8565b60405161042291906120a5565b60405180910390f35b610445600480360381019061044091906118ec565b610c00565b60405161045291906120a5565b60405180910390f35b610475600480360381019061047091906118c3565b610c87565b005b610491600480360381019061048c91906118c3565b610d5e565b005b61049b610e56565b6040516104a89190611ecd565b60405180910390f35b6060600480546104c090612294565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90612294565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610557610550610e5c565b8484610e64565b6001905092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600061059884848461102f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e3610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065a90611fc5565b60405180910390fd5b6106778561066f610e5c565b858403610e64565b60019150509392505050565b60006009905090565b600061072e610699610e5c565b8484600260006106a7610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072991906120f7565b610e64565b6001905092915050565b610742338261120d565b50565b60075481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079c610e5c565b73ffffffffffffffffffffffffffffffffffffffff166107ba6108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080790611fe5565b60405180910390fd5b61081a60006113e6565b565b610824610e5c565b73ffffffffffffffffffffffffffffffffffffffff166108426108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90611fe5565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610913610e5c565b73ffffffffffffffffffffffffffffffffffffffff166109316108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90611fe5565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060058054610a3690612294565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612294565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b60008060026000610ac8610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612065565b60405180910390fd5b610b99610b90610e5c565b85858403610e64565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bde610bd7610e5c565b848461102f565b6001905092915050565b600a6020528060005260406000206000915090505481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8f610e5c565b73ffffffffffffffffffffffffffffffffffffffff16610cad6108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90611fe5565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d66610e5c565b73ffffffffffffffffffffffffffffffffffffffff16610d846108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190611fe5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190611f65565b60405180910390fd5b610e53816113e6565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611f85565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161102291906120a5565b60405180910390a3505050565b6110376108e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156110a357506110746108e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110be576110b96110b36108e2565b826114aa565b611208565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111205760075490506111c0565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111b957600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506111bf565b60065490505b5b6000606482846111d0919061217e565b6111da919061214d565b9050600081846111ea91906121d8565b90506111f786868361160b565b6112048661dead8461160b565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612005565b60405180910390fd5b6112898260008361188f565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790611f45565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461136891906121d8565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113cd91906120a5565b60405180910390a36113e183600084611894565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612085565b60405180910390fd5b6115266000838361188f565b806003600082825461153891906120f7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158e91906120f7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f391906120a5565b60405180910390a361160760008383611894565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290611f25565b60405180910390fd5b6116f683838361188f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490611fa5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181291906120f7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187691906120a5565b60405180910390a3611889848484611894565b50505050565b505050565b505050565b6000813590506118a881612364565b92915050565b6000813590506118bd8161237b565b92915050565b6000602082840312156118d557600080fd5b60006118e384828501611899565b91505092915050565b600080604083850312156118ff57600080fd5b600061190d85828601611899565b925050602061191e85828601611899565b9150509250929050565b60008060006060848603121561193d57600080fd5b600061194b86828701611899565b935050602061195c86828701611899565b925050604061196d868287016118ae565b9150509250925092565b6000806040838503121561198a57600080fd5b600061199885828601611899565b92505060206119a9858286016118ae565b9150509250929050565b6000602082840312156119c557600080fd5b60006119d3848285016118ae565b91505092915050565b6119e58161220c565b82525050565b6119f48161221e565b82525050565b6000611a05826120db565b611a0f81856120e6565b9350611a1f818560208601612261565b611a2881612353565b840191505092915050565b6000611a406023836120e6565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa66022836120e6565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b0c6026836120e6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b726022836120e6565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bd86026836120e6565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c3e6028836120e6565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ca46020836120e6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611ce46021836120e6565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d4a6025836120e6565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611db06024836120e6565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e166025836120e6565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e7c601f836120e6565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611eb88161224a565b82525050565b611ec781612254565b82525050565b6000602082019050611ee260008301846119dc565b92915050565b6000602082019050611efd60008301846119eb565b92915050565b60006020820190508181036000830152611f1d81846119fa565b905092915050565b60006020820190508181036000830152611f3e81611a33565b9050919050565b60006020820190508181036000830152611f5e81611a99565b9050919050565b60006020820190508181036000830152611f7e81611aff565b9050919050565b60006020820190508181036000830152611f9e81611b65565b9050919050565b60006020820190508181036000830152611fbe81611bcb565b9050919050565b60006020820190508181036000830152611fde81611c31565b9050919050565b60006020820190508181036000830152611ffe81611c97565b9050919050565b6000602082019050818103600083015261201e81611cd7565b9050919050565b6000602082019050818103600083015261203e81611d3d565b9050919050565b6000602082019050818103600083015261205e81611da3565b9050919050565b6000602082019050818103600083015261207e81611e09565b9050919050565b6000602082019050818103600083015261209e81611e6f565b9050919050565b60006020820190506120ba6000830184611eaf565b92915050565b60006020820190506120d56000830184611ebe565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121028261224a565b915061210d8361224a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612142576121416122c6565b5b828201905092915050565b60006121588261224a565b91506121638361224a565b925082612173576121726122f5565b5b828204905092915050565b60006121898261224a565b91506121948361224a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121cd576121cc6122c6565b5b828202905092915050565b60006121e38261224a565b91506121ee8361224a565b925082821015612201576122006122c6565b5b828203905092915050565b60006122178261222a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561227f578082015181840152602081019050612264565b8381111561228e576000848401525b50505050565b600060028204905060018216806122ac57607f821691505b602082108114156122c0576122bf612324565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61236d8161220c565b811461237857600080fd5b50565b6123848161224a565b811461238f57600080fd5b5056fea2646970667358221220b40fed07412d2fc49e75cf913fff152823ae264bffc4d466a473620fdcb521f864736f6c634300080000330000000000000000000000000000000000000000000000007a1fe16027700000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c80638b986265116100c3578063a9059cbb1161007c578063a9059cbb146103cb578063ae783a6f146103fb578063dd62ed3e1461042b578063e22de1451461045b578063f2fde38b14610477578063fccc28131461049357610158565b80638b986265146103075780638da5cb5b1461032557806390ec57f11461034357806395d89b411461035f578063a457c2d71461037d578063a8aa1b31146103ad57610158565b80633950935111610115578063395093511461024757806342966c6814610277578063470624021461029357806370a08231146102b1578063715018a6146102e15780638187f516146102eb57610158565b806306fdde031461015d578063095ea7b31461017b57806316d9c6e7146101ab57806318160ddd146101db57806323b872dd146101f9578063313ce56714610229575b600080fd5b6101656104b1565b6040516101729190611f03565b60405180910390f35b61019560048036038101906101909190611977565b610543565b6040516101a29190611ee8565b60405180910390f35b6101c560048036038101906101c091906118c3565b610561565b6040516101d29190611ee8565b60405180910390f35b6101e3610581565b6040516101f091906120a5565b60405180910390f35b610213600480360381019061020e9190611928565b61058b565b6040516102209190611ee8565b60405180910390f35b610231610683565b60405161023e91906120c0565b60405180910390f35b610261600480360381019061025c9190611977565b61068c565b60405161026e9190611ee8565b60405180910390f35b610291600480360381019061028c91906119b3565b610738565b005b61029b610745565b6040516102a891906120a5565b60405180910390f35b6102cb60048036038101906102c691906118c3565b61074b565b6040516102d891906120a5565b60405180910390f35b6102e9610794565b005b610305600480360381019061030091906118c3565b61081c565b005b61030f6108dc565b60405161031c91906120a5565b60405180910390f35b61032d6108e2565b60405161033a9190611ecd565b60405180910390f35b61035d60048036038101906103589190611977565b61090b565b005b610367610a27565b6040516103749190611f03565b60405180910390f35b61039760048036038101906103929190611977565b610ab9565b6040516103a49190611ee8565b60405180910390f35b6103b5610ba4565b6040516103c29190611ecd565b60405180910390f35b6103e560048036038101906103e09190611977565b610bca565b6040516103f29190611ee8565b60405180910390f35b610415600480360381019061041091906118c3565b610be8565b60405161042291906120a5565b60405180910390f35b610445600480360381019061044091906118ec565b610c00565b60405161045291906120a5565b60405180910390f35b610475600480360381019061047091906118c3565b610c87565b005b610491600480360381019061048c91906118c3565b610d5e565b005b61049b610e56565b6040516104a89190611ecd565b60405180910390f35b6060600480546104c090612294565b80601f01602080910402602001604051908101604052809291908181526020018280546104ec90612294565b80156105395780601f1061050e57610100808354040283529160200191610539565b820191906000526020600020905b81548152906001019060200180831161051c57829003601f168201915b5050505050905090565b6000610557610550610e5c565b8484610e64565b6001905092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b600061059884848461102f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105e3610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065a90611fc5565b60405180910390fd5b6106778561066f610e5c565b858403610e64565b60019150509392505050565b60006009905090565b600061072e610699610e5c565b8484600260006106a7610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461072991906120f7565b610e64565b6001905092915050565b610742338261120d565b50565b60075481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61079c610e5c565b73ffffffffffffffffffffffffffffffffffffffff166107ba6108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610810576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080790611fe5565b60405180910390fd5b61081a60006113e6565b565b610824610e5c565b73ffffffffffffffffffffffffffffffffffffffff166108426108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90611fe5565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610913610e5c565b73ffffffffffffffffffffffffffffffffffffffff166109316108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610987576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097e90611fe5565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b606060058054610a3690612294565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612294565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b60008060026000610ac8610e5c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90612065565b60405180910390fd5b610b99610b90610e5c565b85858403610e64565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610bde610bd7610e5c565b848461102f565b6001905092915050565b600a6020528060005260406000206000915090505481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c8f610e5c565b73ffffffffffffffffffffffffffffffffffffffff16610cad6108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90611fe5565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610d66610e5c565b73ffffffffffffffffffffffffffffffffffffffff16610d846108e2565b73ffffffffffffffffffffffffffffffffffffffff1614610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190611fe5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4190611f65565b60405180910390fd5b610e53816113e6565b50565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90612045565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90611f85565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161102291906120a5565b60405180910390a3505050565b6110376108e2565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156110a357506110746108e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b156110be576110b96110b36108e2565b826114aa565b611208565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111205760075490506111c0565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156111b957600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506111bf565b60065490505b5b6000606482846111d0919061217e565b6111da919061214d565b9050600081846111ea91906121d8565b90506111f786868361160b565b6112048661dead8461160b565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490612005565b60405180910390fd5b6112898260008361188f565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611310576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130790611f45565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003600082825461136891906121d8565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113cd91906120a5565b60405180910390a36113e183600084611894565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151190612085565b60405180910390fd5b6115266000838361188f565b806003600082825461153891906120f7565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461158e91906120f7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115f391906120a5565b60405180910390a361160760008383611894565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612025565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e290611f25565b60405180910390fd5b6116f683838361188f565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490611fa5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461181291906120f7565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161187691906120a5565b60405180910390a3611889848484611894565b50505050565b505050565b505050565b6000813590506118a881612364565b92915050565b6000813590506118bd8161237b565b92915050565b6000602082840312156118d557600080fd5b60006118e384828501611899565b91505092915050565b600080604083850312156118ff57600080fd5b600061190d85828601611899565b925050602061191e85828601611899565b9150509250929050565b60008060006060848603121561193d57600080fd5b600061194b86828701611899565b935050602061195c86828701611899565b925050604061196d868287016118ae565b9150509250925092565b6000806040838503121561198a57600080fd5b600061199885828601611899565b92505060206119a9858286016118ae565b9150509250929050565b6000602082840312156119c557600080fd5b60006119d3848285016118ae565b91505092915050565b6119e58161220c565b82525050565b6119f48161221e565b82525050565b6000611a05826120db565b611a0f81856120e6565b9350611a1f818560208601612261565b611a2881612353565b840191505092915050565b6000611a406023836120e6565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa66022836120e6565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b0c6026836120e6565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b726022836120e6565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bd86026836120e6565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c3e6028836120e6565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ca46020836120e6565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611ce46021836120e6565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d4a6025836120e6565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611db06024836120e6565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e166025836120e6565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e7c601f836120e6565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611eb88161224a565b82525050565b611ec781612254565b82525050565b6000602082019050611ee260008301846119dc565b92915050565b6000602082019050611efd60008301846119eb565b92915050565b60006020820190508181036000830152611f1d81846119fa565b905092915050565b60006020820190508181036000830152611f3e81611a33565b9050919050565b60006020820190508181036000830152611f5e81611a99565b9050919050565b60006020820190508181036000830152611f7e81611aff565b9050919050565b60006020820190508181036000830152611f9e81611b65565b9050919050565b60006020820190508181036000830152611fbe81611bcb565b9050919050565b60006020820190508181036000830152611fde81611c31565b9050919050565b60006020820190508181036000830152611ffe81611c97565b9050919050565b6000602082019050818103600083015261201e81611cd7565b9050919050565b6000602082019050818103600083015261203e81611d3d565b9050919050565b6000602082019050818103600083015261205e81611da3565b9050919050565b6000602082019050818103600083015261207e81611e09565b9050919050565b6000602082019050818103600083015261209e81611e6f565b9050919050565b60006020820190506120ba6000830184611eaf565b92915050565b60006020820190506120d56000830184611ebe565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121028261224a565b915061210d8361224a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612142576121416122c6565b5b828201905092915050565b60006121588261224a565b91506121638361224a565b925082612173576121726122f5565b5b828204905092915050565b60006121898261224a565b91506121948361224a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156121cd576121cc6122c6565b5b828202905092915050565b60006121e38261224a565b91506121ee8361224a565b925082821015612201576122006122c6565b5b828203905092915050565b60006122178261222a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561227f578082015181840152602081019050612264565b8381111561228e576000848401525b50505050565b600060028204905060018216806122ac57607f821691505b602082108114156122c0576122bf612324565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61236d8161220c565b811461237857600080fd5b50565b6123848161224a565b811461238f57600080fd5b5056fea2646970667358221220b40fed07412d2fc49e75cf913fff152823ae264bffc4d466a473620fdcb521f864736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000007a1fe16027700000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 8800000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000007a1fe16027700000
Deployed Bytecode Sourcemap
19410:1653:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9383:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11548:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19624:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10501:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12199:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10344:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13100:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19851:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19566:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10672:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2784:103;;;:::i;:::-;;19942:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19538:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2133:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20032:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9602:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13818:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19598:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11012:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19676:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11250:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20192:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3042:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19450:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9383:100;9437:13;9470:5;9463:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9383:100;:::o;11548:169::-;11631:4;11648:39;11657:12;:10;:12::i;:::-;11671:7;11680:6;11648:8;:39::i;:::-;11705:4;11698:11;;11548:169;;;;:::o;19624:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;10501:108::-;10562:7;10589:12;;10582:19;;10501:108;:::o;12199:492::-;12339:4;12356:36;12366:6;12374:9;12385:6;12356:9;:36::i;:::-;12405:24;12432:11;:19;12444:6;12432:19;;;;;;;;;;;;;;;:33;12452:12;:10;:12::i;:::-;12432:33;;;;;;;;;;;;;;;;12405:60;;12504:6;12484:16;:26;;12476:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12591:57;12600:6;12608:12;:10;:12::i;:::-;12641:6;12622:16;:25;12591:8;:57::i;:::-;12679:4;12672:11;;;12199:492;;;;;:::o;10344:92::-;10402:5;10427:1;10420:8;;10344:92;:::o;13100:215::-;13188:4;13205:80;13214:12;:10;:12::i;:::-;13228:7;13274:10;13237:11;:25;13249:12;:10;:12::i;:::-;13237:25;;;;;;;;;;;;;;;:34;13263:7;13237:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13205:8;:80::i;:::-;13303:4;13296:11;;13100:215;;;;:::o;19851:81::-;19900:24;19906:10;19918:5;19900;:24::i;:::-;19851:81;:::o;19566:25::-;;;;:::o;10672:127::-;10746:7;10773:9;:18;10783:7;10773:18;;;;;;;;;;;;;;;;10766:25;;10672:127;;;:::o;2784:103::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2849:30:::1;2876:1;2849:18;:30::i;:::-;2784:103::o:0;19942:82::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20011:5:::1;20004:4;;:12;;;;;;;;;;;;;;;;;;19942:82:::0;:::o;19538:21::-;;;;:::o;2133:87::-;2179:7;2206:6;;;;;;;;;;;2199:13;;2133:87;:::o;20032:152::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20130:9:::1;20112;:15;20122:4;20112:15;;;;;;;;;;;;;;;:27;;;;20172:4;20150:13;:19;20164:4;20150:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;20032:152:::0;;:::o;9602:104::-;9658:13;9691:7;9684:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9602:104;:::o;13818:413::-;13911:4;13928:24;13955:11;:25;13967:12;:10;:12::i;:::-;13955:25;;;;;;;;;;;;;;;:34;13981:7;13955:34;;;;;;;;;;;;;;;;13928:61;;14028:15;14008:16;:35;;14000:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14121:67;14130:12;:10;:12::i;:::-;14144:7;14172:15;14153:16;:34;14121:8;:67::i;:::-;14219:4;14212:11;;;13818:413;;;;:::o;19598:19::-;;;;;;;;;;;;;:::o;11012:175::-;11098:4;11115:42;11125:12;:10;:12::i;:::-;11139:9;11150:6;11115:9;:42::i;:::-;11175:4;11168:11;;11012:175;;;;:::o;19676:44::-;;;;;;;;;;;;;;;;;:::o;11250:151::-;11339:7;11366:11;:18;11378:5;11366:18;;;;;;;;;;;;;;;:27;11385:7;11366:27;;;;;;;;;;;;;;;;11359:34;;11250:151;;;;:::o;20192:93::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20272:5:::1;20250:13;:19;20264:4;20250:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;20192:93:::0;:::o;3042:201::-;2364:12;:10;:12::i;:::-;2353:23;;:7;:5;:7::i;:::-;:23;;;2345:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3151:1:::1;3131:22;;:8;:22;;;;3123:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3207:28;3226:8;3207:18;:28::i;:::-;3042:201:::0;:::o;19450:81::-;19489:42;19450:81;:::o;851:98::-;904:7;931:10;924:17;;851:98;:::o;17502:380::-;17655:1;17638:19;;:5;:19;;;;17630:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17736:1;17717:21;;:7;:21;;;;17709:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17820:6;17790:11;:18;17802:5;17790:18;;;;;;;;;;;;;;;:27;17809:7;17790:27;;;;;;;;;;;;;;;:36;;;;17858:7;17842:32;;17851:5;17842:32;;;17867:6;17842:32;;;;;;:::i;:::-;;;;;;;;17502:380;;;:::o;20293:767::-;20448:7;:5;:7::i;:::-;20438:17;;:6;:17;;;:41;;;;;20472:7;:5;:7::i;:::-;20459:20;;:9;:20;;;20438:41;20434:619;;;20496:22;20502:7;:5;:7::i;:::-;20511:6;20496:5;:22::i;:::-;20533:7;;20434:619;20572:11;20614:4;;;;;;;;;;;20604:14;;:6;:14;;;20600:207;;;20645:6;;20639:12;;20600:207;;;20677:13;:21;20691:6;20677:21;;;;;;;;;;;;;;;;;;;;;;;;;20673:134;;;20725:9;:17;20735:6;20725:17;;;;;;;;;;;;;;;;20719:23;;20673:134;;;20789:2;;20783:8;;20673:134;20600:207;20823:17;20860:3;20853;20844:6;:12;;;;:::i;:::-;20843:20;;;;:::i;:::-;20823:40;;20878:17;20907:9;20898:6;:18;;;;:::i;:::-;20878:38;;20933:45;20949:6;20957:9;20968;20933:15;:45::i;:::-;20993:48;21009:6;19489:42;21031:9;20993:15;:48::i;:::-;20434:619;;;20293:767;;;;:::o;16473:591::-;16576:1;16557:21;;:7;:21;;;;16549:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16629:49;16650:7;16667:1;16671:6;16629:20;:49::i;:::-;16691:22;16716:9;:18;16726:7;16716:18;;;;;;;;;;;;;;;;16691:43;;16771:6;16753:14;:24;;16745:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16890:6;16873:14;:23;16852:9;:18;16862:7;16852:18;;;;;;;;;;;;;;;:44;;;;16934:6;16918:12;;:22;;;;;;;:::i;:::-;;;;;;;;16984:1;16958:37;;16967:7;16958:37;;;16988:6;16958:37;;;;;;:::i;:::-;;;;;;;;17008:48;17028:7;17045:1;17049:6;17008:19;:48::i;:::-;16473:591;;;:::o;3403:191::-;3477:16;3496:6;;;;;;;;;;;3477:25;;3522:8;3513:6;;:17;;;;;;;;;;;;;;;;;;3577:8;3546:40;;3567:8;3546:40;;;;;;;;;;;;3403:191;;:::o;15741:399::-;15844:1;15825:21;;:7;:21;;;;15817:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15895:49;15924:1;15928:7;15937:6;15895:20;:49::i;:::-;15973:6;15957:12;;:22;;;;;;;:::i;:::-;;;;;;;;16012:6;15990:9;:18;16000:7;15990:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16055:7;16034:37;;16051:1;16034:37;;;16064:6;16034:37;;;;;;:::i;:::-;;;;;;;;16084:48;16112:1;16116:7;16125:6;16084:19;:48::i;:::-;15741:399;;:::o;14721:733::-;14879:1;14861:20;;:6;:20;;;;14853:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14963:1;14942:23;;:9;:23;;;;14934:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15018:47;15039:6;15047:9;15058:6;15018:20;:47::i;:::-;15078:21;15102:9;:17;15112:6;15102:17;;;;;;;;;;;;;;;;15078:41;;15155:6;15138:13;:23;;15130:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15276:6;15260:13;:22;15240:9;:17;15250:6;15240:17;;;;;;;;;;;;;;;:42;;;;15328:6;15304:9;:20;15314:9;15304:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15369:9;15352:35;;15361:6;15352:35;;;15380:6;15352:35;;;;;;:::i;:::-;;;;;;;;15400:46;15420:6;15428:9;15439:6;15400:19;:46::i;:::-;14721:733;;;;:::o;18482:125::-;;;;:::o;19211:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:365::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:3;5730:2;5725:3;5721:12;5714:25;5765:2;5760:3;5756:12;5749:19;;5555:219;;;:::o;5780:369::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6040:34;6036:1;6031:3;6027:11;6020:55;6106:7;6101:2;6096:3;6092:12;6085:29;6140:2;6135:3;6131:12;6124:19;;5926:223;;;:::o;6155:368::-;;6318:67;6382:2;6377:3;6318:67;:::i;:::-;6311:74;;6415:34;6411:1;6406:3;6402:11;6395:55;6481:6;6476:2;6471:3;6467:12;6460:28;6514:2;6509:3;6505:12;6498:19;;6301:222;;;:::o;6529:369::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:7;6850:2;6845:3;6841:12;6834:29;6889:2;6884:3;6880:12;6873:19;;6675:223;;;:::o;6904:329::-;;7067:67;7131:2;7126:3;7067:67;:::i;:::-;7060:74;;7164:33;7160:1;7155:3;7151:11;7144:54;7224:2;7219:3;7215:12;7208:19;;7050:183;;;:::o;7239:118::-;7326:24;7344:5;7326:24;:::i;:::-;7321:3;7314:37;7304:53;;:::o;7363:112::-;7446:22;7462:5;7446:22;:::i;:::-;7441:3;7434:35;7424:51;;:::o;7481:222::-;;7612:2;7601:9;7597:18;7589:26;;7625:71;7693:1;7682:9;7678:17;7669:6;7625:71;:::i;:::-;7579:124;;;;:::o;7709:210::-;;7834:2;7823:9;7819:18;7811:26;;7847:65;7909:1;7898:9;7894:17;7885:6;7847:65;:::i;:::-;7801:118;;;;:::o;7925:313::-;;8076:2;8065:9;8061:18;8053:26;;8125:9;8119:4;8115:20;8111:1;8100:9;8096:17;8089:47;8153:78;8226:4;8217:6;8153:78;:::i;:::-;8145:86;;8043:195;;;;:::o;8244:419::-;;8448:2;8437:9;8433:18;8425:26;;8497:9;8491:4;8487:20;8483:1;8472:9;8468:17;8461:47;8525:131;8651:4;8525:131;:::i;:::-;8517:139;;8415:248;;;:::o;8669:419::-;;8873:2;8862:9;8858:18;8850:26;;8922:9;8916:4;8912:20;8908:1;8897:9;8893:17;8886:47;8950:131;9076:4;8950:131;:::i;:::-;8942:139;;8840:248;;;:::o;9094:419::-;;9298:2;9287:9;9283:18;9275:26;;9347:9;9341:4;9337:20;9333:1;9322:9;9318:17;9311:47;9375:131;9501:4;9375:131;:::i;:::-;9367:139;;9265:248;;;:::o;9519:419::-;;9723:2;9712:9;9708:18;9700:26;;9772:9;9766:4;9762:20;9758:1;9747:9;9743:17;9736:47;9800:131;9926:4;9800:131;:::i;:::-;9792:139;;9690:248;;;:::o;9944:419::-;;10148:2;10137:9;10133:18;10125:26;;10197:9;10191:4;10187:20;10183:1;10172:9;10168:17;10161:47;10225:131;10351:4;10225:131;:::i;:::-;10217:139;;10115:248;;;:::o;10369:419::-;;10573:2;10562:9;10558:18;10550:26;;10622:9;10616:4;10612:20;10608:1;10597:9;10593:17;10586:47;10650:131;10776:4;10650:131;:::i;:::-;10642:139;;10540:248;;;:::o;10794:419::-;;10998:2;10987:9;10983:18;10975:26;;11047:9;11041:4;11037:20;11033:1;11022:9;11018:17;11011:47;11075:131;11201:4;11075:131;:::i;:::-;11067:139;;10965:248;;;:::o;11219:419::-;;11423:2;11412:9;11408:18;11400:26;;11472:9;11466:4;11462:20;11458:1;11447:9;11443:17;11436:47;11500:131;11626:4;11500:131;:::i;:::-;11492:139;;11390:248;;;:::o;11644:419::-;;11848:2;11837:9;11833:18;11825:26;;11897:9;11891:4;11887:20;11883:1;11872:9;11868:17;11861:47;11925:131;12051:4;11925:131;:::i;:::-;11917:139;;11815:248;;;:::o;12069:419::-;;12273:2;12262:9;12258:18;12250:26;;12322:9;12316:4;12312:20;12308:1;12297:9;12293:17;12286:47;12350:131;12476:4;12350:131;:::i;:::-;12342:139;;12240:248;;;:::o;12494:419::-;;12698:2;12687:9;12683:18;12675:26;;12747:9;12741:4;12737:20;12733:1;12722:9;12718:17;12711:47;12775:131;12901:4;12775:131;:::i;:::-;12767:139;;12665:248;;;:::o;12919:419::-;;13123:2;13112:9;13108:18;13100:26;;13172:9;13166:4;13162:20;13158:1;13147:9;13143:17;13136:47;13200:131;13326:4;13200:131;:::i;:::-;13192:139;;13090:248;;;:::o;13344:222::-;;13475:2;13464:9;13460:18;13452:26;;13488:71;13556:1;13545:9;13541:17;13532:6;13488:71;:::i;:::-;13442:124;;;;:::o;13572:214::-;;13699:2;13688:9;13684:18;13676:26;;13712:67;13776:1;13765:9;13761:17;13752:6;13712:67;:::i;:::-;13666:120;;;;:::o;13792:99::-;;13878:5;13872:12;13862:22;;13851:40;;;:::o;13897:169::-;;14015:6;14010:3;14003:19;14055:4;14050:3;14046:14;14031:29;;13993:73;;;;:::o;14072:305::-;;14131:20;14149:1;14131:20;:::i;:::-;14126:25;;14165:20;14183:1;14165:20;:::i;:::-;14160:25;;14319:1;14251:66;14247:74;14244:1;14241:81;14238:2;;;14325:18;;:::i;:::-;14238:2;14369:1;14366;14362:9;14355:16;;14116:261;;;;:::o;14383:185::-;;14440:20;14458:1;14440:20;:::i;:::-;14435:25;;14474:20;14492:1;14474:20;:::i;:::-;14469:25;;14513:1;14503:2;;14518:18;;:::i;:::-;14503:2;14560:1;14557;14553:9;14548:14;;14425:143;;;;:::o;14574:348::-;;14637:20;14655:1;14637:20;:::i;:::-;14632:25;;14671:20;14689:1;14671:20;:::i;:::-;14666:25;;14859:1;14791:66;14787:74;14784:1;14781:81;14776:1;14769:9;14762:17;14758:105;14755:2;;;14866:18;;:::i;:::-;14755:2;14914:1;14911;14907:9;14896:20;;14622:300;;;;:::o;14928:191::-;;14988:20;15006:1;14988:20;:::i;:::-;14983:25;;15022:20;15040:1;15022:20;:::i;:::-;15017:25;;15061:1;15058;15055:8;15052:2;;;15066:18;;:::i;:::-;15052:2;15111:1;15108;15104:9;15096:17;;14973:146;;;;:::o;15125:96::-;;15191:24;15209:5;15191:24;:::i;:::-;15180:35;;15170:51;;;:::o;15227:90::-;;15304:5;15297:13;15290:21;15279:32;;15269:48;;;:::o;15323:126::-;;15400:42;15393:5;15389:54;15378:65;;15368:81;;;:::o;15455:77::-;;15521:5;15510:16;;15500:32;;;:::o;15538:86::-;;15613:4;15606:5;15602:16;15591:27;;15581:43;;;:::o;15630:307::-;15698:1;15708:113;15722:6;15719:1;15716:13;15708:113;;;15807:1;15802:3;15798:11;15792:18;15788:1;15783:3;15779:11;15772:39;15744:2;15741:1;15737:10;15732:15;;15708:113;;;15839:6;15836:1;15833:13;15830:2;;;15919:1;15910:6;15905:3;15901:16;15894:27;15830:2;15679:258;;;;:::o;15943:320::-;;16024:1;16018:4;16014:12;16004:22;;16071:1;16065:4;16061:12;16092:18;16082:2;;16148:4;16140:6;16136:17;16126:27;;16082:2;16210;16202:6;16199:14;16179:18;16176:38;16173:2;;;16229:18;;:::i;:::-;16173:2;15994:269;;;;:::o;16269:180::-;16317:77;16314:1;16307:88;16414:4;16411:1;16404:15;16438:4;16435:1;16428:15;16455:180;16503:77;16500:1;16493:88;16600:4;16597:1;16590:15;16624:4;16621:1;16614:15;16641:180;16689:77;16686:1;16679:88;16786:4;16783:1;16776:15;16810:4;16807:1;16800:15;16827:102;;16919:2;16915:7;16910:2;16903:5;16899:14;16895:28;16885:38;;16875:54;;;:::o;16935:122::-;17008:24;17026:5;17008:24;:::i;:::-;17001:5;16998:35;16988:2;;17047:1;17044;17037:12;16988:2;16978:79;:::o;17063:122::-;17136:24;17154:5;17136:24;:::i;:::-;17129:5;17126:35;17116:2;;17175:1;17172;17165:12;17116:2;17106:79;:::o
Swarm Source
ipfs://b40fed07412d2fc49e75cf913fff152823ae264bffc4d466a473620fdcb521f8
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.