Token uaht.io
Polygon Sponsored slots available. Book your slot here!
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
79,204.92 UAHT
Holders:
22 addresses
Transfers:
-
Contract:
Decimals:
2
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UAHT
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-24 */ // SPDX-License-Identifier: MIT /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 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 `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"); _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); _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 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 {} } contract UAHT is ERC20 { address operator; event Input(address to, uint256 value); event Output(address from, uint256 value); constructor() ERC20("uaht.io", "UAHT") { operator = msg.sender; } modifier operable { require(msg.sender == operator); _; } function decimals() public view virtual override returns (uint8) { return 2; // kopiyka } function input(address to, uint256 uah) public operable { _mint(to, uah); emit Input(to, uah); } function output(address from, uint256 uah) public operable { _burn(from, uah); emit Output(from, uah); } function delegate(address to, bool confirm) public operable { require(confirm); operator = to; } }
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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Input","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Output","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":"to","type":"address"},{"internalType":"bool","name":"confirm","type":"bool"}],"name":"delegate","outputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"uah","type":"uint256"}],"name":"input","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"uah","type":"uint256"}],"name":"output","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
60806040523480156200001157600080fd5b506040805180820182526007815266756168742e696f60c81b6020808301918252835180850190945260048452631550521560e21b9084015281519192916200005d916003916200008e565b508051620000739060049060208401906200008e565b5050600580546001600160a01b031916331790555062000170565b8280546200009c9062000134565b90600052602060002090601f016020900481019282620000c057600085556200010b565b82601f10620000db57805160ff19168380011785556200010b565b828001600101855582156200010b579182015b828111156200010b578251825591602001919060010190620000ee565b50620001199291506200011d565b5090565b5b808211156200011957600081556001016200011e565b600181811c908216806200014957607f821691505b6020821081036200016a57634e487b7160e01b600052602260045260246000fd5b50919050565b610c8f80620001806000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063982ef0a711610066578063982ef0a7146101d0578063a457c2d7146101e3578063a9059cbb146101f6578063dd62ed3e1461020957600080fd5b806370a082311461018c578063767071b3146101b557806395d89b41146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce567146101555780633950935114610164578063702d67941461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761021c565b6040516101049190610a72565b60405180910390f35b61012061011b366004610ae3565b6102ae565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610b0d565b6102c6565b60405160028152602001610104565b610120610172366004610ae3565b6102ea565b61018a610185366004610ae3565b61030c565b005b61013461019a366004610b49565b6001600160a01b031660009081526020819052604090205490565b61018a6101c3366004610ae3565b610374565b6100f76103d4565b61018a6101de366004610b6b565b6103e3565b6101206101f1366004610ae3565b610427565b610120610204366004610ae3565b6104a7565b610134610217366004610ba7565b6104b5565b60606003805461022b90610bda565b80601f016020809104026020016040519081016040528092919081815260200182805461025790610bda565b80156102a45780601f10610279576101008083540402835291602001916102a4565b820191906000526020600020905b81548152906001019060200180831161028757829003601f168201915b5050505050905090565b6000336102bc8185856104e0565b5060019392505050565b6000336102d4858285610605565b6102df85858561067f565b506001949350505050565b6000336102bc8185856102fd83836104b5565b6103079190610c2a565b6104e0565b6005546001600160a01b0316331461032357600080fd5b61032d828261084d565b604080516001600160a01b0384168152602081018390527f212d7263066aaf725f5eaacab4697d8a021b27a2d68091298f8d4dbf54e5eb6c91015b60405180910390a15050565b6005546001600160a01b0316331461038b57600080fd5b610395828261092c565b604080516001600160a01b0384168152602081018390527f2452897472f9b2c7b4dbb0eeba542857714d702f61bbb66237c4d6115df98f509101610368565b60606004805461022b90610bda565b6005546001600160a01b031633146103fa57600080fd5b8061040457600080fd5b50600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000338161043582866104b5565b90508381101561049a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102df82868684036104e0565b6000336102bc81858561067f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166105425760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610491565b6001600160a01b0382166105a35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610491565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061061184846104b5565b90506000198114610679578181101561066c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610491565b61067984848484036104e0565b50505050565b6001600160a01b0383166106e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610491565b6001600160a01b0382166107455760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610491565b6001600160a01b038316600090815260208190526040902054818110156107bd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610491565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107f4908490610c2a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161084091815260200190565b60405180910390a3610679565b6001600160a01b0382166108a35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610491565b80600260008282546108b59190610c2a565b90915550506001600160a01b038216600090815260208190526040812080548392906108e2908490610c2a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821661098c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610491565b6001600160a01b03821660009081526020819052604090205481811015610a005760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610491565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610a2f908490610c42565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016105f8565b600060208083528351808285015260005b81811015610a9f57858101830151858201604001528201610a83565b81811115610ab1576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ade57600080fd5b919050565b60008060408385031215610af657600080fd5b610aff83610ac7565b946020939093013593505050565b600080600060608486031215610b2257600080fd5b610b2b84610ac7565b9250610b3960208501610ac7565b9150604084013590509250925092565b600060208284031215610b5b57600080fd5b610b6482610ac7565b9392505050565b60008060408385031215610b7e57600080fd5b610b8783610ac7565b915060208301358015158114610b9c57600080fd5b809150509250929050565b60008060408385031215610bba57600080fd5b610bc383610ac7565b9150610bd160208401610ac7565b90509250929050565b600181811c90821680610bee57607f821691505b602082108103610c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c3d57610c3d610c14565b500190565b600082821015610c5457610c54610c14565b50039056fea26469706673582212204947d69aab3b40feb615135b8366cbfd92c666d109d10af42b042ab853dd63cb64736f6c634300080d0033
Deployed ByteCode Sourcemap
16823:824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6028:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8379:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8379:201:0;1053:187:1;7148:108:0;7236:12;;7148:108;;;1391:25:1;;;1379:2;1364:18;7148:108:0;1245:177:1;9160:295:0;;;;;;:::i;:::-;;:::i;17150:104::-;;;17233:1;1902:36:1;;1890:2;1875:18;17150:104:0;1760:184:1;9864:238:0;;;;;;:::i;:::-;;:::i;17262:120::-;;;;;;:::i;:::-;;:::i;:::-;;7319:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7420:18:0;7393:7;7420:18;;;;;;;;;;;;7319:127;17390;;;;;;:::i;:::-;;:::i;6247:104::-;;;:::i;17525:119::-;;;;;;:::i;:::-;;:::i;10605:436::-;;;;;;:::i;:::-;;:::i;7652:193::-;;;;;;:::i;:::-;;:::i;7908:151::-;;;;;;:::i;:::-;;:::i;6028:100::-;6082:13;6115:5;6108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6028:100;:::o;8379:201::-;8462:4;3916:10;8518:32;3916:10;8534:7;8543:6;8518:8;:32::i;:::-;-1:-1:-1;8568:4:0;;8379:201;-1:-1:-1;;;8379:201:0:o;9160:295::-;9291:4;3916:10;9349:38;9365:4;3916:10;9380:6;9349:15;:38::i;:::-;9398:27;9408:4;9414:2;9418:6;9398:9;:27::i;:::-;-1:-1:-1;9443:4:0;;9160:295;-1:-1:-1;;;;9160:295:0:o;9864:238::-;9952:4;3916:10;10008:64;3916:10;10024:7;10061:10;10033:25;3916:10;10024:7;10033:9;:25::i;:::-;:38;;;;:::i;:::-;10008:8;:64::i;17262:120::-;17113:8;;-1:-1:-1;;;;;17113:8:0;17099:10;:22;17091:31;;;;;;17329:14:::1;17335:2;17339:3;17329:5;:14::i;:::-;17360;::::0;;-1:-1:-1;;;;;3599:32:1;;3581:51;;3663:2;3648:18;;3641:34;;;17360:14:0::1;::::0;3554:18:1;17360:14:0::1;;;;;;;;17262:120:::0;;:::o;17390:127::-;17113:8;;-1:-1:-1;;;;;17113:8:0;17099:10;:22;17091:31;;;;;;17460:16:::1;17466:4;17472:3;17460:5;:16::i;:::-;17492:17;::::0;;-1:-1:-1;;;;;3599:32:1;;3581:51;;3663:2;3648:18;;3641:34;;;17492:17:0::1;::::0;3554:18:1;17492:17:0::1;3407:274:1::0;6247:104:0;6303:13;6336:7;6329:14;;;;;:::i;17525:119::-;17113:8;;-1:-1:-1;;;;;17113:8:0;17099:10;:22;17091:31;;;;;;17604:7:::1;17596:16;;;::::0;::::1;;-1:-1:-1::0;17623:8:0::1;:13:::0;;-1:-1:-1;;;;;;17623:13:0::1;-1:-1:-1::0;;;;;17623:13:0;;;::::1;::::0;;;::::1;::::0;;17525:119::o;10605:436::-;10698:4;3916:10;10698:4;10781:25;3916:10;10798:7;10781:9;:25::i;:::-;10754:52;;10845:15;10825:16;:35;;10817:85;;;;-1:-1:-1;;;10817:85:0;;3888:2:1;10817:85:0;;;3870:21:1;3927:2;3907:18;;;3900:30;3966:34;3946:18;;;3939:62;-1:-1:-1;;;4017:18:1;;;4010:35;4062:19;;10817:85:0;;;;;;;;;10938:60;10947:5;10954:7;10982:15;10963:16;:34;10938:8;:60::i;7652:193::-;7731:4;3916:10;7787:28;3916:10;7804:2;7808:6;7787:9;:28::i;7908:151::-;-1:-1:-1;;;;;8024:18:0;;;7997:7;8024:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7908:151::o;14239:380::-;-1:-1:-1;;;;;14375:19:0;;14367:68;;;;-1:-1:-1;;;14367:68:0;;4294:2:1;14367:68:0;;;4276:21:1;4333:2;4313:18;;;4306:30;4372:34;4352:18;;;4345:62;-1:-1:-1;;;4423:18:1;;;4416:34;4467:19;;14367:68:0;4092:400:1;14367:68:0;-1:-1:-1;;;;;14454:21:0;;14446:68;;;;-1:-1:-1;;;14446:68:0;;4699:2:1;14446:68:0;;;4681:21:1;4738:2;4718:18;;;4711:30;4777:34;4757:18;;;4750:62;-1:-1:-1;;;4828:18:1;;;4821:32;4870:19;;14446:68:0;4497:398:1;14446:68:0;-1:-1:-1;;;;;14527:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14579:32;;1391:25:1;;;14579:32:0;;1364:18:1;14579:32:0;;;;;;;;14239:380;;;:::o;14910:453::-;15045:24;15072:25;15082:5;15089:7;15072:9;:25::i;:::-;15045:52;;-1:-1:-1;;15112:16:0;:37;15108:248;;15194:6;15174:16;:26;;15166:68;;;;-1:-1:-1;;;15166:68:0;;5102:2:1;15166:68:0;;;5084:21:1;5141:2;5121:18;;;5114:30;5180:31;5160:18;;;5153:59;5229:18;;15166:68:0;4900:353:1;15166:68:0;15278:51;15287:5;15294:7;15322:6;15303:16;:25;15278:8;:51::i;:::-;15034:329;14910:453;;;:::o;11520:671::-;-1:-1:-1;;;;;11651:18:0;;11643:68;;;;-1:-1:-1;;;11643:68:0;;5460:2:1;11643:68:0;;;5442:21:1;5499:2;5479:18;;;5472:30;5538:34;5518:18;;;5511:62;-1:-1:-1;;;5589:18:1;;;5582:35;5634:19;;11643:68:0;5258:401:1;11643:68:0;-1:-1:-1;;;;;11730:16:0;;11722:64;;;;-1:-1:-1;;;11722:64:0;;5866:2:1;11722:64:0;;;5848:21:1;5905:2;5885:18;;;5878:30;5944:34;5924:18;;;5917:62;-1:-1:-1;;;5995:18:1;;;5988:33;6038:19;;11722:64:0;5664:399:1;11722:64:0;-1:-1:-1;;;;;11872:15:0;;11850:19;11872:15;;;;;;;;;;;11906:21;;;;11898:72;;;;-1:-1:-1;;;11898:72:0;;6270:2:1;11898:72:0;;;6252:21:1;6309:2;6289:18;;;6282:30;6348:34;6328:18;;;6321:62;-1:-1:-1;;;6399:18:1;;;6392:36;6445:19;;11898:72:0;6068:402:1;11898:72:0;-1:-1:-1;;;;;12006:15:0;;;:9;:15;;;;;;;;;;;12024:20;;;12006:38;;12066:13;;;;;;;;:23;;12038:6;;12006:9;12066:23;;12038:6;;12066:23;:::i;:::-;;;;;;;;12122:2;-1:-1:-1;;;;;12107:26:0;12116:4;-1:-1:-1;;;;;12107:26:0;;12126:6;12107:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;12107:26:0;;;;;;;;12146:37;13210:591;12478:399;-1:-1:-1;;;;;12562:21:0;;12554:65;;;;-1:-1:-1;;;12554:65:0;;6677:2:1;12554:65:0;;;6659:21:1;6716:2;6696:18;;;6689:30;6755:33;6735:18;;;6728:61;6806:18;;12554:65:0;6475:355:1;12554:65:0;12710:6;12694:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12727:18:0;;:9;:18;;;;;;;;;;:28;;12749:6;;12727:9;:28;;12749:6;;12727:28;:::i;:::-;;;;-1:-1:-1;;12771:37:0;;1391:25:1;;;-1:-1:-1;;;;;12771:37:0;;;12788:1;;12771:37;;1379:2:1;1364:18;12771:37:0;;;;;;;12478:399;;:::o;13210:591::-;-1:-1:-1;;;;;13294:21:0;;13286:67;;;;-1:-1:-1;;;13286:67:0;;7037:2:1;13286:67:0;;;7019:21:1;7076:2;7056:18;;;7049:30;7115:34;7095:18;;;7088:62;-1:-1:-1;;;7166:18:1;;;7159:31;7207:19;;13286:67:0;6835:397:1;13286:67:0;-1:-1:-1;;;;;13453:18:0;;13428:22;13453:18;;;;;;;;;;;13490:24;;;;13482:71;;;;-1:-1:-1;;;13482:71:0;;7439:2:1;13482:71:0;;;7421:21:1;7478:2;7458:18;;;7451:30;7517:34;7497:18;;;7490:62;-1:-1:-1;;;7568:18:1;;;7561:32;7610:19;;13482:71:0;7237:398:1;13482:71:0;-1:-1:-1;;;;;13589:18:0;;:9;:18;;;;;;;;;;13610:23;;;13589:44;;13655:12;:22;;13627:6;;13589:9;13655:22;;13627:6;;13655:22;:::i;:::-;;;;-1:-1:-1;;13695:37:0;;1391:25:1;;;13721:1:0;;-1:-1:-1;;;;;13695:37:0;;;;;1379:2:1;1364:18;13695:37:0;1245:177:1;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2140:347::-;2205:6;2213;2266:2;2254:9;2245:7;2241:23;2237:32;2234:52;;;2282:1;2279;2272:12;2234:52;2305:29;2324:9;2305:29;:::i;:::-;2295:39;;2384:2;2373:9;2369:18;2356:32;2431:5;2424:13;2417:21;2410:5;2407:32;2397:60;;2453:1;2450;2443:12;2397:60;2476:5;2466:15;;;2140:347;;;;;:::o;2492:260::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;3142:127::-;3203:10;3198:3;3194:20;3191:1;3184:31;3234:4;3231:1;3224:15;3258:4;3255:1;3248:15;3274:128;3314:3;3345:1;3341:6;3338:1;3335:13;3332:39;;;3351:18;;:::i;:::-;-1:-1:-1;3387:9:1;;3274:128::o;7640:125::-;7680:4;7708:1;7705;7702:8;7699:34;;;7713:18;;:::i;:::-;-1:-1:-1;7750:9:1;;7640:125::o
Swarm Source
ipfs://4947d69aab3b40feb615135b8366cbfd92c666d109d10af42b042ab853dd63cb