ERC-20
Overview
Max Total Supply
4,200,000,000,042 AKA
Holders
21
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
182,061,069,665.933565634017588733 AKAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AKA
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-06-01 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.9; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} } /** * @dev Interface of the ERC3156 FlashBorrower, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashBorrower { /** * @dev Receive a flash loan. * @param initiator The initiator of the loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @param fee The additional amount of tokens to repay. * @param data Arbitrary data structure, intended to contain user-defined parameters. * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan" */ function onFlashLoan( address initiator, address token, uint256 amount, uint256 fee, bytes calldata data ) external returns (bytes32); } /** * @dev Interface of the ERC3156 FlashLender, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * _Available since v4.1._ */ interface IERC3156FlashLender { /** * @dev The amount of currency available to be lended. * @param token The loan currency. * @return The amount of `token` that can be borrowed. */ function maxFlashLoan(address token) external view returns (uint256); /** * @dev The fee to be charged for a given loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @return The amount of `token` to be charged for the loan, on top of the returned principal. */ function flashFee(address token, uint256 amount) external view returns (uint256); /** * @dev Initiate a flash loan. * @param receiver The receiver of the tokens in the loan, and the receiver of the callback. * @param token The loan currency. * @param amount The amount of tokens lent. * @param data Arbitrary data structure, intended to contain user-defined parameters. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) external returns (bool); } /** * @dev Implementation of the ERC3156 Flash loans extension, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * Adds the {flashLoan} method, which provides flash loan support at the token * level. By default there is no fee, but this can be changed by overriding {flashFee}. * * _Available since v4.1._ */ abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender { bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan"); /** * @dev Returns the maximum amount of tokens available for loan. * @param token The address of the token that is requested. * @return The amount of token that can be loaned. */ function maxFlashLoan(address token) public view virtual override returns (uint256) { return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0; } /** * @dev Returns the fee applied when doing flash loans. This function calls * the {_flashFee} function which returns the fee applied when doing flash * loans. * @param token The token to be flash loaned. * @param amount The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function flashFee(address token, uint256 amount) public view virtual override returns (uint256) { require(token == address(this), "ERC20FlashMint: wrong token"); return _flashFee(token, amount); } /** * @dev Returns the fee applied when doing flash loans. By default this * implementation has 0 fees. This function can be overloaded to make * the flash loan mechanism deflationary. * @param token The token to be flash loaned. * @param amount The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function _flashFee(address token, uint256 amount) internal view virtual returns (uint256) { // silence warning about unused variable without the addition of bytecode. token; amount; return 0; } /** * @dev Returns the receiver address of the flash fee. By default this * implementation returns the address(0) which means the fee amount will be burnt. * This function can be overloaded to change the fee receiver. * @return The address for which the flash fee will be sent to. */ function _flashFeeReceiver() internal view virtual returns (address) { return address(0); } /** * @dev Performs a flash loan. New tokens are minted and sent to the * `receiver`, who is required to implement the {IERC3156FlashBorrower} * interface. By the end of the flash loan, the receiver is expected to own * amount + fee tokens and have them approved back to the token contract itself so * they can be burned. * @param receiver The receiver of the flash loan. Should implement the * {IERC3156FlashBorrower-onFlashLoan} interface. * @param token The token to be flash loaned. Only `address(this)` is * supported. * @param amount The amount of tokens to be loaned. * @param data An arbitrary datafield that is passed to the receiver. * @return `true` if the flash loan was successful. */ // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount // minted at the beginning is always recovered and burned at the end, or else the entire function will revert. // slither-disable-next-line reentrancy-no-eth function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) public virtual override returns (bool) { require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan"); uint256 fee = flashFee(token, amount); _mint(address(receiver), amount); require( receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE, "ERC20FlashMint: invalid return value" ); address flashFeeReceiver = _flashFeeReceiver(); _spendAllowance(address(receiver), address(this), amount + fee); if (fee == 0 || flashFeeReceiver == address(0)) { _burn(address(receiver), amount + fee); } else { _burn(address(receiver), amount); _transfer(address(receiver), flashFeeReceiver, fee); } return true; } } contract AKA is ERC20, ERC20FlashMint { constructor() ERC20("AKA", "AKA") { _mint(msg.sender, 4200000000042 * 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":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600381526020017f414b4100000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414b4100000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200027b565b508060049080519060200190620000af9291906200027b565b505050620000f433620000c7620000fa60201b60201c565b600a620000d59190620004c5565b6503d1e382102a620000e8919062000516565b6200010360201b60201c565b620006ea565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d90620005d8565b60405180910390fd5b6200018a600083836200027160201b60201c565b80600260008282546200019e9190620005fa565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000251919062000668565b60405180910390a36200026d600083836200027660201b60201c565b5050565b505050565b505050565b8280546200028990620006b4565b90600052602060002090601f016020900481019282620002ad5760008555620002f9565b82601f10620002c857805160ff1916838001178555620002f9565b82800160010185558215620002f9579182015b82811115620002f8578251825591602001919060010190620002db565b5b5090506200030891906200030c565b5090565b5b80821115620003275760008160009055506001016200030d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620003b9578086048111156200039157620003906200032b565b5b6001851615620003a15780820291505b8081029050620003b1856200035a565b945062000371565b94509492505050565b600082620003d45760019050620004a7565b81620003e45760009050620004a7565b8160018114620003fd576002811462000408576200043e565b6001915050620004a7565b60ff8411156200041d576200041c6200032b565b5b8360020a9150848211156200043757620004366200032b565b5b50620004a7565b5060208310610133831016604e8410600b8410161715620004785782820a9050838111156200047257620004716200032b565b5b620004a7565b62000487848484600162000367565b92509050818404811115620004a157620004a06200032b565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620004d282620004ae565b9150620004df83620004b8565b92506200050e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620003c2565b905092915050565b60006200052382620004ae565b91506200053083620004ae565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200056c576200056b6200032b565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005c0601f8362000577565b9150620005cd8262000588565b602082019050919050565b60006020820190508181036000830152620005f381620005b1565b9050919050565b60006200060782620004ae565b91506200061483620004ae565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200064c576200064b6200032b565b5b828201905092915050565b6200066281620004ae565b82525050565b60006020820190506200067f600083018462000657565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006cd57607f821691505b60208210811415620006e457620006e362000685565b5b50919050565b611ee780620006fa6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063613255ab1161008c578063a457c2d711610066578063a457c2d714610287578063a9059cbb146102b7578063d9d98ce4146102e7578063dd62ed3e14610317576100ea565b8063613255ab1461020957806370a082311461023957806395d89b4114610269576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780635cffe9de146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610347565b6040516101049190611202565b60405180910390f35b610127600480360381019061012291906112c2565b6103d9565b604051610134919061131d565b60405180910390f35b6101456103fc565b6040516101529190611347565b60405180910390f35b61017560048036038101906101709190611362565b610406565b604051610182919061131d565b60405180910390f35b610193610435565b6040516101a091906113d1565b60405180910390f35b6101c360048036038101906101be91906112c2565b61043e565b6040516101d0919061131d565b60405180910390f35b6101f360048036038101906101ee919061148f565b610475565b604051610200919061131d565b60405180910390f35b610223600480360381019061021e9190611517565b610662565b6040516102309190611347565b60405180910390f35b610253600480360381019061024e9190611517565b6106d9565b6040516102609190611347565b60405180910390f35b610271610721565b60405161027e9190611202565b60405180910390f35b6102a1600480360381019061029c91906112c2565b6107b3565b6040516102ae919061131d565b60405180910390f35b6102d160048036038101906102cc91906112c2565b61082a565b6040516102de919061131d565b60405180910390f35b61030160048036038101906102fc91906112c2565b61084d565b60405161030e9190611347565b60405180910390f35b610331600480360381019061032c9190611544565b6108cf565b60405161033e9190611347565b60405180910390f35b606060038054610356906115b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610382906115b3565b80156103cf5780601f106103a4576101008083540402835291602001916103cf565b820191906000526020600020905b8154815290600101906020018083116103b257829003601f168201915b5050505050905090565b6000806103e4610956565b90506103f181858561095e565b600191505092915050565b6000600254905090565b600080610411610956565b905061041e858285610b29565b610429858585610bb5565b60019150509392505050565b60006012905090565b600080610449610956565b905061046a81858561045b85896108cf565b6104659190611614565b61095e565b600191505092915050565b600061048085610662565b8411156104c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b9906116dc565b60405180910390fd5b60006104ce868661084d565b90506104da8786610e2d565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b815260040161053e96959493929190611758565b6020604051808303816000875af115801561055d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058191906117ea565b146105c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b890611889565b60405180910390fd5b60006105cb610f84565b90506105e3883084896105de9190611614565b610b29565b600082148061061e5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561063d576106388883886106339190611614565b610f89565b610653565b6106478887610f89565b610652888284610bb5565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461069e5760006106d2565b6106a66103fc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6106d191906118a9565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610730906115b3565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906115b3565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b6000806107be610956565b905060006107cc82866108cf565b905083811015610811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108089061194f565b60405180910390fd5b61081e828686840361095e565b60019250505092915050565b600080610835610956565b9050610842818585610bb5565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906119bb565b60405180910390fd5b6108c78383611157565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590611adf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1c9190611347565b60405180910390a3505050565b6000610b3584846108cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610baf5781811015610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890611b4b565b60405180910390fd5b610bae848484840361095e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90611bdd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90611c6f565b60405180910390fd5b610ca083838361115f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611d01565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e149190611347565b60405180910390a3610e27848484611164565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611d6d565b60405180910390fd5b610ea96000838361115f565b8060026000828254610ebb9190611614565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f6c9190611347565b60405180910390a3610f8060008383611164565b5050565b600090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090611dff565b60405180910390fd5b6110058260008361115f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290611e91565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113e9190611347565b60405180910390a361115283600084611164565b505050565b600092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111a3578082015181840152602081019050611188565b838111156111b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006111d482611169565b6111de8185611174565b93506111ee818560208601611185565b6111f7816111b8565b840191505092915050565b6000602082019050818103600083015261121c81846111c9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112598261122e565b9050919050565b6112698161124e565b811461127457600080fd5b50565b60008135905061128681611260565b92915050565b6000819050919050565b61129f8161128c565b81146112aa57600080fd5b50565b6000813590506112bc81611296565b92915050565b600080604083850312156112d9576112d8611224565b5b60006112e785828601611277565b92505060206112f8858286016112ad565b9150509250929050565b60008115159050919050565b61131781611302565b82525050565b6000602082019050611332600083018461130e565b92915050565b6113418161128c565b82525050565b600060208201905061135c6000830184611338565b92915050565b60008060006060848603121561137b5761137a611224565b5b600061138986828701611277565b935050602061139a86828701611277565b92505060406113ab868287016112ad565b9150509250925092565b600060ff82169050919050565b6113cb816113b5565b82525050565b60006020820190506113e660008301846113c2565b92915050565b60006113f78261124e565b9050919050565b611407816113ec565b811461141257600080fd5b50565b600081359050611424816113fe565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261144f5761144e61142a565b5b8235905067ffffffffffffffff81111561146c5761146b61142f565b5b60208301915083600182028301111561148857611487611434565b5b9250929050565b6000806000806000608086880312156114ab576114aa611224565b5b60006114b988828901611415565b95505060206114ca88828901611277565b94505060406114db888289016112ad565b935050606086013567ffffffffffffffff8111156114fc576114fb611229565b5b61150888828901611439565b92509250509295509295909350565b60006020828403121561152d5761152c611224565b5b600061153b84828501611277565b91505092915050565b6000806040838503121561155b5761155a611224565b5b600061156985828601611277565b925050602061157a85828601611277565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115cb57607f821691505b602082108114156115df576115de611584565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061161f8261128c565b915061162a8361128c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165f5761165e6115e5565b5b828201905092915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b60006116c6602b83611174565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b6117058161124e565b82525050565b600082825260208201905092915050565b82818337600083830152505050565b6000611737838561170b565b935061174483858461171c565b61174d836111b8565b840190509392505050565b600060a08201905061176d60008301896116fc565b61177a60208301886116fc565b6117876040830187611338565b6117946060830186611338565b81810360808301526117a781848661172b565b9050979650505050505050565b6000819050919050565b6117c7816117b4565b81146117d257600080fd5b50565b6000815190506117e4816117be565b92915050565b600060208284031215611800576117ff611224565b5b600061180e848285016117d5565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b6000611873602483611174565b915061187e82611817565b604082019050919050565b600060208201905081810360008301526118a281611866565b9050919050565b60006118b48261128c565b91506118bf8361128c565b9250828210156118d2576118d16115e5565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611939602583611174565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b60006119a5601b83611174565b91506119b08261196f565b602082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602483611174565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602283611174565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b35601d83611174565b9150611b4082611aff565b602082019050919050565b60006020820190508181036000830152611b6481611b28565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bc7602583611174565b9150611bd282611b6b565b604082019050919050565b60006020820190508181036000830152611bf681611bba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c59602383611174565b9150611c6482611bfd565b604082019050919050565b60006020820190508181036000830152611c8881611c4c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ceb602683611174565b9150611cf682611c8f565b604082019050919050565b60006020820190508181036000830152611d1a81611cde565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d57601f83611174565b9150611d6282611d21565b602082019050919050565b60006020820190508181036000830152611d8681611d4a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611de9602183611174565b9150611df482611d8d565b604082019050919050565b60006020820190508181036000830152611e1881611ddc565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7b602283611174565b9150611e8682611e1f565b604082019050919050565b60006020820190508181036000830152611eaa81611e6e565b905091905056fea264697066735822122067eff8869b8fe90089ac882de0bce41538a462a444d1b81ff44c1dd2fd6ec2fd64736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063613255ab1161008c578063a457c2d711610066578063a457c2d714610287578063a9059cbb146102b7578063d9d98ce4146102e7578063dd62ed3e14610317576100ea565b8063613255ab1461020957806370a082311461023957806395d89b4114610269576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a95780635cffe9de146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610347565b6040516101049190611202565b60405180910390f35b610127600480360381019061012291906112c2565b6103d9565b604051610134919061131d565b60405180910390f35b6101456103fc565b6040516101529190611347565b60405180910390f35b61017560048036038101906101709190611362565b610406565b604051610182919061131d565b60405180910390f35b610193610435565b6040516101a091906113d1565b60405180910390f35b6101c360048036038101906101be91906112c2565b61043e565b6040516101d0919061131d565b60405180910390f35b6101f360048036038101906101ee919061148f565b610475565b604051610200919061131d565b60405180910390f35b610223600480360381019061021e9190611517565b610662565b6040516102309190611347565b60405180910390f35b610253600480360381019061024e9190611517565b6106d9565b6040516102609190611347565b60405180910390f35b610271610721565b60405161027e9190611202565b60405180910390f35b6102a1600480360381019061029c91906112c2565b6107b3565b6040516102ae919061131d565b60405180910390f35b6102d160048036038101906102cc91906112c2565b61082a565b6040516102de919061131d565b60405180910390f35b61030160048036038101906102fc91906112c2565b61084d565b60405161030e9190611347565b60405180910390f35b610331600480360381019061032c9190611544565b6108cf565b60405161033e9190611347565b60405180910390f35b606060038054610356906115b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610382906115b3565b80156103cf5780601f106103a4576101008083540402835291602001916103cf565b820191906000526020600020905b8154815290600101906020018083116103b257829003601f168201915b5050505050905090565b6000806103e4610956565b90506103f181858561095e565b600191505092915050565b6000600254905090565b600080610411610956565b905061041e858285610b29565b610429858585610bb5565b60019150509392505050565b60006012905090565b600080610449610956565b905061046a81858561045b85896108cf565b6104659190611614565b61095e565b600191505092915050565b600061048085610662565b8411156104c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b9906116dc565b60405180910390fd5b60006104ce868661084d565b90506104da8786610e2d565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98773ffffffffffffffffffffffffffffffffffffffff166323e30c8b338989868a8a6040518763ffffffff1660e01b815260040161053e96959493929190611758565b6020604051808303816000875af115801561055d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058191906117ea565b146105c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b890611889565b60405180910390fd5b60006105cb610f84565b90506105e3883084896105de9190611614565b610b29565b600082148061061e5750600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561063d576106388883886106339190611614565b610f89565b610653565b6106478887610f89565b610652888284610bb5565b5b60019250505095945050505050565b60003073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461069e5760006106d2565b6106a66103fc565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6106d191906118a9565b5b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060048054610730906115b3565b80601f016020809104026020016040519081016040528092919081815260200182805461075c906115b3565b80156107a95780601f1061077e576101008083540402835291602001916107a9565b820191906000526020600020905b81548152906001019060200180831161078c57829003601f168201915b5050505050905090565b6000806107be610956565b905060006107cc82866108cf565b905083811015610811576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108089061194f565b60405180910390fd5b61081e828686840361095e565b60019250505092915050565b600080610835610956565b9050610842818585610bb5565b600191505092915050565b60003073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b4906119bb565b60405180910390fd5b6108c78383611157565b905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c590611a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3590611adf565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b1c9190611347565b60405180910390a3505050565b6000610b3584846108cf565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610baf5781811015610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9890611b4b565b60405180910390fd5b610bae848484840361095e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90611bdd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c90611c6f565b60405180910390fd5b610ca083838361115f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90611d01565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e149190611347565b60405180910390a3610e27848484611164565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9490611d6d565b60405180910390fd5b610ea96000838361115f565b8060026000828254610ebb9190611614565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610f6c9190611347565b60405180910390a3610f8060008383611164565b5050565b600090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ff9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff090611dff565b60405180910390fd5b6110058260008361115f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561108b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108290611e91565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161113e9190611347565b60405180910390a361115283600084611164565b505050565b600092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111a3578082015181840152602081019050611188565b838111156111b2576000848401525b50505050565b6000601f19601f8301169050919050565b60006111d482611169565b6111de8185611174565b93506111ee818560208601611185565b6111f7816111b8565b840191505092915050565b6000602082019050818103600083015261121c81846111c9565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112598261122e565b9050919050565b6112698161124e565b811461127457600080fd5b50565b60008135905061128681611260565b92915050565b6000819050919050565b61129f8161128c565b81146112aa57600080fd5b50565b6000813590506112bc81611296565b92915050565b600080604083850312156112d9576112d8611224565b5b60006112e785828601611277565b92505060206112f8858286016112ad565b9150509250929050565b60008115159050919050565b61131781611302565b82525050565b6000602082019050611332600083018461130e565b92915050565b6113418161128c565b82525050565b600060208201905061135c6000830184611338565b92915050565b60008060006060848603121561137b5761137a611224565b5b600061138986828701611277565b935050602061139a86828701611277565b92505060406113ab868287016112ad565b9150509250925092565b600060ff82169050919050565b6113cb816113b5565b82525050565b60006020820190506113e660008301846113c2565b92915050565b60006113f78261124e565b9050919050565b611407816113ec565b811461141257600080fd5b50565b600081359050611424816113fe565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261144f5761144e61142a565b5b8235905067ffffffffffffffff81111561146c5761146b61142f565b5b60208301915083600182028301111561148857611487611434565b5b9250929050565b6000806000806000608086880312156114ab576114aa611224565b5b60006114b988828901611415565b95505060206114ca88828901611277565b94505060406114db888289016112ad565b935050606086013567ffffffffffffffff8111156114fc576114fb611229565b5b61150888828901611439565b92509250509295509295909350565b60006020828403121561152d5761152c611224565b5b600061153b84828501611277565b91505092915050565b6000806040838503121561155b5761155a611224565b5b600061156985828601611277565b925050602061157a85828601611277565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806115cb57607f821691505b602082108114156115df576115de611584565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061161f8261128c565b915061162a8361128c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561165f5761165e6115e5565b5b828201905092915050565b7f4552433230466c6173684d696e743a20616d6f756e742065786365656473206d60008201527f6178466c6173684c6f616e000000000000000000000000000000000000000000602082015250565b60006116c6602b83611174565b91506116d18261166a565b604082019050919050565b600060208201905081810360008301526116f5816116b9565b9050919050565b6117058161124e565b82525050565b600082825260208201905092915050565b82818337600083830152505050565b6000611737838561170b565b935061174483858461171c565b61174d836111b8565b840190509392505050565b600060a08201905061176d60008301896116fc565b61177a60208301886116fc565b6117876040830187611338565b6117946060830186611338565b81810360808301526117a781848661172b565b9050979650505050505050565b6000819050919050565b6117c7816117b4565b81146117d257600080fd5b50565b6000815190506117e4816117be565b92915050565b600060208284031215611800576117ff611224565b5b600061180e848285016117d5565b91505092915050565b7f4552433230466c6173684d696e743a20696e76616c69642072657475726e207660008201527f616c756500000000000000000000000000000000000000000000000000000000602082015250565b6000611873602483611174565b915061187e82611817565b604082019050919050565b600060208201905081810360008301526118a281611866565b9050919050565b60006118b48261128c565b91506118bf8361128c565b9250828210156118d2576118d16115e5565b5b828203905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611939602583611174565b9150611944826118dd565b604082019050919050565b600060208201905081810360008301526119688161192c565b9050919050565b7f4552433230466c6173684d696e743a2077726f6e6720746f6b656e0000000000600082015250565b60006119a5601b83611174565b91506119b08261196f565b602082019050919050565b600060208201905081810360008301526119d481611998565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a37602483611174565b9150611a42826119db565b604082019050919050565b60006020820190508181036000830152611a6681611a2a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ac9602283611174565b9150611ad482611a6d565b604082019050919050565b60006020820190508181036000830152611af881611abc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b35601d83611174565b9150611b4082611aff565b602082019050919050565b60006020820190508181036000830152611b6481611b28565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611bc7602583611174565b9150611bd282611b6b565b604082019050919050565b60006020820190508181036000830152611bf681611bba565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c59602383611174565b9150611c6482611bfd565b604082019050919050565b60006020820190508181036000830152611c8881611c4c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ceb602683611174565b9150611cf682611c8f565b604082019050919050565b60006020820190508181036000830152611d1a81611cde565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d57601f83611174565b9150611d6282611d21565b602082019050919050565b60006020820190508181036000830152611d8681611d4a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611de9602183611174565b9150611df482611d8d565b604082019050919050565b60006020820190508181036000830152611e1881611ddc565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e7b602283611174565b9150611e8682611e1f565b604082019050919050565b60006020820190508181036000830152611eaa81611e6e565b905091905056fea264697066735822122067eff8869b8fe90089ac882de0bce41538a462a444d1b81ff44c1dd2fd6ec2fd64736f6c634300080c0033
Deployed Bytecode Sourcemap
24037:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6126:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8477:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7246:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9258:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7088:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9962:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23069:959;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20155:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7417:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6345:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10703:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7750:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20709:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8006:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6126:100;6180:13;6213:5;6206:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6126:100;:::o;8477:201::-;8560:4;8577:13;8593:12;:10;:12::i;:::-;8577:28;;8616:32;8625:5;8632:7;8641:6;8616:8;:32::i;:::-;8666:4;8659:11;;;8477:201;;;;:::o;7246:108::-;7307:7;7334:12;;7327:19;;7246:108;:::o;9258:295::-;9389:4;9406:15;9424:12;:10;:12::i;:::-;9406:30;;9447:38;9463:4;9469:7;9478:6;9447:15;:38::i;:::-;9496:27;9506:4;9512:2;9516:6;9496:9;:27::i;:::-;9541:4;9534:11;;;9258:295;;;;;:::o;7088:93::-;7146:5;7171:2;7164:9;;7088:93;:::o;9962:238::-;10050:4;10067:13;10083:12;:10;:12::i;:::-;10067:28;;10106:64;10115:5;10122:7;10159:10;10131:25;10141:5;10148:7;10131:9;:25::i;:::-;:38;;;;:::i;:::-;10106:8;:64::i;:::-;10188:4;10181:11;;;9962:238;;;;:::o;23069:959::-;23248:4;23283:19;23296:5;23283:12;:19::i;:::-;23273:6;:29;;23265:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;23361:11;23375:23;23384:5;23391:6;23375:8;:23::i;:::-;23361:37;;23409:32;23423:8;23434:6;23409:5;:32::i;:::-;19892:45;23474:8;:20;;;23495:10;23507:5;23514:6;23522:3;23527:4;;23474:58;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;23452:161;;;;;;;;;;;;:::i;:::-;;;;;;;;;23624:24;23651:19;:17;:19::i;:::-;23624:46;;23681:63;23705:8;23724:4;23740:3;23731:6;:12;;;;:::i;:::-;23681:15;:63::i;:::-;23766:1;23759:3;:8;:42;;;;23799:1;23771:30;;:16;:30;;;23759:42;23755:244;;;23818:38;23832:8;23852:3;23843:6;:12;;;;:::i;:::-;23818:5;:38::i;:::-;23755:244;;;23889:32;23903:8;23914:6;23889:5;:32::i;:::-;23936:51;23954:8;23965:16;23983:3;23936:9;:51::i;:::-;23755:244;24016:4;24009:11;;;;23069:959;;;;;;;:::o;20155:178::-;20230:7;20274:4;20257:22;;:5;:22;;;:68;;20324:1;20257:68;;;20302:19;:17;:19::i;:::-;20282:17;:39;;;;:::i;:::-;20257:68;20250:75;;20155:178;;;:::o;7417:127::-;7491:7;7518:9;:18;7528:7;7518:18;;;;;;;;;;;;;;;;7511:25;;7417:127;;;:::o;6345:104::-;6401:13;6434:7;6427:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6345:104;:::o;10703:436::-;10796:4;10813:13;10829:12;:10;:12::i;:::-;10813:28;;10852:24;10879:25;10889:5;10896:7;10879:9;:25::i;:::-;10852:52;;10943:15;10923:16;:35;;10915:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11036:60;11045:5;11052:7;11080:15;11061:16;:34;11036:8;:60::i;:::-;11127:4;11120:11;;;;10703:436;;;;:::o;7750:193::-;7829:4;7846:13;7862:12;:10;:12::i;:::-;7846:28;;7885;7895:5;7902:2;7906:6;7885:9;:28::i;:::-;7931:4;7924:11;;;7750:193;;;;:::o;20709:219::-;20796:7;20841:4;20824:22;;:5;:22;;;20816:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;20896:24;20906:5;20913:6;20896:9;:24::i;:::-;20889:31;;20709:219;;;;:::o;8006:151::-;8095:7;8122:11;:18;8134:5;8122:18;;;;;;;;;;;;;;;:27;8141:7;8122:27;;;;;;;;;;;;;;;;8115:34;;8006:151;;;;:::o;3936:98::-;3989:7;4016:10;4009:17;;3936:98;:::o;14730:380::-;14883:1;14866:19;;:5;:19;;;;14858:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14964:1;14945:21;;:7;:21;;;;14937:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15048:6;15018:11;:18;15030:5;15018:18;;;;;;;;;;;;;;;:27;15037:7;15018:27;;;;;;;;;;;;;;;:36;;;;15086:7;15070:32;;15079:5;15070:32;;;15095:6;15070:32;;;;;;:::i;:::-;;;;;;;;14730:380;;;:::o;15401:453::-;15536:24;15563:25;15573:5;15580:7;15563:9;:25::i;:::-;15536:52;;15623:17;15603:16;:37;15599:248;;15685:6;15665:16;:26;;15657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15769:51;15778:5;15785:7;15813:6;15794:16;:25;15769:8;:51::i;:::-;15599:248;15525:329;15401:453;;;:::o;11609:840::-;11756:1;11740:18;;:4;:18;;;;11732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11833:1;11819:16;;:2;:16;;;;11811:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11888:38;11909:4;11915:2;11919:6;11888:20;:38::i;:::-;11939:19;11961:9;:15;11971:4;11961:15;;;;;;;;;;;;;;;;11939:37;;12010:6;11995:11;:21;;11987:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12127:6;12113:11;:20;12095:9;:15;12105:4;12095:15;;;;;;;;;;;;;;;:38;;;;12330:6;12313:9;:13;12323:2;12313:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12380:2;12365:26;;12374:4;12365:26;;;12384:6;12365:26;;;;;;:::i;:::-;;;;;;;;12404:37;12424:4;12430:2;12434:6;12404:19;:37::i;:::-;11721:728;11609:840;;;:::o;12736:548::-;12839:1;12820:21;;:7;:21;;;;12812:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12890:49;12919:1;12923:7;12932:6;12890:20;:49::i;:::-;12968:6;12952:12;;:22;;;;;;;:::i;:::-;;;;;;;;13145:6;13123:9;:18;13133:7;13123:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13199:7;13178:37;;13195:1;13178:37;;;13208:6;13178:37;;;;;;:::i;:::-;;;;;;;;13228:48;13256:1;13260:7;13269:6;13228:19;:48::i;:::-;12736:548;;:::o;21888:105::-;21948:7;21888:105;:::o;13617:675::-;13720:1;13701:21;;:7;:21;;;;13693:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13773:49;13794:7;13811:1;13815:6;13773:20;:49::i;:::-;13835:22;13860:9;:18;13870:7;13860:18;;;;;;;;;;;;;;;;13835:43;;13915:6;13897:14;:24;;13889:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14034:6;14017:14;:23;13996:9;:18;14006:7;13996:18;;;;;;;;;;;;;;;:44;;;;14151:6;14135:12;;:22;;;;;;;;;;;14212:1;14186:37;;14195:7;14186:37;;;14216:6;14186:37;;;;;;:::i;:::-;;;;;;;;14236:48;14256:7;14273:1;14277:6;14236:19;:48::i;:::-;13682:610;13617:675;;:::o;21327:234::-;21408:7;21327:234;;;;:::o;16454:125::-;;;;:::o;17183:124::-;;;;:::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;1601:117;1710:1;1707;1700: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:125::-;4967:7;4996:24;5014:5;4996:24;:::i;:::-;4985:35;;4901:125;;;:::o;5032:180::-;5134:53;5181:5;5134:53;:::i;:::-;5127:5;5124:64;5114:92;;5202:1;5199;5192:12;5114:92;5032:180;:::o;5218:197::-;5293:5;5331:6;5318:20;5309:29;;5347:62;5403:5;5347:62;:::i;:::-;5218:197;;;;:::o;5421:117::-;5530:1;5527;5520:12;5544:117;5653:1;5650;5643:12;5667:117;5776:1;5773;5766:12;5803:552;5860:8;5870:6;5920:3;5913:4;5905:6;5901:17;5897:27;5887:122;;5928:79;;:::i;:::-;5887:122;6041:6;6028:20;6018:30;;6071:18;6063:6;6060:30;6057:117;;;6093:79;;:::i;:::-;6057:117;6207:4;6199:6;6195:17;6183:29;;6261:3;6253:4;6245:6;6241:17;6231:8;6227:32;6224:41;6221:128;;;6268:79;;:::i;:::-;6221:128;5803:552;;;;;:::o;6361:1021::-;6487:6;6495;6503;6511;6519;6568:3;6556:9;6547:7;6543:23;6539:33;6536:120;;;6575:79;;:::i;:::-;6536:120;6695:1;6720:82;6794:7;6785:6;6774:9;6770:22;6720:82;:::i;:::-;6710:92;;6666:146;6851:2;6877:53;6922:7;6913:6;6902:9;6898:22;6877:53;:::i;:::-;6867:63;;6822:118;6979:2;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6950:118;7135:2;7124:9;7120:18;7107:32;7166:18;7158:6;7155:30;7152:117;;;7188:79;;:::i;:::-;7152:117;7301:64;7357:7;7348:6;7337:9;7333:22;7301:64;:::i;:::-;7283:82;;;;7078:297;6361:1021;;;;;;;;:::o;7388:329::-;7447:6;7496:2;7484:9;7475:7;7471:23;7467:32;7464:119;;;7502:79;;:::i;:::-;7464:119;7622:1;7647:53;7692:7;7683:6;7672:9;7668:22;7647:53;:::i;:::-;7637:63;;7593:117;7388:329;;;;:::o;7723:474::-;7791:6;7799;7848:2;7836:9;7827:7;7823:23;7819:32;7816:119;;;7854:79;;:::i;:::-;7816:119;7974:1;7999:53;8044:7;8035:6;8024:9;8020:22;7999:53;:::i;:::-;7989:63;;7945:117;8101:2;8127:53;8172:7;8163:6;8152:9;8148:22;8127:53;:::i;:::-;8117:63;;8072:118;7723:474;;;;;:::o;8203:180::-;8251:77;8248:1;8241:88;8348:4;8345:1;8338:15;8372:4;8369:1;8362:15;8389:320;8433:6;8470:1;8464:4;8460:12;8450:22;;8517:1;8511:4;8507:12;8538:18;8528:81;;8594:4;8586:6;8582:17;8572:27;;8528:81;8656:2;8648:6;8645:14;8625:18;8622:38;8619:84;;;8675:18;;:::i;:::-;8619:84;8440:269;8389:320;;;:::o;8715:180::-;8763:77;8760:1;8753:88;8860:4;8857:1;8850:15;8884:4;8881:1;8874:15;8901:305;8941:3;8960:20;8978:1;8960:20;:::i;:::-;8955:25;;8994:20;9012:1;8994:20;:::i;:::-;8989:25;;9148:1;9080:66;9076:74;9073:1;9070:81;9067:107;;;9154:18;;:::i;:::-;9067:107;9198:1;9195;9191:9;9184:16;;8901:305;;;;:::o;9212:230::-;9352:34;9348:1;9340:6;9336:14;9329:58;9421:13;9416:2;9408:6;9404:15;9397:38;9212:230;:::o;9448:366::-;9590:3;9611:67;9675:2;9670:3;9611:67;:::i;:::-;9604:74;;9687:93;9776:3;9687:93;:::i;:::-;9805:2;9800:3;9796:12;9789:19;;9448:366;;;:::o;9820:419::-;9986:4;10024:2;10013:9;10009:18;10001:26;;10073:9;10067:4;10063:20;10059:1;10048:9;10044:17;10037:47;10101:131;10227:4;10101:131;:::i;:::-;10093:139;;9820:419;;;:::o;10245:118::-;10332:24;10350:5;10332:24;:::i;:::-;10327:3;10320:37;10245:118;;:::o;10369:168::-;10452:11;10486:6;10481:3;10474:19;10526:4;10521:3;10517:14;10502:29;;10369:168;;;;:::o;10543:154::-;10627:6;10622:3;10617;10604:30;10689:1;10680:6;10675:3;10671:16;10664:27;10543:154;;;:::o;10725:301::-;10821:3;10842:70;10905:6;10900:3;10842:70;:::i;:::-;10835:77;;10922:43;10958:6;10953:3;10946:5;10922:43;:::i;:::-;10990:29;11012:6;10990:29;:::i;:::-;10985:3;10981:39;10974:46;;10725:301;;;;;:::o;11032:771::-;11265:4;11303:3;11292:9;11288:19;11280:27;;11317:71;11385:1;11374:9;11370:17;11361:6;11317:71;:::i;:::-;11398:72;11466:2;11455:9;11451:18;11442:6;11398:72;:::i;:::-;11480;11548:2;11537:9;11533:18;11524:6;11480:72;:::i;:::-;11562;11630:2;11619:9;11615:18;11606:6;11562:72;:::i;:::-;11682:9;11676:4;11672:20;11666:3;11655:9;11651:19;11644:49;11710:86;11791:4;11782:6;11774;11710:86;:::i;:::-;11702:94;;11032:771;;;;;;;;;:::o;11809:77::-;11846:7;11875:5;11864:16;;11809:77;;;:::o;11892:122::-;11965:24;11983:5;11965:24;:::i;:::-;11958:5;11955:35;11945:63;;12004:1;12001;11994:12;11945:63;11892:122;:::o;12020:143::-;12077:5;12108:6;12102:13;12093:22;;12124:33;12151:5;12124:33;:::i;:::-;12020:143;;;;:::o;12169:351::-;12239:6;12288:2;12276:9;12267:7;12263:23;12259:32;12256:119;;;12294:79;;:::i;:::-;12256:119;12414:1;12439:64;12495:7;12486:6;12475:9;12471:22;12439:64;:::i;:::-;12429:74;;12385:128;12169:351;;;;:::o;12526:223::-;12666:34;12662:1;12654:6;12650:14;12643:58;12735:6;12730:2;12722:6;12718:15;12711:31;12526:223;:::o;12755:366::-;12897:3;12918:67;12982:2;12977:3;12918:67;:::i;:::-;12911:74;;12994:93;13083:3;12994:93;:::i;:::-;13112:2;13107:3;13103:12;13096:19;;12755:366;;;:::o;13127:419::-;13293:4;13331:2;13320:9;13316:18;13308:26;;13380:9;13374:4;13370:20;13366:1;13355:9;13351:17;13344:47;13408:131;13534:4;13408:131;:::i;:::-;13400:139;;13127:419;;;:::o;13552:191::-;13592:4;13612:20;13630:1;13612:20;:::i;:::-;13607:25;;13646:20;13664:1;13646:20;:::i;:::-;13641:25;;13685:1;13682;13679:8;13676:34;;;13690:18;;:::i;:::-;13676:34;13735:1;13732;13728:9;13720:17;;13552:191;;;;:::o;13749:224::-;13889:34;13885:1;13877:6;13873:14;13866:58;13958:7;13953:2;13945:6;13941:15;13934:32;13749:224;:::o;13979:366::-;14121:3;14142:67;14206:2;14201:3;14142:67;:::i;:::-;14135:74;;14218:93;14307:3;14218:93;:::i;:::-;14336:2;14331:3;14327:12;14320:19;;13979:366;;;:::o;14351:419::-;14517:4;14555:2;14544:9;14540:18;14532:26;;14604:9;14598:4;14594:20;14590:1;14579:9;14575:17;14568:47;14632:131;14758:4;14632:131;:::i;:::-;14624:139;;14351:419;;;:::o;14776:177::-;14916:29;14912:1;14904:6;14900:14;14893:53;14776:177;:::o;14959:366::-;15101:3;15122:67;15186:2;15181:3;15122:67;:::i;:::-;15115:74;;15198:93;15287:3;15198:93;:::i;:::-;15316:2;15311:3;15307:12;15300:19;;14959:366;;;:::o;15331:419::-;15497:4;15535:2;15524:9;15520:18;15512:26;;15584:9;15578:4;15574:20;15570:1;15559:9;15555:17;15548:47;15612:131;15738:4;15612:131;:::i;:::-;15604:139;;15331:419;;;:::o;15756:223::-;15896:34;15892:1;15884:6;15880:14;15873:58;15965:6;15960:2;15952:6;15948:15;15941:31;15756:223;:::o;15985:366::-;16127:3;16148:67;16212:2;16207:3;16148:67;:::i;:::-;16141:74;;16224:93;16313:3;16224:93;:::i;:::-;16342:2;16337:3;16333:12;16326:19;;15985:366;;;:::o;16357:419::-;16523:4;16561:2;16550:9;16546:18;16538:26;;16610:9;16604:4;16600:20;16596:1;16585:9;16581:17;16574:47;16638:131;16764:4;16638:131;:::i;:::-;16630:139;;16357:419;;;:::o;16782:221::-;16922:34;16918:1;16910:6;16906:14;16899:58;16991:4;16986:2;16978:6;16974:15;16967:29;16782:221;:::o;17009:366::-;17151:3;17172:67;17236:2;17231:3;17172:67;:::i;:::-;17165:74;;17248:93;17337:3;17248:93;:::i;:::-;17366:2;17361:3;17357:12;17350:19;;17009:366;;;:::o;17381:419::-;17547:4;17585:2;17574:9;17570:18;17562:26;;17634:9;17628:4;17624:20;17620:1;17609:9;17605:17;17598:47;17662:131;17788:4;17662:131;:::i;:::-;17654:139;;17381:419;;;:::o;17806:179::-;17946:31;17942:1;17934:6;17930:14;17923:55;17806:179;:::o;17991:366::-;18133:3;18154:67;18218:2;18213:3;18154:67;:::i;:::-;18147:74;;18230:93;18319:3;18230:93;:::i;:::-;18348:2;18343:3;18339:12;18332:19;;17991:366;;;:::o;18363:419::-;18529:4;18567:2;18556:9;18552:18;18544:26;;18616:9;18610:4;18606:20;18602:1;18591:9;18587:17;18580:47;18644:131;18770:4;18644:131;:::i;:::-;18636:139;;18363:419;;;:::o;18788:224::-;18928:34;18924:1;18916:6;18912:14;18905:58;18997:7;18992:2;18984:6;18980:15;18973:32;18788:224;:::o;19018:366::-;19160:3;19181:67;19245:2;19240:3;19181:67;:::i;:::-;19174:74;;19257:93;19346:3;19257:93;:::i;:::-;19375:2;19370:3;19366:12;19359:19;;19018:366;;;:::o;19390:419::-;19556:4;19594:2;19583:9;19579:18;19571:26;;19643:9;19637:4;19633:20;19629:1;19618:9;19614:17;19607:47;19671:131;19797:4;19671:131;:::i;:::-;19663:139;;19390:419;;;:::o;19815:222::-;19955:34;19951:1;19943:6;19939:14;19932:58;20024:5;20019:2;20011:6;20007:15;20000:30;19815:222;:::o;20043:366::-;20185:3;20206:67;20270:2;20265:3;20206:67;:::i;:::-;20199:74;;20282:93;20371:3;20282:93;:::i;:::-;20400:2;20395:3;20391:12;20384:19;;20043:366;;;:::o;20415:419::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20668:9;20662:4;20658:20;20654:1;20643:9;20639:17;20632:47;20696:131;20822:4;20696:131;:::i;:::-;20688:139;;20415:419;;;:::o;20840:225::-;20980:34;20976:1;20968:6;20964:14;20957:58;21049:8;21044:2;21036:6;21032:15;21025:33;20840:225;:::o;21071:366::-;21213:3;21234:67;21298:2;21293:3;21234:67;:::i;:::-;21227:74;;21310:93;21399:3;21310:93;:::i;:::-;21428:2;21423:3;21419:12;21412:19;;21071:366;;;:::o;21443:419::-;21609:4;21647:2;21636:9;21632:18;21624:26;;21696:9;21690:4;21686:20;21682:1;21671:9;21667:17;21660:47;21724:131;21850:4;21724:131;:::i;:::-;21716:139;;21443:419;;;:::o;21868:181::-;22008:33;22004:1;21996:6;21992:14;21985:57;21868:181;:::o;22055:366::-;22197:3;22218:67;22282:2;22277:3;22218:67;:::i;:::-;22211:74;;22294:93;22383:3;22294:93;:::i;:::-;22412:2;22407:3;22403:12;22396:19;;22055:366;;;:::o;22427:419::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o;22852:220::-;22992:34;22988:1;22980:6;22976:14;22969:58;23061:3;23056:2;23048:6;23044:15;23037:28;22852:220;:::o;23078:366::-;23220:3;23241:67;23305:2;23300:3;23241:67;:::i;:::-;23234:74;;23317:93;23406:3;23317:93;:::i;:::-;23435:2;23430:3;23426:12;23419:19;;23078:366;;;:::o;23450:419::-;23616:4;23654:2;23643:9;23639:18;23631:26;;23703:9;23697:4;23693:20;23689:1;23678:9;23674:17;23667:47;23731:131;23857:4;23731:131;:::i;:::-;23723:139;;23450:419;;;:::o;23875:221::-;24015:34;24011:1;24003:6;23999:14;23992:58;24084:4;24079:2;24071:6;24067:15;24060:29;23875:221;:::o;24102:366::-;24244:3;24265:67;24329:2;24324:3;24265:67;:::i;:::-;24258:74;;24341:93;24430:3;24341:93;:::i;:::-;24459:2;24454:3;24450:12;24443:19;;24102:366;;;:::o;24474:419::-;24640:4;24678:2;24667:9;24663:18;24655:26;;24727:9;24721:4;24717:20;24713:1;24702:9;24698:17;24691:47;24755:131;24881:4;24755:131;:::i;:::-;24747:139;;24474:419;;;:::o
Swarm Source
ipfs://67eff8869b8fe90089ac882de0bce41538a462a444d1b81ff44c1dd2fd6ec2fd
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.