Token cryptobasics.in
Overview ERC-20
Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
1,000,000 COBS
Holders:
2 addresses
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ByteCode
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-26 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /** * @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); } /** * @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, _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"); _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 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 {} } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /// @custom:security-contact [email protected] contract ByteCode is ERC20, ERC20Burnable, Pausable, Ownable { constructor() ERC20("cryptobasics.in", "COBS") { _mint(msg.sender, 1000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600f81526020017f63727970746f6261736963732e696e00000000000000000000000000000000008152506040518060400160405280600481526020017f434f42530000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000413565b508060049080519060200190620000af92919062000413565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200013260201b60201c565b6200013a60201b60201c565b6200012c33620001026200020060201b60201c565b600a6200011091906200064c565b620f424062000120919062000789565b6200020960201b60201c565b620008f4565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000544565b60405180910390fd5b62000290600083836200038260201b60201c565b8060026000828254620002a4919062000594565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002fb919062000594565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000362919062000566565b60405180910390a36200037e60008383620003f260201b60201c565b5050565b62000392620003f760201b60201c565b15620003d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cc9062000522565b60405180910390fd5b620003ed8383836200040e60201b62000b5d1760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620004219062000801565b90600052602060002090601f01602090048101928262000445576000855562000491565b82601f106200046057805160ff191683800117855562000491565b8280016001018555821562000491579182015b828111156200049057825182559160200191906001019062000473565b5b509050620004a09190620004a4565b5090565b5b80821115620004bf576000816000905550600101620004a5565b5090565b6000620004d260108362000583565b9150620004df82620008a2565b602082019050919050565b6000620004f9601f8362000583565b91506200050682620008cb565b602082019050919050565b6200051c81620007ea565b82525050565b600060208201905081810360008301526200053d81620004c3565b9050919050565b600060208201905081810360008301526200055f81620004ea565b9050919050565b60006020820190506200057d600083018462000511565b92915050565b600082825260208201905092915050565b6000620005a182620007ea565b9150620005ae83620007ea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005e657620005e562000837565b5b828201905092915050565b6000808291508390505b600185111562000643578086048111156200061b576200061a62000837565b5b60018516156200062b5780820291505b80810290506200063b8562000895565b9450620005fb565b94509492505050565b60006200065982620007ea565b91506200066683620007f4565b9250620006957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200069d565b905092915050565b600082620006af576001905062000782565b81620006bf576000905062000782565b8160018114620006d85760028114620006e35762000719565b600191505062000782565b60ff841115620006f857620006f762000837565b5b8360020a91508482111562000712576200071162000837565b5b5062000782565b5060208310610133831016604e8410600b8410161715620007535782820a9050838111156200074d576200074c62000837565b5b62000782565b620007628484846001620005f1565b925090508184048111156200077c576200077b62000837565b5b81810290505b9392505050565b60006200079682620007ea565b9150620007a383620007ea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620007df57620007de62000837565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200081a57607f821691505b6020821081141562000831576200083062000866565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61219880620009046000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad57806395d89b411161007157806395d89b41146102f9578063a457c2d714610317578063a9059cbb14610347578063dd62ed3e14610377578063f2fde38b146103a75761012c565b806370a082311461027b578063715018a6146102ab57806379cc6790146102b55780638456cb59146102d15780638da5cb5b146102db5761012c565b806339509351116100f457806339509351146101eb5780633f4ba83a1461021b57806340c10f191461022557806342966c68146102415780635c975abb1461025d5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103c3565b60405161014691906119b9565b60405180910390f35b610169600480360381019061016491906116bf565b610455565b604051610176919061199e565b60405180910390f35b610187610478565b6040516101949190611b9b565b60405180910390f35b6101b760048036038101906101b29190611670565b610482565b6040516101c4919061199e565b60405180910390f35b6101d56104b1565b6040516101e29190611bb6565b60405180910390f35b610205600480360381019061020091906116bf565b6104ba565b604051610212919061199e565b60405180910390f35b610223610564565b005b61023f600480360381019061023a91906116bf565b6105ea565b005b61025b600480360381019061025691906116fb565b610674565b005b610265610688565b604051610272919061199e565b60405180910390f35b6102956004803603810190610290919061160b565b61069f565b6040516102a29190611b9b565b60405180910390f35b6102b36106e7565b005b6102cf60048036038101906102ca91906116bf565b61076f565b005b6102d961078f565b005b6102e3610815565b6040516102f09190611983565b60405180910390f35b61030161083f565b60405161030e91906119b9565b60405180910390f35b610331600480360381019061032c91906116bf565b6108d1565b60405161033e919061199e565b60405180910390f35b610361600480360381019061035c91906116bf565b6109bb565b60405161036e919061199e565b60405180910390f35b610391600480360381019061038c9190611634565b6109de565b60405161039e9190611b9b565b60405180910390f35b6103c160048036038101906103bc919061160b565b610a65565b005b6060600380546103d290611cff565b80601f01602080910402602001604051908101604052809291908181526020018280546103fe90611cff565b801561044b5780601f106104205761010080835404028352916020019161044b565b820191906000526020600020905b81548152906001019060200180831161042e57829003601f168201915b5050505050905090565b600080610460610b62565b905061046d818585610b6a565b600191505092915050565b6000600254905090565b60008061048d610b62565b905061049a858285610d35565b6104a5858585610dc1565b60019150509392505050565b60006012905090565b6000806104c5610b62565b9050610559818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105549190611bed565b610b6a565b600191505092915050565b61056c610b62565b73ffffffffffffffffffffffffffffffffffffffff1661058a610815565b73ffffffffffffffffffffffffffffffffffffffff16146105e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d790611adb565b60405180910390fd5b6105e8611042565b565b6105f2610b62565b73ffffffffffffffffffffffffffffffffffffffff16610610610815565b73ffffffffffffffffffffffffffffffffffffffff1614610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90611adb565b60405180910390fd5b61067082826110e4565b5050565b61068561067f610b62565b82611244565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106ef610b62565b73ffffffffffffffffffffffffffffffffffffffff1661070d610815565b73ffffffffffffffffffffffffffffffffffffffff1614610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a90611adb565b60405180910390fd5b61076d600061141b565b565b6107818261077b610b62565b83610d35565b61078b8282611244565b5050565b610797610b62565b73ffffffffffffffffffffffffffffffffffffffff166107b5610815565b73ffffffffffffffffffffffffffffffffffffffff161461080b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080290611adb565b60405180910390fd5b6108136114e1565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461084e90611cff565b80601f016020809104026020016040519081016040528092919081815260200182805461087a90611cff565b80156108c75780601f1061089c576101008083540402835291602001916108c7565b820191906000526020600020905b8154815290600101906020018083116108aa57829003601f168201915b5050505050905090565b6000806108dc610b62565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611b5b565b60405180910390fd5b6109af8286868403610b6a565b60019250505092915050565b6000806109c6610b62565b90506109d3818585610dc1565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a6d610b62565b73ffffffffffffffffffffffffffffffffffffffff16610a8b610815565b73ffffffffffffffffffffffffffffffffffffffff1614610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890611adb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4890611a3b565b60405180910390fd5b610b5a8161141b565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190611b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4190611a5b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d289190611b9b565b60405180910390a3505050565b6000610d4184846109de565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610dbb5781811015610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490611a7b565b60405180910390fd5b610dba8484848403610b6a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890611b1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e98906119db565b60405180910390fd5b610eac838383611584565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2990611a9b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fc59190611bed565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110299190611b9b565b60405180910390a361103c8484846115dc565b50505050565b61104a610688565b611089576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611080906119fb565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110cd610b62565b6040516110da9190611983565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b90611b7b565b60405180910390fd5b61116060008383611584565b80600260008282546111729190611bed565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111c79190611bed565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161122c9190611b9b565b60405180910390a3611240600083836115dc565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90611afb565b60405180910390fd5b6112c082600083611584565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d90611a1b565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600082825461139d9190611c43565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114029190611b9b565b60405180910390a3611416836000846115dc565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114e9610688565b15611529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152090611abb565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861156d610b62565b60405161157a9190611983565b60405180910390a1565b61158c610688565b156115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390611abb565b60405180910390fd5b6115d7838383610b5d565b505050565b505050565b6000813590506115f081612134565b92915050565b6000813590506116058161214b565b92915050565b60006020828403121561161d57600080fd5b600061162b848285016115e1565b91505092915050565b6000806040838503121561164757600080fd5b6000611655858286016115e1565b9250506020611666858286016115e1565b9150509250929050565b60008060006060848603121561168557600080fd5b6000611693868287016115e1565b93505060206116a4868287016115e1565b92505060406116b5868287016115f6565b9150509250925092565b600080604083850312156116d257600080fd5b60006116e0858286016115e1565b92505060206116f1858286016115f6565b9150509250929050565b60006020828403121561170d57600080fd5b600061171b848285016115f6565b91505092915050565b61172d81611c77565b82525050565b61173c81611c89565b82525050565b600061174d82611bd1565b6117578185611bdc565b9350611767818560208601611ccc565b61177081611d8f565b840191505092915050565b6000611788602383611bdc565b915061179382611da0565b604082019050919050565b60006117ab601483611bdc565b91506117b682611def565b602082019050919050565b60006117ce602283611bdc565b91506117d982611e18565b604082019050919050565b60006117f1602683611bdc565b91506117fc82611e67565b604082019050919050565b6000611814602283611bdc565b915061181f82611eb6565b604082019050919050565b6000611837601d83611bdc565b915061184282611f05565b602082019050919050565b600061185a602683611bdc565b915061186582611f2e565b604082019050919050565b600061187d601083611bdc565b915061188882611f7d565b602082019050919050565b60006118a0602083611bdc565b91506118ab82611fa6565b602082019050919050565b60006118c3602183611bdc565b91506118ce82611fcf565b604082019050919050565b60006118e6602583611bdc565b91506118f18261201e565b604082019050919050565b6000611909602483611bdc565b91506119148261206d565b604082019050919050565b600061192c602583611bdc565b9150611937826120bc565b604082019050919050565b600061194f601f83611bdc565b915061195a8261210b565b602082019050919050565b61196e81611cb5565b82525050565b61197d81611cbf565b82525050565b60006020820190506119986000830184611724565b92915050565b60006020820190506119b36000830184611733565b92915050565b600060208201905081810360008301526119d38184611742565b905092915050565b600060208201905081810360008301526119f48161177b565b9050919050565b60006020820190508181036000830152611a148161179e565b9050919050565b60006020820190508181036000830152611a34816117c1565b9050919050565b60006020820190508181036000830152611a54816117e4565b9050919050565b60006020820190508181036000830152611a7481611807565b9050919050565b60006020820190508181036000830152611a948161182a565b9050919050565b60006020820190508181036000830152611ab48161184d565b9050919050565b60006020820190508181036000830152611ad481611870565b9050919050565b60006020820190508181036000830152611af481611893565b9050919050565b60006020820190508181036000830152611b14816118b6565b9050919050565b60006020820190508181036000830152611b34816118d9565b9050919050565b60006020820190508181036000830152611b54816118fc565b9050919050565b60006020820190508181036000830152611b748161191f565b9050919050565b60006020820190508181036000830152611b9481611942565b9050919050565b6000602082019050611bb06000830184611965565b92915050565b6000602082019050611bcb6000830184611974565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611bf882611cb5565b9150611c0383611cb5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c3857611c37611d31565b5b828201905092915050565b6000611c4e82611cb5565b9150611c5983611cb5565b925082821015611c6c57611c6b611d31565b5b828203905092915050565b6000611c8282611c95565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611cea578082015181840152602081019050611ccf565b83811115611cf9576000848401525b50505050565b60006002820490506001821680611d1757607f821691505b60208210811415611d2b57611d2a611d60565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61213d81611c77565b811461214857600080fd5b50565b61215481611cb5565b811461215f57600080fd5b5056fea2646970667358221220a4ca340a56cdc2ad9c129217121e597a513231630d82f51e80cc302ff178baea64736f6c63430008040033
Deployed ByteCode Sourcemap
22414:636:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8404:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7173:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9185:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7015:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9889:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22672:65;;;:::i;:::-;;22745:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17227:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18791:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7344:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21547:103;;;:::i;:::-;;17637:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22603:61;;;:::i;:::-;;20896:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6272:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10632:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7677:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7933:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21805:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6053:100;6107:13;6140:5;6133:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6053:100;:::o;8404:201::-;8487:4;8504:13;8520:12;:10;:12::i;:::-;8504:28;;8543:32;8552:5;8559:7;8568:6;8543:8;:32::i;:::-;8593:4;8586:11;;;8404:201;;;;:::o;7173:108::-;7234:7;7261:12;;7254:19;;7173:108;:::o;9185:295::-;9316:4;9333:15;9351:12;:10;:12::i;:::-;9333:30;;9374:38;9390:4;9396:7;9405:6;9374:15;:38::i;:::-;9423:27;9433:4;9439:2;9443:6;9423:9;:27::i;:::-;9468:4;9461:11;;;9185:295;;;;;:::o;7015:93::-;7073:5;7098:2;7091:9;;7015:93;:::o;9889:240::-;9977:4;9994:13;10010:12;:10;:12::i;:::-;9994:28;;10033:66;10042:5;10049:7;10088:10;10058:11;:18;10070:5;10058:18;;;;;;;;;;;;;;;:27;10077:7;10058:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;10033:8;:66::i;:::-;10117:4;10110:11;;;9889:240;;;;:::o;22672:65::-;21127:12;:10;:12::i;:::-;21116:23;;:7;:5;:7::i;:::-;:23;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22719:10:::1;:8;:10::i;:::-;22672:65::o:0;22745:95::-;21127:12;:10;:12::i;:::-;21116:23;;:7;:5;:7::i;:::-;:23;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22815:17:::1;22821:2;22825:6;22815:5;:17::i;:::-;22745:95:::0;;:::o;17227:91::-;17283:27;17289:12;:10;:12::i;:::-;17303:6;17283:5;:27::i;:::-;17227:91;:::o;18791:86::-;18838:4;18862:7;;;;;;;;;;;18855:14;;18791:86;:::o;7344:127::-;7418:7;7445:9;:18;7455:7;7445:18;;;;;;;;;;;;;;;;7438:25;;7344:127;;;:::o;21547:103::-;21127:12;:10;:12::i;:::-;21116:23;;:7;:5;:7::i;:::-;:23;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21612:30:::1;21639:1;21612:18;:30::i;:::-;21547:103::o:0;17637:164::-;17714:46;17730:7;17739:12;:10;:12::i;:::-;17753:6;17714:15;:46::i;:::-;17771:22;17777:7;17786:6;17771:5;:22::i;:::-;17637:164;;:::o;22603:61::-;21127:12;:10;:12::i;:::-;21116:23;;:7;:5;:7::i;:::-;:23;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22648:8:::1;:6;:8::i;:::-;22603:61::o:0;20896:87::-;20942:7;20969:6;;;;;;;;;;;20962:13;;20896:87;:::o;6272:104::-;6328:13;6361:7;6354:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6272:104;:::o;10632:438::-;10725:4;10742:13;10758:12;:10;:12::i;:::-;10742:28;;10781:24;10808:11;:18;10820:5;10808:18;;;;;;;;;;;;;;;:27;10827:7;10808:27;;;;;;;;;;;;;;;;10781:54;;10874:15;10854:16;:35;;10846:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10967:60;10976:5;10983:7;11011:15;10992:16;:34;10967:8;:60::i;:::-;11058:4;11051:11;;;;10632:438;;;;:::o;7677:193::-;7756:4;7773:13;7789:12;:10;:12::i;:::-;7773:28;;7812;7822:5;7829:2;7833:6;7812:9;:28::i;:::-;7858:4;7851:11;;;7677:193;;;;:::o;7933:151::-;8022:7;8049:11;:18;8061:5;8049:18;;;;;;;;;;;;;;;:27;8068:7;8049:27;;;;;;;;;;;;;;;;8042:34;;7933:151;;;;:::o;21805:201::-;21127:12;:10;:12::i;:::-;21116:23;;:7;:5;:7::i;:::-;:23;;;21108:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21914:1:::1;21894:22;;:8;:22;;;;21886:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21970:28;21989:8;21970:18;:28::i;:::-;21805:201:::0;:::o;15988:125::-;;;;:::o;3861:98::-;3914:7;3941:10;3934:17;;3861:98;:::o;14268:380::-;14421:1;14404:19;;:5;:19;;;;14396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14502:1;14483:21;;:7;:21;;;;14475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14586:6;14556:11;:18;14568:5;14556:18;;;;;;;;;;;;;;;:27;14575:7;14556:27;;;;;;;;;;;;;;;:36;;;;14624:7;14608:32;;14617:5;14608:32;;;14633:6;14608:32;;;;;;:::i;:::-;;;;;;;;14268:380;;;:::o;14935:453::-;15070:24;15097:25;15107:5;15114:7;15097:9;:25::i;:::-;15070:52;;15157:17;15137:16;:37;15133:248;;15219:6;15199:16;:26;;15191:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15303:51;15312:5;15319:7;15347:6;15328:16;:25;15303:8;:51::i;:::-;15133:248;14935:453;;;;:::o;11549:671::-;11696:1;11680:18;;:4;:18;;;;11672:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11773:1;11759:16;;:2;:16;;;;11751:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11828:38;11849:4;11855:2;11859:6;11828:20;:38::i;:::-;11879:19;11901:9;:15;11911:4;11901:15;;;;;;;;;;;;;;;;11879:37;;11950:6;11935:11;:21;;11927:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12067:6;12053:11;:20;12035:9;:15;12045:4;12035:15;;;;;;;;;;;;;;;:38;;;;12112:6;12095:9;:13;12105:2;12095:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;12151:2;12136:26;;12145:4;12136:26;;;12155:6;12136:26;;;;;;:::i;:::-;;;;;;;;12175:37;12195:4;12201:2;12205:6;12175:19;:37::i;:::-;11549:671;;;;:::o;19850:120::-;19394:8;:6;:8::i;:::-;19386:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;19919:5:::1;19909:7;;:15;;;;;;;;;;;;;;;;;;19940:22;19949:12;:10;:12::i;:::-;19940:22;;;;;;:::i;:::-;;;;;;;;19850:120::o:0;12507:399::-;12610:1;12591:21;;:7;:21;;;;12583:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;12661:49;12690:1;12694:7;12703:6;12661:20;:49::i;:::-;12739:6;12723:12;;:22;;;;;;;:::i;:::-;;;;;;;;12778:6;12756:9;:18;12766:7;12756:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;12821:7;12800:37;;12817:1;12800:37;;;12830:6;12800:37;;;;;;:::i;:::-;;;;;;;;12850:48;12878:1;12882:7;12891:6;12850:19;:48::i;:::-;12507:399;;:::o;13239:591::-;13342:1;13323:21;;:7;:21;;;;13315:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13395:49;13416:7;13433:1;13437:6;13395:20;:49::i;:::-;13457:22;13482:9;:18;13492:7;13482:18;;;;;;;;;;;;;;;;13457:43;;13537:6;13519:14;:24;;13511:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13656:6;13639:14;:23;13618:9;:18;13628:7;13618:18;;;;;;;;;;;;;;;:44;;;;13700:6;13684:12;;:22;;;;;;;:::i;:::-;;;;;;;;13750:1;13724:37;;13733:7;13724:37;;;13754:6;13724:37;;;;;;:::i;:::-;;;;;;;;13774:48;13794:7;13811:1;13815:6;13774:19;:48::i;:::-;13239:591;;;:::o;22166:191::-;22240:16;22259:6;;;;;;;;;;;22240:25;;22285:8;22276:6;;:17;;;;;;;;;;;;;;;;;;22340:8;22309:40;;22330:8;22309:40;;;;;;;;;;;;22166:191;;:::o;19591:118::-;19117:8;:6;:8::i;:::-;19116:9;19108:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;19661:4:::1;19651:7;;:14;;;;;;;;;;;;;;;;;;19681:20;19688:12;:10;:12::i;:::-;19681:20;;;;;;:::i;:::-;;;;;;;;19591:118::o:0;22848:199::-;19117:8;:6;:8::i;:::-;19116:9;19108:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;22995:44:::1;23022:4;23028:2;23032:6;22995:26;:44::i;:::-;22848:199:::0;;;:::o;16717:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;633:6;641;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;1055:6;1063;1071;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;1604:6;1612;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;2008:6;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:366::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5576:220;;;:::o;5802:366::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5948:220;;;:::o;6174:366::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6320:220;;;:::o;6546:366::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6692:220;;;:::o;6918:366::-;7060:3;7081:67;7145:2;7140:3;7081:67;:::i;:::-;7074:74;;7157:93;7246:3;7157:93;:::i;:::-;7275:2;7270:3;7266:12;7259:19;;7064:220;;;:::o;7290:366::-;7432:3;7453:67;7517:2;7512:3;7453:67;:::i;:::-;7446:74;;7529:93;7618:3;7529:93;:::i;:::-;7647:2;7642:3;7638:12;7631:19;;7436:220;;;:::o;7662:366::-;7804:3;7825:67;7889:2;7884:3;7825:67;:::i;:::-;7818:74;;7901:93;7990:3;7901:93;:::i;:::-;8019:2;8014:3;8010:12;8003:19;;7808:220;;;:::o;8034:118::-;8121:24;8139:5;8121:24;:::i;:::-;8116:3;8109:37;8099:53;;:::o;8158:112::-;8241:22;8257:5;8241:22;:::i;:::-;8236:3;8229:35;8219:51;;:::o;8276:222::-;8369:4;8407:2;8396:9;8392:18;8384:26;;8420:71;8488:1;8477:9;8473:17;8464:6;8420:71;:::i;:::-;8374:124;;;;:::o;8504:210::-;8591:4;8629:2;8618:9;8614:18;8606:26;;8642:65;8704:1;8693:9;8689:17;8680:6;8642:65;:::i;:::-;8596:118;;;;:::o;8720:313::-;8833:4;8871:2;8860:9;8856:18;8848:26;;8920:9;8914:4;8910:20;8906:1;8895:9;8891:17;8884:47;8948:78;9021:4;9012:6;8948:78;:::i;:::-;8940:86;;8838:195;;;;:::o;9039:419::-;9205:4;9243:2;9232:9;9228:18;9220:26;;9292:9;9286:4;9282:20;9278:1;9267:9;9263:17;9256:47;9320:131;9446:4;9320:131;:::i;:::-;9312:139;;9210:248;;;:::o;9464:419::-;9630:4;9668:2;9657:9;9653:18;9645:26;;9717:9;9711:4;9707:20;9703:1;9692:9;9688:17;9681:47;9745:131;9871:4;9745:131;:::i;:::-;9737:139;;9635:248;;;:::o;9889:419::-;10055:4;10093:2;10082:9;10078:18;10070:26;;10142:9;10136:4;10132:20;10128:1;10117:9;10113:17;10106:47;10170:131;10296:4;10170:131;:::i;:::-;10162:139;;10060:248;;;:::o;10314:419::-;10480:4;10518:2;10507:9;10503:18;10495:26;;10567:9;10561:4;10557:20;10553:1;10542:9;10538:17;10531:47;10595:131;10721:4;10595:131;:::i;:::-;10587:139;;10485:248;;;:::o;10739:419::-;10905:4;10943:2;10932:9;10928:18;10920:26;;10992:9;10986:4;10982:20;10978:1;10967:9;10963:17;10956:47;11020:131;11146:4;11020:131;:::i;:::-;11012:139;;10910:248;;;:::o;11164:419::-;11330:4;11368:2;11357:9;11353:18;11345:26;;11417:9;11411:4;11407:20;11403:1;11392:9;11388:17;11381:47;11445:131;11571:4;11445:131;:::i;:::-;11437:139;;11335:248;;;:::o;11589:419::-;11755:4;11793:2;11782:9;11778:18;11770:26;;11842:9;11836:4;11832:20;11828:1;11817:9;11813:17;11806:47;11870:131;11996:4;11870:131;:::i;:::-;11862:139;;11760:248;;;:::o;12014:419::-;12180:4;12218:2;12207:9;12203:18;12195:26;;12267:9;12261:4;12257:20;12253:1;12242:9;12238:17;12231:47;12295:131;12421:4;12295:131;:::i;:::-;12287:139;;12185:248;;;:::o;12439:419::-;12605:4;12643:2;12632:9;12628:18;12620:26;;12692:9;12686:4;12682:20;12678:1;12667:9;12663:17;12656:47;12720:131;12846:4;12720:131;:::i;:::-;12712:139;;12610:248;;;:::o;12864:419::-;13030:4;13068:2;13057:9;13053:18;13045:26;;13117:9;13111:4;13107:20;13103:1;13092:9;13088:17;13081:47;13145:131;13271:4;13145:131;:::i;:::-;13137:139;;13035:248;;;:::o;13289:419::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:131;13696:4;13570:131;:::i;:::-;13562:139;;13460:248;;;:::o;13714:419::-;13880:4;13918:2;13907:9;13903:18;13895:26;;13967:9;13961:4;13957:20;13953:1;13942:9;13938:17;13931:47;13995:131;14121:4;13995:131;:::i;:::-;13987:139;;13885:248;;;:::o;14139:419::-;14305:4;14343:2;14332:9;14328:18;14320:26;;14392:9;14386:4;14382:20;14378:1;14367:9;14363:17;14356:47;14420:131;14546:4;14420:131;:::i;:::-;14412:139;;14310:248;;;:::o;14564:419::-;14730:4;14768:2;14757:9;14753:18;14745:26;;14817:9;14811:4;14807:20;14803:1;14792:9;14788:17;14781:47;14845:131;14971:4;14845:131;:::i;:::-;14837:139;;14735:248;;;:::o;14989:222::-;15082:4;15120:2;15109:9;15105:18;15097:26;;15133:71;15201:1;15190:9;15186:17;15177:6;15133:71;:::i;:::-;15087:124;;;;:::o;15217:214::-;15306:4;15344:2;15333:9;15329:18;15321:26;;15357:67;15421:1;15410:9;15406:17;15397:6;15357:67;:::i;:::-;15311:120;;;;:::o;15437:99::-;15489:6;15523:5;15517:12;15507:22;;15496:40;;;:::o;15542:169::-;15626:11;15660:6;15655:3;15648:19;15700:4;15695:3;15691:14;15676:29;;15638:73;;;;:::o;15717:305::-;15757:3;15776:20;15794:1;15776:20;:::i;:::-;15771:25;;15810:20;15828:1;15810:20;:::i;:::-;15805:25;;15964:1;15896:66;15892:74;15889:1;15886:81;15883:2;;;15970:18;;:::i;:::-;15883:2;16014:1;16011;16007:9;16000:16;;15761:261;;;;:::o;16028:191::-;16068:4;16088:20;16106:1;16088:20;:::i;:::-;16083:25;;16122:20;16140:1;16122:20;:::i;:::-;16117:25;;16161:1;16158;16155:8;16152:2;;;16166:18;;:::i;:::-;16152:2;16211:1;16208;16204:9;16196:17;;16073:146;;;;:::o;16225:96::-;16262:7;16291:24;16309:5;16291:24;:::i;:::-;16280:35;;16270:51;;;:::o;16327:90::-;16361:7;16404:5;16397:13;16390:21;16379:32;;16369:48;;;:::o;16423:126::-;16460:7;16500:42;16493:5;16489:54;16478:65;;16468:81;;;:::o;16555:77::-;16592:7;16621:5;16610:16;;16600:32;;;:::o;16638:86::-;16673:7;16713:4;16706:5;16702:16;16691:27;;16681:43;;;:::o;16730:307::-;16798:1;16808:113;16822:6;16819:1;16816:13;16808:113;;;16907:1;16902:3;16898:11;16892:18;16888:1;16883:3;16879:11;16872:39;16844:2;16841:1;16837:10;16832:15;;16808:113;;;16939:6;16936:1;16933:13;16930:2;;;17019:1;17010:6;17005:3;17001:16;16994:27;16930:2;16779:258;;;;:::o;17043:320::-;17087:6;17124:1;17118:4;17114:12;17104:22;;17171:1;17165:4;17161:12;17192:18;17182:2;;17248:4;17240:6;17236:17;17226:27;;17182:2;17310;17302:6;17299:14;17279:18;17276:38;17273:2;;;17329:18;;:::i;:::-;17273:2;17094:269;;;;:::o;17369:180::-;17417:77;17414:1;17407:88;17514:4;17511:1;17504:15;17538:4;17535:1;17528:15;17555:180;17603:77;17600:1;17593:88;17700:4;17697:1;17690:15;17724:4;17721:1;17714:15;17741:102;17782:6;17833:2;17829:7;17824:2;17817:5;17813:14;17809:28;17799:38;;17789:54;;;:::o;17849:222::-;17989:34;17985:1;17977:6;17973:14;17966:58;18058:5;18053:2;18045:6;18041:15;18034:30;17955:116;:::o;18077:170::-;18217:22;18213:1;18205:6;18201:14;18194:46;18183:64;:::o;18253:221::-;18393:34;18389:1;18381:6;18377:14;18370:58;18462:4;18457:2;18449:6;18445:15;18438:29;18359:115;:::o;18480:225::-;18620:34;18616:1;18608:6;18604:14;18597:58;18689:8;18684:2;18676:6;18672:15;18665:33;18586:119;:::o;18711:221::-;18851:34;18847:1;18839:6;18835:14;18828:58;18920:4;18915:2;18907:6;18903:15;18896:29;18817:115;:::o;18938:179::-;19078:31;19074:1;19066:6;19062:14;19055:55;19044:73;:::o;19123:225::-;19263:34;19259:1;19251:6;19247:14;19240:58;19332:8;19327:2;19319:6;19315:15;19308:33;19229:119;:::o;19354:166::-;19494:18;19490:1;19482:6;19478:14;19471:42;19460:60;:::o;19526:182::-;19666:34;19662:1;19654:6;19650:14;19643:58;19632:76;:::o;19714:220::-;19854:34;19850:1;19842:6;19838:14;19831:58;19923:3;19918:2;19910:6;19906:15;19899:28;19820:114;:::o;19940:224::-;20080:34;20076:1;20068:6;20064:14;20057:58;20149:7;20144:2;20136:6;20132:15;20125:32;20046:118;:::o;20170:223::-;20310:34;20306:1;20298:6;20294:14;20287:58;20379:6;20374:2;20366:6;20362:15;20355:31;20276:117;:::o;20399:224::-;20539:34;20535:1;20527:6;20523:14;20516:58;20608:7;20603:2;20595:6;20591:15;20584:32;20505:118;:::o;20629:181::-;20769:33;20765:1;20757:6;20753:14;20746:57;20735:75;:::o;20816:122::-;20889:24;20907:5;20889:24;:::i;:::-;20882:5;20879:35;20869:2;;20928:1;20925;20918:12;20869:2;20859:79;:::o;20944:122::-;21017:24;21035:5;21017:24;:::i;:::-;21010:5;21007:35;20997:2;;21056:1;21053;21046:12;20997:2;20987:79;:::o
Swarm Source
ipfs://a4ca340a56cdc2ad9c129217121e597a513231630d82f51e80cc302ff178baea