ERC-20
Overview
Max Total Supply
10,000,000,000,000 ALPHAC
Holders
7
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
94,910,000,000.010002675889724347 ALPHACValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AlphaClassic
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-27 */ /** ALPHACLASSIC */ // SPDX-License-Identifier: MIT // File: contracts\@openzeppelin\contracts\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: contracts\@openzeppelin\contracts\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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: contracts\@openzeppelin\contracts\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 guidelines: functions revert instead * of 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 { 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 defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 * overloaded; * * 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 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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(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: * * - `to` 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) 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 to 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 { } } pragma solidity ^0.8.0; /** * AlphaCoinClassic */ contract AlphaClassic is ERC20 { constructor() ERC20("AlphaClassic ", "ALPHAC ") { _mint(msg.sender, 10000000000000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[],"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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600d81526020017f416c706861436c617373696320000000000000000000000000000000000000008152506040518060400160405280600781526020017f414c5048414320000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200026d565b508060049080519060200190620000af9291906200026d565b505050620000f433620000c7620000fa60201b60201c565b600a620000d59190620004b7565b6509184e72a000620000e8919062000508565b6200010360201b60201c565b620006dc565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d90620005ca565b60405180910390fd5b6200018a600083836200026860201b60201c565b80600260008282546200019e9190620005ec565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f59190620005ec565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025c91906200065a565b60405180910390a35050565b505050565b8280546200027b90620006a6565b90600052602060002090601f0160209004810192826200029f5760008555620002eb565b82601f10620002ba57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002ea578251825591602001919060010190620002cd565b5b509050620002fa9190620002fe565b5090565b5b8082111562000319576000816000905550600101620002ff565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620003ab578086048111156200038357620003826200031d565b5b6001851615620003935780820291505b8081029050620003a3856200034c565b945062000363565b94509492505050565b600082620003c6576001905062000499565b81620003d6576000905062000499565b8160018114620003ef5760028114620003fa5762000430565b600191505062000499565b60ff8411156200040f576200040e6200031d565b5b8360020a9150848211156200042957620004286200031d565b5b5062000499565b5060208310610133831016604e8410600b84101617156200046a5782820a9050838111156200046457620004636200031d565b5b62000499565b62000479848484600162000359565b925090508184048111156200049357620004926200031d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620004c482620004a0565b9150620004d183620004aa565b9250620005007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620003b4565b905092915050565b60006200051582620004a0565b91506200052283620004a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200055e576200055d6200031d565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005b2601f8362000569565b9150620005bf826200057a565b602082019050919050565b60006020820190508181036000830152620005e581620005a3565b9050919050565b6000620005f982620004a0565b91506200060683620004a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200063e576200063d6200031d565b5b828201905092915050565b6200065481620004a0565b82525050565b600060208201905062000671600083018462000649565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006bf57607f821691505b60208210811415620006d657620006d562000677565b5b50919050565b6113e980620006ec6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c49565b60405180910390f35b6100e660048036038101906100e19190610d04565b610308565b6040516100f39190610d5f565b60405180910390f35b610104610326565b6040516101119190610d89565b60405180910390f35b610134600480360381019061012f9190610da4565b610330565b6040516101419190610d5f565b60405180910390f35b610152610431565b60405161015f9190610e13565b60405180910390f35b610182600480360381019061017d9190610d04565b61043a565b60405161018f9190610d5f565b60405180910390f35b6101b260048036038101906101ad9190610e2e565b6104e6565b6040516101bf9190610d89565b60405180910390f35b6101d061052e565b6040516101dd9190610c49565b60405180910390f35b61020060048036038101906101fb9190610d04565b6105c0565b60405161020d9190610d5f565b60405180910390f35b610230600480360381019061022b9190610d04565b6106b4565b60405161023d9190610d5f565b60405180910390f35b610260600480360381019061025b9190610e5b565b6106d2565b60405161026d9190610d89565b60405180910390f35b60606003805461028590610eca565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610eca565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610759565b8484610761565b6001905092915050565b6000600254905090565b600061033d84848461092c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610388610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f6e565b60405180910390fd5b61042585610414610759565b85846104209190610fbd565b610761565b60019150509392505050565b60006012905090565b60006104dc610447610759565b848460016000610455610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d79190610ff1565b610761565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d90610eca565b80601f016020809104026020016040519081016040528092919081815260200182805461056990610eca565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b600080600160006105cf610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610683906110b9565b60405180910390fd5b6106a9610697610759565b8585846106a49190610fbd565b610761565b600191505092915050565b60006106c86106c1610759565b848461092c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c89061114b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906111dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091f9190610d89565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061126f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611301565b60405180910390fd5b610a17838383610bab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611393565b60405180910390fd5b8181610aa99190610fbd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b399190610ff1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190610d89565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bea578082015181840152602081019050610bcf565b83811115610bf9576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c1b82610bb0565b610c258185610bbb565b9350610c35818560208601610bcc565b610c3e81610bff565b840191505092915050565b60006020820190508181036000830152610c638184610c10565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c9b82610c70565b9050919050565b610cab81610c90565b8114610cb657600080fd5b50565b600081359050610cc881610ca2565b92915050565b6000819050919050565b610ce181610cce565b8114610cec57600080fd5b50565b600081359050610cfe81610cd8565b92915050565b60008060408385031215610d1b57610d1a610c6b565b5b6000610d2985828601610cb9565b9250506020610d3a85828601610cef565b9150509250929050565b60008115159050919050565b610d5981610d44565b82525050565b6000602082019050610d746000830184610d50565b92915050565b610d8381610cce565b82525050565b6000602082019050610d9e6000830184610d7a565b92915050565b600080600060608486031215610dbd57610dbc610c6b565b5b6000610dcb86828701610cb9565b9350506020610ddc86828701610cb9565b9250506040610ded86828701610cef565b9150509250925092565b600060ff82169050919050565b610e0d81610df7565b82525050565b6000602082019050610e286000830184610e04565b92915050565b600060208284031215610e4457610e43610c6b565b5b6000610e5284828501610cb9565b91505092915050565b60008060408385031215610e7257610e71610c6b565b5b6000610e8085828601610cb9565b9250506020610e9185828601610cb9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ee257607f821691505b60208210811415610ef657610ef5610e9b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f58602883610bbb565b9150610f6382610efc565b604082019050919050565b60006020820190508181036000830152610f8781610f4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fc882610cce565b9150610fd383610cce565b925082821015610fe657610fe5610f8e565b5b828203905092915050565b6000610ffc82610cce565b915061100783610cce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103c5761103b610f8e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006110a3602583610bbb565b91506110ae82611047565b604082019050919050565b600060208201905081810360008301526110d281611096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611135602483610bbb565b9150611140826110d9565b604082019050919050565b6000602082019050818103600083015261116481611128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111c7602283610bbb565b91506111d28261116b565b604082019050919050565b600060208201905081810360008301526111f6816111ba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611259602583610bbb565b9150611264826111fd565b604082019050919050565b600060208201905081810360008301526112888161124c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112eb602383610bbb565b91506112f68261128f565b604082019050919050565b6000602082019050818103600083015261131a816112de565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061137d602683610bbb565b915061138882611321565b604082019050919050565b600060208201905081810360008301526113ac81611370565b905091905056fea2646970667358221220ff4c878626b3a2a78723e426b9d336c95d3f9b8280962eb1ab0fffad5943bf3c64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c49565b60405180910390f35b6100e660048036038101906100e19190610d04565b610308565b6040516100f39190610d5f565b60405180910390f35b610104610326565b6040516101119190610d89565b60405180910390f35b610134600480360381019061012f9190610da4565b610330565b6040516101419190610d5f565b60405180910390f35b610152610431565b60405161015f9190610e13565b60405180910390f35b610182600480360381019061017d9190610d04565b61043a565b60405161018f9190610d5f565b60405180910390f35b6101b260048036038101906101ad9190610e2e565b6104e6565b6040516101bf9190610d89565b60405180910390f35b6101d061052e565b6040516101dd9190610c49565b60405180910390f35b61020060048036038101906101fb9190610d04565b6105c0565b60405161020d9190610d5f565b60405180910390f35b610230600480360381019061022b9190610d04565b6106b4565b60405161023d9190610d5f565b60405180910390f35b610260600480360381019061025b9190610e5b565b6106d2565b60405161026d9190610d89565b60405180910390f35b60606003805461028590610eca565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610eca565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c610315610759565b8484610761565b6001905092915050565b6000600254905090565b600061033d84848461092c565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610388610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f6e565b60405180910390fd5b61042585610414610759565b85846104209190610fbd565b610761565b60019150509392505050565b60006012905090565b60006104dc610447610759565b848460016000610455610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d79190610ff1565b610761565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461053d90610eca565b80601f016020809104026020016040519081016040528092919081815260200182805461056990610eca565b80156105b65780601f1061058b576101008083540402835291602001916105b6565b820191906000526020600020905b81548152906001019060200180831161059957829003601f168201915b5050505050905090565b600080600160006105cf610759565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610683906110b9565b60405180910390fd5b6106a9610697610759565b8585846106a49190610fbd565b610761565b600191505092915050565b60006106c86106c1610759565b848461092c565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c89061114b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610841576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610838906111dd565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091f9190610d89565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109939061126f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0390611301565b60405180910390fd5b610a17838383610bab565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611393565b60405180910390fd5b8181610aa99190610fbd565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b399190610ff1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9d9190610d89565b60405180910390a350505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bea578082015181840152602081019050610bcf565b83811115610bf9576000848401525b50505050565b6000601f19601f8301169050919050565b6000610c1b82610bb0565b610c258185610bbb565b9350610c35818560208601610bcc565b610c3e81610bff565b840191505092915050565b60006020820190508181036000830152610c638184610c10565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c9b82610c70565b9050919050565b610cab81610c90565b8114610cb657600080fd5b50565b600081359050610cc881610ca2565b92915050565b6000819050919050565b610ce181610cce565b8114610cec57600080fd5b50565b600081359050610cfe81610cd8565b92915050565b60008060408385031215610d1b57610d1a610c6b565b5b6000610d2985828601610cb9565b9250506020610d3a85828601610cef565b9150509250929050565b60008115159050919050565b610d5981610d44565b82525050565b6000602082019050610d746000830184610d50565b92915050565b610d8381610cce565b82525050565b6000602082019050610d9e6000830184610d7a565b92915050565b600080600060608486031215610dbd57610dbc610c6b565b5b6000610dcb86828701610cb9565b9350506020610ddc86828701610cb9565b9250506040610ded86828701610cef565b9150509250925092565b600060ff82169050919050565b610e0d81610df7565b82525050565b6000602082019050610e286000830184610e04565b92915050565b600060208284031215610e4457610e43610c6b565b5b6000610e5284828501610cb9565b91505092915050565b60008060408385031215610e7257610e71610c6b565b5b6000610e8085828601610cb9565b9250506020610e9185828601610cb9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610ee257607f821691505b60208210811415610ef657610ef5610e9b565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f58602883610bbb565b9150610f6382610efc565b604082019050919050565b60006020820190508181036000830152610f8781610f4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610fc882610cce565b9150610fd383610cce565b925082821015610fe657610fe5610f8e565b5b828203905092915050565b6000610ffc82610cce565b915061100783610cce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561103c5761103b610f8e565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006110a3602583610bbb565b91506110ae82611047565b604082019050919050565b600060208201905081810360008301526110d281611096565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611135602483610bbb565b9150611140826110d9565b604082019050919050565b6000602082019050818103600083015261116481611128565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006111c7602283610bbb565b91506111d28261116b565b604082019050919050565b600060208201905081810360008301526111f6816111ba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611259602583610bbb565b9150611264826111fd565b604082019050919050565b600060208201905081810360008301526112888161124c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112eb602383610bbb565b91506112f68261128f565b604082019050919050565b6000602082019050818103600083015261131a816112de565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061137d602683610bbb565b915061138882611321565b604082019050919050565b600060208201905081810360008301526113ac81611370565b905091905056fea2646970667358221220ff4c878626b3a2a78723e426b9d336c95d3f9b8280962eb1ab0fffad5943bf3c64736f6c634300080a0033
Deployed Bytecode Sourcemap
14722:161:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5913:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8053:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7006:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8704:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6857:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9535:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7177:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6123:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10253:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7517:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7755:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5913:91;5958:13;5991:5;5984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5913:91;:::o;8053:169::-;8136:4;8153:39;8162:12;:10;:12::i;:::-;8176:7;8185:6;8153:8;:39::i;:::-;8210:4;8203:11;;8053:169;;;;:::o;7006:108::-;7067:7;7094:12;;7087:19;;7006:108;:::o;8704:422::-;8810:4;8827:36;8837:6;8845:9;8856:6;8827:9;:36::i;:::-;8876:24;8903:11;:19;8915:6;8903:19;;;;;;;;;;;;;;;:33;8923:12;:10;:12::i;:::-;8903:33;;;;;;;;;;;;;;;;8876:60;;8975:6;8955:16;:26;;8947:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9037:57;9046:6;9054:12;:10;:12::i;:::-;9087:6;9068:16;:25;;;;:::i;:::-;9037:8;:57::i;:::-;9114:4;9107:11;;;8704:422;;;;;:::o;6857:84::-;6906:5;6931:2;6924:9;;6857:84;:::o;9535:215::-;9623:4;9640:80;9649:12;:10;:12::i;:::-;9663:7;9709:10;9672:11;:25;9684:12;:10;:12::i;:::-;9672:25;;;;;;;;;;;;;;;:34;9698:7;9672:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9640:8;:80::i;:::-;9738:4;9731:11;;9535:215;;;;:::o;7177:127::-;7251:7;7278:9;:18;7288:7;7278:18;;;;;;;;;;;;;;;;7271:25;;7177:127;;;:::o;6123:95::-;6170:13;6203:7;6196:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6123:95;:::o;10253:377::-;10346:4;10363:24;10390:11;:25;10402:12;:10;:12::i;:::-;10390:25;;;;;;;;;;;;;;;:34;10416:7;10390:34;;;;;;;;;;;;;;;;10363:61;;10463:15;10443:16;:35;;10435:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10531:67;10540:12;:10;:12::i;:::-;10554:7;10582:15;10563:16;:34;;;;:::i;:::-;10531:8;:67::i;:::-;10618:4;10611:11;;;10253:377;;;;:::o;7517:175::-;7603:4;7620:42;7630:12;:10;:12::i;:::-;7644:9;7655:6;7620:9;:42::i;:::-;7680:4;7673:11;;7517:175;;;;:::o;7755:151::-;7844:7;7871:11;:18;7883:5;7871:18;;;;;;;;;;;;;;;:27;7890:7;7871:27;;;;;;;;;;;;;;;;7864:34;;7755:151;;;;:::o;3506:98::-;3559:7;3586:10;3579:17;;3506:98;:::o;13609:346::-;13728:1;13711:19;;:5;:19;;;;13703:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13809:1;13790:21;;:7;:21;;;;13782:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13893:6;13863:11;:18;13875:5;13863:18;;;;;;;;;;;;;;;:27;13882:7;13863:27;;;;;;;;;;;;;;;:36;;;;13931:7;13915:32;;13924:5;13915:32;;;13940:6;13915:32;;;;;;:::i;:::-;;;;;;;;13609:346;;;:::o;11120:604::-;11244:1;11226:20;;:6;:20;;;;11218:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11328:1;11307:23;;:9;:23;;;;11299:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11383:47;11404:6;11412:9;11423:6;11383:20;:47::i;:::-;11443:21;11467:9;:17;11477:6;11467:17;;;;;;;;;;;;;;;;11443:41;;11520:6;11503:13;:23;;11495:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11616:6;11600:13;:22;;;;:::i;:::-;11580:9;:17;11590:6;11580:17;;;;;;;;;;;;;;;:42;;;;11657:6;11633:9;:20;11643:9;11633:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11698:9;11681:35;;11690:6;11681:35;;;11709:6;11681:35;;;;;;:::i;:::-;;;;;;;;11207:517;11120:604;;;:::o;14558:92::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:474::-;5304:6;5312;5361:2;5349:9;5340:7;5336:23;5332:32;5329:119;;;5367:79;;:::i;:::-;5329:119;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5236:474;;;;;:::o;5716:180::-;5764:77;5761:1;5754:88;5861:4;5858:1;5851:15;5885:4;5882:1;5875:15;5902:320;5946:6;5983:1;5977:4;5973:12;5963:22;;6030:1;6024:4;6020:12;6051:18;6041:81;;6107:4;6099:6;6095:17;6085:27;;6041:81;6169:2;6161:6;6158:14;6138:18;6135:38;6132:84;;;6188:18;;:::i;:::-;6132:84;5953:269;5902:320;;;:::o;6228:227::-;6368:34;6364:1;6356:6;6352:14;6345:58;6437:10;6432:2;6424:6;6420:15;6413:35;6228:227;:::o;6461:366::-;6603:3;6624:67;6688:2;6683:3;6624:67;:::i;:::-;6617:74;;6700:93;6789:3;6700:93;:::i;:::-;6818:2;6813:3;6809:12;6802:19;;6461:366;;;:::o;6833:419::-;6999:4;7037:2;7026:9;7022:18;7014:26;;7086:9;7080:4;7076:20;7072:1;7061:9;7057:17;7050:47;7114:131;7240:4;7114:131;:::i;:::-;7106:139;;6833:419;;;:::o;7258:180::-;7306:77;7303:1;7296:88;7403:4;7400:1;7393:15;7427:4;7424:1;7417:15;7444:191;7484:4;7504:20;7522:1;7504:20;:::i;:::-;7499:25;;7538:20;7556:1;7538:20;:::i;:::-;7533:25;;7577:1;7574;7571:8;7568:34;;;7582:18;;:::i;:::-;7568:34;7627:1;7624;7620:9;7612:17;;7444:191;;;;:::o;7641:305::-;7681:3;7700:20;7718:1;7700:20;:::i;:::-;7695:25;;7734:20;7752:1;7734:20;:::i;:::-;7729:25;;7888:1;7820:66;7816:74;7813:1;7810:81;7807:107;;;7894:18;;:::i;:::-;7807:107;7938:1;7935;7931:9;7924:16;;7641:305;;;;:::o;7952:224::-;8092:34;8088:1;8080:6;8076:14;8069:58;8161:7;8156:2;8148:6;8144:15;8137:32;7952:224;:::o;8182:366::-;8324:3;8345:67;8409:2;8404:3;8345:67;:::i;:::-;8338:74;;8421:93;8510:3;8421:93;:::i;:::-;8539:2;8534:3;8530:12;8523:19;;8182:366;;;:::o;8554:419::-;8720:4;8758:2;8747:9;8743:18;8735:26;;8807:9;8801:4;8797:20;8793:1;8782:9;8778:17;8771:47;8835:131;8961:4;8835:131;:::i;:::-;8827:139;;8554:419;;;:::o;8979:223::-;9119:34;9115:1;9107:6;9103:14;9096:58;9188:6;9183:2;9175:6;9171:15;9164:31;8979:223;:::o;9208:366::-;9350:3;9371:67;9435:2;9430:3;9371:67;:::i;:::-;9364:74;;9447:93;9536:3;9447:93;:::i;:::-;9565:2;9560:3;9556:12;9549:19;;9208:366;;;:::o;9580:419::-;9746:4;9784:2;9773:9;9769:18;9761:26;;9833:9;9827:4;9823:20;9819:1;9808:9;9804:17;9797:47;9861:131;9987:4;9861:131;:::i;:::-;9853:139;;9580:419;;;:::o;10005:221::-;10145:34;10141:1;10133:6;10129:14;10122:58;10214:4;10209:2;10201:6;10197:15;10190:29;10005:221;:::o;10232:366::-;10374:3;10395:67;10459:2;10454:3;10395:67;:::i;:::-;10388:74;;10471:93;10560:3;10471:93;:::i;:::-;10589:2;10584:3;10580:12;10573:19;;10232:366;;;:::o;10604:419::-;10770:4;10808:2;10797:9;10793:18;10785:26;;10857:9;10851:4;10847:20;10843:1;10832:9;10828:17;10821:47;10885:131;11011:4;10885:131;:::i;:::-;10877:139;;10604:419;;;:::o;11029:224::-;11169:34;11165:1;11157:6;11153:14;11146:58;11238:7;11233:2;11225:6;11221:15;11214:32;11029:224;:::o;11259:366::-;11401:3;11422:67;11486:2;11481:3;11422:67;:::i;:::-;11415:74;;11498:93;11587:3;11498:93;:::i;:::-;11616:2;11611:3;11607:12;11600:19;;11259:366;;;:::o;11631:419::-;11797:4;11835:2;11824:9;11820:18;11812:26;;11884:9;11878:4;11874:20;11870:1;11859:9;11855:17;11848:47;11912:131;12038:4;11912:131;:::i;:::-;11904:139;;11631:419;;;:::o;12056:222::-;12196:34;12192:1;12184:6;12180:14;12173:58;12265:5;12260:2;12252:6;12248:15;12241:30;12056:222;:::o;12284:366::-;12426:3;12447:67;12511:2;12506:3;12447:67;:::i;:::-;12440:74;;12523:93;12612:3;12523:93;:::i;:::-;12641:2;12636:3;12632:12;12625:19;;12284:366;;;:::o;12656:419::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12909:9;12903:4;12899:20;12895:1;12884:9;12880:17;12873:47;12937:131;13063:4;12937:131;:::i;:::-;12929:139;;12656:419;;;:::o;13081:225::-;13221:34;13217:1;13209:6;13205:14;13198:58;13290:8;13285:2;13277:6;13273:15;13266:33;13081:225;:::o;13312:366::-;13454:3;13475:67;13539:2;13534:3;13475:67;:::i;:::-;13468:74;;13551:93;13640:3;13551:93;:::i;:::-;13669:2;13664:3;13660:12;13653:19;;13312:366;;;:::o;13684:419::-;13850:4;13888:2;13877:9;13873:18;13865:26;;13937:9;13931:4;13927:20;13923:1;13912:9;13908:17;13901:47;13965:131;14091:4;13965:131;:::i;:::-;13957:139;;13684:419;;;:::o
Swarm Source
ipfs://ff4c878626b3a2a78723e426b9d336c95d3f9b8280962eb1ab0fffad5943bf3c
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.