Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
MEME
Overview
Max Total Supply
1,400,000,000,000,000 CBABY
Holders
128 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$54,117.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,010,473.899305403490105165 CBABYValue
$0.00 ( ~0 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cbaby
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-25 */ pragma solidity ^0.8.0; 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; 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; address public uniswapV2Pair; uint256 buyTax = 3; uint256 sellTax = 5; address taxWallet = 0xEF1Db7e48D418d6BE257D28E1F725a29BBB2D96C; //change tax wallet /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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"); if(uniswapV2Pair == sender){ uint256 tax = (buyTax*amount)/100; _balances[taxWallet] += tax; amount -= tax; } else if(uniswapV2Pair == recipient){ uint256 tax = (sellTax*amount)/100; _balances[taxWallet] += tax; amount -= tax; } 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"); _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"); 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 {} } pragma solidity ^0.8.0; contract Cbaby is Ownable, ERC20 { constructor(uint256 _totalSupply) ERC20("Cosmo Baby", "CBABY") { _mint(msg.sender, _totalSupply); } function setPair(address _uniswapV2Pair) external onlyOwner { uniswapV2Pair = _uniswapV2Pair; } function setTaxWallet(address _taxWallet) external onlyOwner { taxWallet = _taxWallet; } function setBuySell(uint256 _buy, uint256 _sell) external onlyOwner { require(_buy <= 10 && _sell <= 10, "Tax too high"); buyTax = _buy; sellTax = _sell; } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":"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":"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":[],"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":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"setBuySell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"setTaxWallet","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526003600755600560085573ef1db7e48d418d6be257d28e1f725a29bbb2d96c600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200007057600080fd5b50604051620027783803806200277883398181016040528101906200009691906200046d565b6040518060400160405280600a81526020017f436f736d6f2042616279000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f434241425900000000000000000000000000000000000000000000000000000081525062000122620001166200016f60201b60201c565b6200017760201b60201c565b81600490805190602001906200013a929190620003a6565b50806005908051906020019062000153929190620003a6565b5050506200016833826200023b60201b60201c565b5062000651565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a590620004ec565b60405180910390fd5b8060036000828254620002c291906200053c565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200031a91906200053c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038191906200050e565b60405180910390a36200039d60008383620003a160201b60201c565b5050565b505050565b828054620003b490620005a3565b90600052602060002090601f016020900481019282620003d8576000855562000424565b82601f10620003f357805160ff191683800117855562000424565b8280016001018555821562000424579182015b828111156200042357825182559160200191906001019062000406565b5b50905062000433919062000437565b5090565b5b808211156200045257600081600090555060010162000438565b5090565b600081519050620004678162000637565b92915050565b6000602082840312156200048057600080fd5b6000620004908482850162000456565b91505092915050565b6000620004a8601f836200052b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004e68162000599565b82525050565b60006020820190508181036000830152620005078162000499565b9050919050565b6000602082019050620005256000830184620004db565b92915050565b600082825260208201905092915050565b6000620005498262000599565b9150620005568362000599565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200058e576200058d620005d9565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620005bc57607f821691505b60208210811415620005d357620005d262000608565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b620006428162000599565b81146200064e57600080fd5b50565b61211780620006616000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030c578063cf74aaac1461033c578063dd62ed3e14610358578063ea414b2814610388578063f2fde38b146103a457610121565b8063715018a61461027a5780638187f516146102845780638da5cb5b146102a057806395d89b41146102be578063a457c2d7146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b9190611c52565b60405180910390f35b61015e6004803603810190610159919061168a565b610452565b60405161016b9190611c37565b60405180910390f35b61017c610470565b6040516101899190611df4565b60405180910390f35b6101ac60048036038101906101a7919061163b565b61047a565b6040516101b99190611c37565b60405180910390f35b6101ca610572565b6040516101d79190611e0f565b60405180910390f35b6101fa60048036038101906101f5919061168a565b61057b565b6040516102079190611c37565b60405180910390f35b61022a600480360381019061022591906116c6565b610627565b005b610234610634565b6040516102419190611c1c565b60405180910390f35b610264600480360381019061025f91906115d6565b61065a565b6040516102719190611df4565b60405180910390f35b6102826106a3565b005b61029e600480360381019061029991906115d6565b61072b565b005b6102a86107eb565b6040516102b59190611c1c565b60405180910390f35b6102c6610814565b6040516102d39190611c52565b60405180910390f35b6102f660048036038101906102f1919061168a565b6108a6565b6040516103039190611c37565b60405180910390f35b6103266004803603810190610321919061168a565b610991565b6040516103339190611c37565b60405180910390f35b610356600480360381019061035191906116ef565b6109af565b005b610372600480360381019061036d91906115ff565b610a8e565b60405161037f9190611df4565b60405180910390f35b6103a2600480360381019061039d91906115d6565b610b15565b005b6103be60048036038101906103b991906115d6565b610bd5565b005b6060600480546103cf90611fe3565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611fe3565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b600061046661045f610ccd565b8484610cd5565b6001905092915050565b6000600354905090565b6000610487848484610ea0565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d2610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054990611d14565b60405180910390fd5b6105668561055e610ccd565b858403610cd5565b60019150509392505050565b60006012905090565b600061061d610588610ccd565b848460026000610596610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106189190611e46565b610cd5565b6001905092915050565b6106313382611316565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610ccd565b73ffffffffffffffffffffffffffffffffffffffff166106c96107eb565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690611d34565b60405180910390fd5b61072960006114e3565b565b610733610ccd565b73ffffffffffffffffffffffffffffffffffffffff166107516107eb565b73ffffffffffffffffffffffffffffffffffffffff16146107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611d34565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461082390611fe3565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90611fe3565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b600080600260006108b5610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990611dd4565b60405180910390fd5b61098661097d610ccd565b85858403610cd5565b600191505092915050565b60006109a561099e610ccd565b8484610ea0565b6001905092915050565b6109b7610ccd565b73ffffffffffffffffffffffffffffffffffffffff166109d56107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611d34565b60405180910390fd5b600a8211158015610a3d5750600a8111155b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390611db4565b60405180910390fd5b81600781905550806008819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1d610ccd565b73ffffffffffffffffffffffffffffffffffffffff16610b3b6107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890611d34565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610bdd610ccd565b73ffffffffffffffffffffffffffffffffffffffff16610bfb6107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890611cb4565b60405180910390fd5b610cca816114e3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90611cd4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e939190611df4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611c74565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611080576000606482600754610fe89190611ecd565b610ff29190611e9c565b90508060016000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110659190611e46565b9250508190555080826110789190611f27565b91505061117d565b8173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561117c5760006064826008546110e89190611ecd565b6110f29190611e9c565b90508060016000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111659190611e46565b9250508190555080826111789190611f27565b9150505b5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611cf4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112999190611e46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112fd9190611df4565b60405180910390a36113108484846115a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90611d54565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490611c94565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546114659190611f27565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ca9190611df4565b60405180910390a36114de836000846115a7565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b6000813590506115bb816120b3565b92915050565b6000813590506115d0816120ca565b92915050565b6000602082840312156115e857600080fd5b60006115f6848285016115ac565b91505092915050565b6000806040838503121561161257600080fd5b6000611620858286016115ac565b9250506020611631858286016115ac565b9150509250929050565b60008060006060848603121561165057600080fd5b600061165e868287016115ac565b935050602061166f868287016115ac565b9250506040611680868287016115c1565b9150509250925092565b6000806040838503121561169d57600080fd5b60006116ab858286016115ac565b92505060206116bc858286016115c1565b9150509250929050565b6000602082840312156116d857600080fd5b60006116e6848285016115c1565b91505092915050565b6000806040838503121561170257600080fd5b6000611710858286016115c1565b9250506020611721858286016115c1565b9150509250929050565b61173481611f5b565b82525050565b61174381611f6d565b82525050565b600061175482611e2a565b61175e8185611e35565b935061176e818560208601611fb0565b611777816120a2565b840191505092915050565b600061178f602383611e35565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f5602283611e35565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185b602683611e35565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c1602283611e35565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611927602683611e35565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061198d602883611e35565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f3602083611e35565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a33602183611e35565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a99602583611e35565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aff602483611e35565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b65600c83611e35565b91507f54617820746f6f206869676800000000000000000000000000000000000000006000830152602082019050919050565b6000611ba5602583611e35565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611c0781611f99565b82525050565b611c1681611fa3565b82525050565b6000602082019050611c31600083018461172b565b92915050565b6000602082019050611c4c600083018461173a565b92915050565b60006020820190508181036000830152611c6c8184611749565b905092915050565b60006020820190508181036000830152611c8d81611782565b9050919050565b60006020820190508181036000830152611cad816117e8565b9050919050565b60006020820190508181036000830152611ccd8161184e565b9050919050565b60006020820190508181036000830152611ced816118b4565b9050919050565b60006020820190508181036000830152611d0d8161191a565b9050919050565b60006020820190508181036000830152611d2d81611980565b9050919050565b60006020820190508181036000830152611d4d816119e6565b9050919050565b60006020820190508181036000830152611d6d81611a26565b9050919050565b60006020820190508181036000830152611d8d81611a8c565b9050919050565b60006020820190508181036000830152611dad81611af2565b9050919050565b60006020820190508181036000830152611dcd81611b58565b9050919050565b60006020820190508181036000830152611ded81611b98565b9050919050565b6000602082019050611e096000830184611bfe565b92915050565b6000602082019050611e246000830184611c0d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e5182611f99565b9150611e5c83611f99565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e9157611e90612015565b5b828201905092915050565b6000611ea782611f99565b9150611eb283611f99565b925082611ec257611ec1612044565b5b828204905092915050565b6000611ed882611f99565b9150611ee383611f99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f1c57611f1b612015565b5b828202905092915050565b6000611f3282611f99565b9150611f3d83611f99565b925082821015611f5057611f4f612015565b5b828203905092915050565b6000611f6682611f79565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611fce578082015181840152602081019050611fb3565b83811115611fdd576000848401525b50505050565b60006002820490506001821680611ffb57607f821691505b6020821081141561200f5761200e612073565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6120bc81611f5b565b81146120c757600080fd5b50565b6120d381611f99565b81146120de57600080fd5b5056fea26469706673582212207ba9c9a4488c284f7d4af770cde96351dae4f5963beeed747b5e60999ceba20964736f6c6343000800003300000000000000000000000000000000000045067bf993014f75190e00000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a9059cbb11610071578063a9059cbb1461030c578063cf74aaac1461033c578063dd62ed3e14610358578063ea414b2814610388578063f2fde38b146103a457610121565b8063715018a61461027a5780638187f516146102845780638da5cb5b146102a057806395d89b41146102be578063a457c2d7146102dc57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e057806342966c681461021057806349bd5a5e1461022c57806370a082311461024a57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103c0565b60405161013b9190611c52565b60405180910390f35b61015e6004803603810190610159919061168a565b610452565b60405161016b9190611c37565b60405180910390f35b61017c610470565b6040516101899190611df4565b60405180910390f35b6101ac60048036038101906101a7919061163b565b61047a565b6040516101b99190611c37565b60405180910390f35b6101ca610572565b6040516101d79190611e0f565b60405180910390f35b6101fa60048036038101906101f5919061168a565b61057b565b6040516102079190611c37565b60405180910390f35b61022a600480360381019061022591906116c6565b610627565b005b610234610634565b6040516102419190611c1c565b60405180910390f35b610264600480360381019061025f91906115d6565b61065a565b6040516102719190611df4565b60405180910390f35b6102826106a3565b005b61029e600480360381019061029991906115d6565b61072b565b005b6102a86107eb565b6040516102b59190611c1c565b60405180910390f35b6102c6610814565b6040516102d39190611c52565b60405180910390f35b6102f660048036038101906102f1919061168a565b6108a6565b6040516103039190611c37565b60405180910390f35b6103266004803603810190610321919061168a565b610991565b6040516103339190611c37565b60405180910390f35b610356600480360381019061035191906116ef565b6109af565b005b610372600480360381019061036d91906115ff565b610a8e565b60405161037f9190611df4565b60405180910390f35b6103a2600480360381019061039d91906115d6565b610b15565b005b6103be60048036038101906103b991906115d6565b610bd5565b005b6060600480546103cf90611fe3565b80601f01602080910402602001604051908101604052809291908181526020018280546103fb90611fe3565b80156104485780601f1061041d57610100808354040283529160200191610448565b820191906000526020600020905b81548152906001019060200180831161042b57829003601f168201915b5050505050905090565b600061046661045f610ccd565b8484610cd5565b6001905092915050565b6000600354905090565b6000610487848484610ea0565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104d2610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054990611d14565b60405180910390fd5b6105668561055e610ccd565b858403610cd5565b60019150509392505050565b60006012905090565b600061061d610588610ccd565b848460026000610596610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106189190611e46565b610cd5565b6001905092915050565b6106313382611316565b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ab610ccd565b73ffffffffffffffffffffffffffffffffffffffff166106c96107eb565b73ffffffffffffffffffffffffffffffffffffffff161461071f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071690611d34565b60405180910390fd5b61072960006114e3565b565b610733610ccd565b73ffffffffffffffffffffffffffffffffffffffff166107516107eb565b73ffffffffffffffffffffffffffffffffffffffff16146107a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079e90611d34565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461082390611fe3565b80601f016020809104026020016040519081016040528092919081815260200182805461084f90611fe3565b801561089c5780601f106108715761010080835404028352916020019161089c565b820191906000526020600020905b81548152906001019060200180831161087f57829003601f168201915b5050505050905090565b600080600260006108b5610ccd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096990611dd4565b60405180910390fd5b61098661097d610ccd565b85858403610cd5565b600191505092915050565b60006109a561099e610ccd565b8484610ea0565b6001905092915050565b6109b7610ccd565b73ffffffffffffffffffffffffffffffffffffffff166109d56107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290611d34565b60405180910390fd5b600a8211158015610a3d5750600a8111155b610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7390611db4565b60405180910390fd5b81600781905550806008819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1d610ccd565b73ffffffffffffffffffffffffffffffffffffffff16610b3b6107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8890611d34565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610bdd610ccd565b73ffffffffffffffffffffffffffffffffffffffff16610bfb6107eb565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611d34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890611cb4565b60405180910390fd5b610cca816114e3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c90611d94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90611cd4565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e939190611df4565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790611d74565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611c74565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611080576000606482600754610fe89190611ecd565b610ff29190611e9c565b90508060016000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110659190611e46565b9250508190555080826110789190611f27565b91505061117d565b8173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561117c5760006064826008546110e89190611ecd565b6110f29190611e9c565b90508060016000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111659190611e46565b9250508190555080826111789190611f27565b9150505b5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fb90611cf4565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112999190611e46565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112fd9190611df4565b60405180910390a36113108484846115a7565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90611d54565b60405180910390fd5b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490611c94565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546114659190611f27565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114ca9190611df4565b60405180910390a36114de836000846115a7565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b6000813590506115bb816120b3565b92915050565b6000813590506115d0816120ca565b92915050565b6000602082840312156115e857600080fd5b60006115f6848285016115ac565b91505092915050565b6000806040838503121561161257600080fd5b6000611620858286016115ac565b9250506020611631858286016115ac565b9150509250929050565b60008060006060848603121561165057600080fd5b600061165e868287016115ac565b935050602061166f868287016115ac565b9250506040611680868287016115c1565b9150509250925092565b6000806040838503121561169d57600080fd5b60006116ab858286016115ac565b92505060206116bc858286016115c1565b9150509250929050565b6000602082840312156116d857600080fd5b60006116e6848285016115c1565b91505092915050565b6000806040838503121561170257600080fd5b6000611710858286016115c1565b9250506020611721858286016115c1565b9150509250929050565b61173481611f5b565b82525050565b61174381611f6d565b82525050565b600061175482611e2a565b61175e8185611e35565b935061176e818560208601611fb0565b611777816120a2565b840191505092915050565b600061178f602383611e35565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117f5602283611e35565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185b602683611e35565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c1602283611e35565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611927602683611e35565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061198d602883611e35565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f3602083611e35565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611a33602183611e35565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a99602583611e35565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aff602483611e35565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b65600c83611e35565b91507f54617820746f6f206869676800000000000000000000000000000000000000006000830152602082019050919050565b6000611ba5602583611e35565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611c0781611f99565b82525050565b611c1681611fa3565b82525050565b6000602082019050611c31600083018461172b565b92915050565b6000602082019050611c4c600083018461173a565b92915050565b60006020820190508181036000830152611c6c8184611749565b905092915050565b60006020820190508181036000830152611c8d81611782565b9050919050565b60006020820190508181036000830152611cad816117e8565b9050919050565b60006020820190508181036000830152611ccd8161184e565b9050919050565b60006020820190508181036000830152611ced816118b4565b9050919050565b60006020820190508181036000830152611d0d8161191a565b9050919050565b60006020820190508181036000830152611d2d81611980565b9050919050565b60006020820190508181036000830152611d4d816119e6565b9050919050565b60006020820190508181036000830152611d6d81611a26565b9050919050565b60006020820190508181036000830152611d8d81611a8c565b9050919050565b60006020820190508181036000830152611dad81611af2565b9050919050565b60006020820190508181036000830152611dcd81611b58565b9050919050565b60006020820190508181036000830152611ded81611b98565b9050919050565b6000602082019050611e096000830184611bfe565b92915050565b6000602082019050611e246000830184611c0d565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611e5182611f99565b9150611e5c83611f99565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611e9157611e90612015565b5b828201905092915050565b6000611ea782611f99565b9150611eb283611f99565b925082611ec257611ec1612044565b5b828204905092915050565b6000611ed882611f99565b9150611ee383611f99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f1c57611f1b612015565b5b828202905092915050565b6000611f3282611f99565b9150611f3d83611f99565b925082821015611f5057611f4f612015565b5b828203905092915050565b6000611f6682611f79565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611fce578082015181840152602081019050611fb3565b83811115611fdd576000848401525b50505050565b60006002820490506001821680611ffb57607f821691505b6020821081141561200f5761200e612073565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6120bc81611f5b565b81146120c757600080fd5b50565b6120d381611f99565b81146120de57600080fd5b5056fea26469706673582212207ba9c9a4488c284f7d4af770cde96351dae4f5963beeed747b5e60999ceba20964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000045067bf993014f75190e00000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1400000000000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000045067bf993014f75190e00000000
Deployed Bytecode Sourcemap
18425:675:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8262:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10429:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9382:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11080:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9224:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11981:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19016:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7587:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9553:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1488:103;;;:::i;:::-;;18594:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;837:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8481:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12699:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9893:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18821:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10131:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18711:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1746:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8262:100;8316:13;8349:5;8342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8262:100;:::o;10429:169::-;10512:4;10529:39;10538:12;:10;:12::i;:::-;10552:7;10561:6;10529:8;:39::i;:::-;10586:4;10579:11;;10429:169;;;;:::o;9382:108::-;9443:7;9470:12;;9463:19;;9382:108;:::o;11080:492::-;11220:4;11237:36;11247:6;11255:9;11266:6;11237:9;:36::i;:::-;11286:24;11313:11;:19;11325:6;11313:19;;;;;;;;;;;;;;;:33;11333:12;:10;:12::i;:::-;11313:33;;;;;;;;;;;;;;;;11286:60;;11385:6;11365:16;:26;;11357:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11472:57;11481:6;11489:12;:10;:12::i;:::-;11522:6;11503:16;:25;11472:8;:57::i;:::-;11560:4;11553:11;;;11080:492;;;;;:::o;9224:93::-;9282:5;9307:2;9300:9;;9224:93;:::o;11981:215::-;12069:4;12086:80;12095:12;:10;:12::i;:::-;12109:7;12155:10;12118:11;:25;12130:12;:10;:12::i;:::-;12118:25;;;;;;;;;;;;;;;:34;12144:7;12118:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12086:8;:80::i;:::-;12184:4;12177:11;;11981:215;;;;:::o;19016:81::-;19065:24;19071:10;19083:5;19065;:24::i;:::-;19016:81;:::o;7587:28::-;;;;;;;;;;;;;:::o;9553:127::-;9627:7;9654:9;:18;9664:7;9654:18;;;;;;;;;;;;;;;;9647:25;;9553:127;;;:::o;1488:103::-;1068:12;:10;:12::i;:::-;1057:23;;:7;:5;:7::i;:::-;:23;;;1049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1553:30:::1;1580:1;1553:18;:30::i;:::-;1488:103::o:0;18594:109::-;1068:12;:10;:12::i;:::-;1057:23;;:7;:5;:7::i;:::-;:23;;;1049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18681:14:::1;18665:13;;:30;;;;;;;;;;;;;;;;;;18594:109:::0;:::o;837:87::-;883:7;910:6;;;;;;;;;;;903:13;;837:87;:::o;8481:104::-;8537:13;8570:7;8563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8481:104;:::o;12699:413::-;12792:4;12809:24;12836:11;:25;12848:12;:10;:12::i;:::-;12836:25;;;;;;;;;;;;;;;:34;12862:7;12836:34;;;;;;;;;;;;;;;;12809:61;;12909:15;12889:16;:35;;12881:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13002:67;13011:12;:10;:12::i;:::-;13025:7;13053:15;13034:16;:34;13002:8;:67::i;:::-;13100:4;13093:11;;;12699:413;;;;:::o;9893:175::-;9979:4;9996:42;10006:12;:10;:12::i;:::-;10020:9;10031:6;9996:9;:42::i;:::-;10056:4;10049:11;;9893:175;;;;:::o;18821:187::-;1068:12;:10;:12::i;:::-;1057:23;;:7;:5;:7::i;:::-;:23;;;1049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18916:2:::1;18908:4;:10;;:25;;;;;18931:2;18922:5;:11;;18908:25;18900:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;18970:4;18961:6;:13;;;;18995:5;18985:7;:15;;;;18821:187:::0;;:::o;10131:151::-;10220:7;10247:11;:18;10259:5;10247:18;;;;;;;;;;;;;;;:27;10266:7;10247:27;;;;;;;;;;;;;;;;10240:34;;10131:151;;;;:::o;18711:102::-;1068:12;:10;:12::i;:::-;1057:23;;:7;:5;:7::i;:::-;:23;;;1049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18795:10:::1;18783:9;;:22;;;;;;;;;;;;;;;;;;18711:102:::0;:::o;1746:201::-;1068:12;:10;:12::i;:::-;1057:23;;:7;:5;:7::i;:::-;:23;;;1049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1855:1:::1;1835:22;;:8;:22;;;;1827:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;1911:28;1930:8;1911:18;:28::i;:::-;1746:201:::0;:::o;60:98::-;113:7;140:10;133:17;;60:98;:::o;16554:380::-;16707:1;16690:19;;:5;:19;;;;16682:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16788:1;16769:21;;:7;:21;;;;16761:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16872:6;16842:11;:18;16854:5;16842:18;;;;;;;;;;;;;;;:27;16861:7;16842:27;;;;;;;;;;;;;;;:36;;;;16910:7;16894:32;;16903:5;16894:32;;;16919:6;16894:32;;;;;;:::i;:::-;;;;;;;;16554:380;;;:::o;13602:1028::-;13760:1;13742:20;;:6;:20;;;;13734:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13844:1;13823:23;;:9;:23;;;;13815:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13919:6;13902:23;;:13;;;;;;;;;;;:23;;;13899:333;;;13941:11;13971:3;13963:6;13956;;:13;;;;:::i;:::-;13955:19;;;;:::i;:::-;13941:33;;14013:3;13989:9;:20;13999:9;;;;;;;;;;;13989:20;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;14041:3;14031:13;;;;;:::i;:::-;;;13899:333;;;;14091:9;14074:26;;:13;;;;;;;;;;;:26;;;14071:161;;;14116:11;14147:3;14139:6;14131:7;;:14;;;;:::i;:::-;14130:20;;;;:::i;:::-;14116:34;;14189:3;14165:9;:20;14175:9;;;;;;;;;;;14165:20;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;14217:3;14207:13;;;;;:::i;:::-;;;14071:161;;13899:333;14244:21;14268:9;:17;14278:6;14268:17;;;;;;;;;;;;;;;;14244:41;;14321:6;14304:13;:23;;14296:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14442:6;14426:13;:22;14406:9;:17;14416:6;14406:17;;;;;;;;;;;;;;;:42;;;;14494:6;14470:9;:20;14480:9;14470:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14535:9;14518:35;;14527:6;14518:35;;;14546:6;14518:35;;;;;;:::i;:::-;;;;;;;;14566:46;14586:6;14594:9;14605:6;14566:19;:46::i;:::-;13602:1028;;;;:::o;15587:529::-;15690:1;15671:21;;:7;:21;;;;15663:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15743:22;15768:9;:18;15778:7;15768:18;;;;;;;;;;;;;;;;15743:43;;15823:6;15805:14;:24;;15797:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15942:6;15925:14;:23;15904:9;:18;15914:7;15904:18;;;;;;;;;;;;;;;:44;;;;15986:6;15970:12;;:22;;;;;;;:::i;:::-;;;;;;;;16036:1;16010:37;;16019:7;16010:37;;;16040:6;16010:37;;;;;;:::i;:::-;;;;;;;;16060:48;16080:7;16097:1;16101:6;16060:19;:48::i;:::-;15587:529;;;:::o;2107:191::-;2181:16;2200:6;;;;;;;;;;;2181:25;;2226:8;2217:6;;:17;;;;;;;;;;;;;;;;;;2281:8;2250:40;;2271:8;2250:40;;;;;;;;;;;;2107:191;;:::o;18263: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:407::-;;;2342:2;2330:9;2321:7;2317:23;2313:32;2310:2;;;2358:1;2355;2348:12;2310:2;2401:1;2426:53;2471:7;2462:6;2451:9;2447:22;2426:53;:::i;:::-;2416:63;;2372:117;2528:2;2554:53;2599:7;2590:6;2579:9;2575:22;2554:53;:::i;:::-;2544:63;;2499:118;2300:324;;;;;:::o;2630:118::-;2717:24;2735:5;2717:24;:::i;:::-;2712:3;2705:37;2695:53;;:::o;2754:109::-;2835:21;2850:5;2835:21;:::i;:::-;2830:3;2823:34;2813:50;;:::o;2869:364::-;;2985:39;3018:5;2985:39;:::i;:::-;3040:71;3104:6;3099:3;3040:71;:::i;:::-;3033:78;;3120:52;3165:6;3160:3;3153:4;3146:5;3142:16;3120:52;:::i;:::-;3197:29;3219:6;3197:29;:::i;:::-;3192:3;3188:39;3181:46;;2961:272;;;;;:::o;3239:367::-;;3402:67;3466:2;3461:3;3402:67;:::i;:::-;3395:74;;3499:34;3495:1;3490:3;3486:11;3479:55;3565:5;3560:2;3555:3;3551:12;3544:27;3597:2;3592:3;3588:12;3581:19;;3385:221;;;:::o;3612:366::-;;3775:67;3839:2;3834:3;3775:67;:::i;:::-;3768:74;;3872:34;3868:1;3863:3;3859:11;3852:55;3938:4;3933:2;3928:3;3924:12;3917:26;3969:2;3964:3;3960:12;3953:19;;3758:220;;;:::o;3984:370::-;;4147:67;4211:2;4206:3;4147:67;:::i;:::-;4140:74;;4244:34;4240:1;4235:3;4231:11;4224:55;4310:8;4305:2;4300:3;4296:12;4289:30;4345:2;4340:3;4336:12;4329:19;;4130:224;;;:::o;4360:366::-;;4523:67;4587:2;4582:3;4523:67;:::i;:::-;4516:74;;4620:34;4616:1;4611:3;4607:11;4600:55;4686:4;4681:2;4676:3;4672:12;4665:26;4717:2;4712:3;4708:12;4701:19;;4506:220;;;:::o;4732:370::-;;4895:67;4959:2;4954:3;4895:67;:::i;:::-;4888:74;;4992:34;4988:1;4983:3;4979:11;4972:55;5058:8;5053:2;5048:3;5044:12;5037:30;5093:2;5088:3;5084:12;5077:19;;4878:224;;;:::o;5108:372::-;;5271:67;5335:2;5330:3;5271:67;:::i;:::-;5264:74;;5368:34;5364:1;5359:3;5355:11;5348:55;5434:10;5429:2;5424:3;5420:12;5413:32;5471:2;5466:3;5462:12;5455:19;;5254:226;;;:::o;5486:330::-;;5649:67;5713:2;5708:3;5649:67;:::i;:::-;5642:74;;5746:34;5742:1;5737:3;5733:11;5726:55;5807:2;5802:3;5798:12;5791:19;;5632:184;;;:::o;5822:365::-;;5985:67;6049:2;6044:3;5985:67;:::i;:::-;5978:74;;6082:34;6078:1;6073:3;6069:11;6062:55;6148:3;6143:2;6138:3;6134:12;6127:25;6178:2;6173:3;6169:12;6162:19;;5968:219;;;:::o;6193:369::-;;6356:67;6420:2;6415:3;6356:67;:::i;:::-;6349:74;;6453:34;6449:1;6444:3;6440:11;6433:55;6519:7;6514:2;6509:3;6505:12;6498:29;6553:2;6548:3;6544:12;6537:19;;6339:223;;;:::o;6568:368::-;;6731:67;6795:2;6790:3;6731:67;:::i;:::-;6724:74;;6828:34;6824:1;6819:3;6815:11;6808:55;6894:6;6889:2;6884:3;6880:12;6873:28;6927:2;6922:3;6918:12;6911:19;;6714:222;;;:::o;6942:310::-;;7105:67;7169:2;7164:3;7105:67;:::i;:::-;7098:74;;7202:14;7198:1;7193:3;7189:11;7182:35;7243:2;7238:3;7234:12;7227:19;;7088:164;;;:::o;7258:369::-;;7421:67;7485:2;7480:3;7421:67;:::i;:::-;7414:74;;7518:34;7514:1;7509:3;7505:11;7498:55;7584:7;7579:2;7574:3;7570:12;7563:29;7618:2;7613:3;7609:12;7602:19;;7404:223;;;:::o;7633:118::-;7720:24;7738:5;7720:24;:::i;:::-;7715:3;7708:37;7698:53;;:::o;7757:112::-;7840:22;7856:5;7840:22;:::i;:::-;7835:3;7828:35;7818:51;;:::o;7875:222::-;;8006:2;7995:9;7991:18;7983:26;;8019:71;8087:1;8076:9;8072:17;8063:6;8019:71;:::i;:::-;7973:124;;;;:::o;8103:210::-;;8228:2;8217:9;8213:18;8205:26;;8241:65;8303:1;8292:9;8288:17;8279:6;8241:65;:::i;:::-;8195:118;;;;:::o;8319:313::-;;8470:2;8459:9;8455:18;8447:26;;8519:9;8513:4;8509:20;8505:1;8494:9;8490:17;8483:47;8547:78;8620:4;8611:6;8547:78;:::i;:::-;8539:86;;8437:195;;;;:::o;8638:419::-;;8842:2;8831:9;8827:18;8819:26;;8891:9;8885:4;8881:20;8877:1;8866:9;8862:17;8855:47;8919:131;9045:4;8919:131;:::i;:::-;8911:139;;8809:248;;;:::o;9063:419::-;;9267:2;9256:9;9252:18;9244:26;;9316:9;9310:4;9306:20;9302:1;9291:9;9287:17;9280:47;9344:131;9470:4;9344:131;:::i;:::-;9336:139;;9234:248;;;:::o;9488:419::-;;9692:2;9681:9;9677:18;9669:26;;9741:9;9735:4;9731:20;9727:1;9716:9;9712:17;9705:47;9769:131;9895:4;9769:131;:::i;:::-;9761:139;;9659:248;;;:::o;9913:419::-;;10117:2;10106:9;10102:18;10094:26;;10166:9;10160:4;10156:20;10152:1;10141:9;10137:17;10130:47;10194:131;10320:4;10194:131;:::i;:::-;10186:139;;10084:248;;;:::o;10338:419::-;;10542:2;10531:9;10527:18;10519:26;;10591:9;10585:4;10581:20;10577:1;10566:9;10562:17;10555:47;10619:131;10745:4;10619:131;:::i;:::-;10611:139;;10509:248;;;:::o;10763:419::-;;10967:2;10956:9;10952:18;10944:26;;11016:9;11010:4;11006:20;11002:1;10991:9;10987:17;10980:47;11044:131;11170:4;11044:131;:::i;:::-;11036:139;;10934:248;;;:::o;11188:419::-;;11392:2;11381:9;11377:18;11369:26;;11441:9;11435:4;11431:20;11427:1;11416:9;11412:17;11405:47;11469:131;11595:4;11469:131;:::i;:::-;11461:139;;11359:248;;;:::o;11613:419::-;;11817:2;11806:9;11802:18;11794:26;;11866:9;11860:4;11856:20;11852:1;11841:9;11837:17;11830:47;11894:131;12020:4;11894:131;:::i;:::-;11886:139;;11784:248;;;:::o;12038:419::-;;12242:2;12231:9;12227:18;12219:26;;12291:9;12285:4;12281:20;12277:1;12266:9;12262:17;12255:47;12319:131;12445:4;12319:131;:::i;:::-;12311:139;;12209:248;;;:::o;12463:419::-;;12667:2;12656:9;12652:18;12644:26;;12716:9;12710:4;12706:20;12702:1;12691:9;12687:17;12680:47;12744:131;12870:4;12744:131;:::i;:::-;12736:139;;12634:248;;;:::o;12888:419::-;;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:131;13295:4;13169:131;:::i;:::-;13161:139;;13059:248;;;:::o;13313:419::-;;13517:2;13506:9;13502:18;13494:26;;13566:9;13560:4;13556:20;13552:1;13541:9;13537:17;13530:47;13594:131;13720:4;13594:131;:::i;:::-;13586:139;;13484:248;;;:::o;13738:222::-;;13869:2;13858:9;13854:18;13846:26;;13882:71;13950:1;13939:9;13935:17;13926:6;13882:71;:::i;:::-;13836:124;;;;:::o;13966:214::-;;14093:2;14082:9;14078:18;14070:26;;14106:67;14170:1;14159:9;14155:17;14146:6;14106:67;:::i;:::-;14060:120;;;;:::o;14186:99::-;;14272:5;14266:12;14256:22;;14245:40;;;:::o;14291:169::-;;14409:6;14404:3;14397:19;14449:4;14444:3;14440:14;14425:29;;14387:73;;;;:::o;14466:305::-;;14525:20;14543:1;14525:20;:::i;:::-;14520:25;;14559:20;14577:1;14559:20;:::i;:::-;14554:25;;14713:1;14645:66;14641:74;14638:1;14635:81;14632:2;;;14719:18;;:::i;:::-;14632:2;14763:1;14760;14756:9;14749:16;;14510:261;;;;:::o;14777:185::-;;14834:20;14852:1;14834:20;:::i;:::-;14829:25;;14868:20;14886:1;14868:20;:::i;:::-;14863:25;;14907:1;14897:2;;14912:18;;:::i;:::-;14897:2;14954:1;14951;14947:9;14942:14;;14819:143;;;;:::o;14968:348::-;;15031:20;15049:1;15031:20;:::i;:::-;15026:25;;15065:20;15083:1;15065:20;:::i;:::-;15060:25;;15253:1;15185:66;15181:74;15178:1;15175:81;15170:1;15163:9;15156:17;15152:105;15149:2;;;15260:18;;:::i;:::-;15149:2;15308:1;15305;15301:9;15290:20;;15016:300;;;;:::o;15322:191::-;;15382:20;15400:1;15382:20;:::i;:::-;15377:25;;15416:20;15434:1;15416:20;:::i;:::-;15411:25;;15455:1;15452;15449:8;15446:2;;;15460:18;;:::i;:::-;15446:2;15505:1;15502;15498:9;15490:17;;15367:146;;;;:::o;15519:96::-;;15585:24;15603:5;15585:24;:::i;:::-;15574:35;;15564:51;;;:::o;15621:90::-;;15698:5;15691:13;15684:21;15673:32;;15663:48;;;:::o;15717:126::-;;15794:42;15787:5;15783:54;15772:65;;15762:81;;;:::o;15849:77::-;;15915:5;15904:16;;15894:32;;;:::o;15932:86::-;;16007:4;16000:5;15996:16;15985:27;;15975:43;;;:::o;16024:307::-;16092:1;16102:113;16116:6;16113:1;16110:13;16102:113;;;16201:1;16196:3;16192:11;16186:18;16182:1;16177:3;16173:11;16166:39;16138:2;16135:1;16131:10;16126:15;;16102:113;;;16233:6;16230:1;16227:13;16224:2;;;16313:1;16304:6;16299:3;16295:16;16288:27;16224:2;16073:258;;;;:::o;16337:320::-;;16418:1;16412:4;16408:12;16398:22;;16465:1;16459:4;16455:12;16486:18;16476:2;;16542:4;16534:6;16530:17;16520:27;;16476:2;16604;16596:6;16593:14;16573:18;16570:38;16567:2;;;16623:18;;:::i;:::-;16567:2;16388:269;;;;:::o;16663:180::-;16711:77;16708:1;16701:88;16808:4;16805:1;16798:15;16832:4;16829:1;16822:15;16849:180;16897:77;16894:1;16887:88;16994:4;16991:1;16984:15;17018:4;17015:1;17008:15;17035:180;17083:77;17080:1;17073:88;17180:4;17177:1;17170:15;17204:4;17201:1;17194:15;17221:102;;17313:2;17309:7;17304:2;17297:5;17293:14;17289:28;17279:38;;17269:54;;;:::o;17329:122::-;17402:24;17420:5;17402:24;:::i;:::-;17395:5;17392:35;17382:2;;17441:1;17438;17431:12;17382:2;17372:79;:::o;17457:122::-;17530:24;17548:5;17530:24;:::i;:::-;17523:5;17520:35;17510:2;;17569:1;17566;17559:12;17510:2;17500:79;:::o
Swarm Source
ipfs://7ba9c9a4488c284f7d4af770cde96351dae4f5963beeed747b5e60999ceba209
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.