Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Metaverse
Overview
Max Total Supply
1,649,800,000 KTK
Holders
94 (0.00%)
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$164,972.00
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
KeyToken
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-04 */ // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @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 Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { 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()); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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 {} } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } } // File: contracts/KeyToken.sol // contracts/KeyToken.sol pragma solidity ^0.8.17; contract KeyToken is ERC20Capped, ERC20Burnable, Pausable { address payable public owner; constructor(uint256 cap) ERC20("KeyToken", "KTK") ERC20Capped(cap * (10 ** decimals())) { owner = payable(msg.sender); _mint(owner, 99800000 * (10 ** decimals())); } function _mint(address account, uint256 amount) internal virtual override(ERC20Capped, ERC20) { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } function publishToken(uint256 amount) public{ require(msg.sender == owner, "only the owner can call this function"); owner = payable(msg.sender); _mint(owner, amount * (10 ** decimals())); } modifier onlyOwner { require(msg.sender == owner, "Only the owner can call this function"); _; } function pause() public onlyOwner{ _pause(); } function unpause() public onlyOwner{ _unpause(); } 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
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"}],"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":"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":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publishToken","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200300b3803806200300b8339818101604052810190620000379190620005a2565b620000476200020860201b60201c565b600a62000055919062000764565b81620000629190620007b5565b6040518060400160405280600881526020017f4b6579546f6b656e0000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4b544b00000000000000000000000000000000000000000000000000000000008152508160039081620000df919062000a70565b508060049081620000f1919062000a70565b505050600081116200013a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001319062000bb8565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff02191690831515021790555033600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000201600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620001d66200020860201b60201c565b600a620001e4919062000764565b6305f2d3c0620001f59190620007b5565b6200021160201b60201c565b5062000d99565b60006012905090565b62000221620002a260201b60201c565b8162000237620002ac60201b620004651760201c565b62000243919062000bda565b111562000287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027e9062000c65565b60405180910390fd5b6200029e8282620002b660201b620009c41760201c565b5050565b6000608051905090565b6000600254905090565b620002c6620002a260201b60201c565b81620002dc620002ac60201b620004651760201c565b620002e8919062000bda565b11156200032c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003239062000c65565b60405180910390fd5b6200034382826200034760201b62000a2e1760201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b09062000cd7565b60405180910390fd5b620003cd60008383620004bf60201b60201c565b8060026000828254620003e1919062000bda565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000438919062000bda565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200049f919062000d0a565b60405180910390a3620004bb60008383620004ec60201b60201c565b5050565b620004cf620004f160201b60201c565b620004e78383836200054660201b62000b8d1760201c565b505050565b505050565b620005016200054b60201b60201c565b1562000544576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053b9062000d77565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b600080fd5b6000819050919050565b6200057c8162000567565b81146200058857600080fd5b50565b6000815190506200059c8162000571565b92915050565b600060208284031215620005bb57620005ba62000562565b5b6000620005cb848285016200058b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000662578086048111156200063a5762000639620005d4565b5b60018516156200064a5780820291505b80810290506200065a8562000603565b94506200061a565b94509492505050565b6000826200067d576001905062000750565b816200068d576000905062000750565b8160018114620006a65760028114620006b157620006e7565b600191505062000750565b60ff841115620006c657620006c5620005d4565b5b8360020a915084821115620006e057620006df620005d4565b5b5062000750565b5060208310610133831016604e8410600b8410161715620007215782820a9050838111156200071b576200071a620005d4565b5b62000750565b62000730848484600162000610565b925090508184048111156200074a5762000749620005d4565b5b81810290505b9392505050565b600060ff82169050919050565b6000620007718262000567565b91506200077e8362000757565b9250620007ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200066b565b905092915050565b6000620007c28262000567565b9150620007cf8362000567565b9250828202620007df8162000567565b91508282048414831517620007f957620007f8620005d4565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200088257607f821691505b6020821081036200089857620008976200083a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008c3565b6200090e8683620008c3565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009516200094b620009458462000567565b62000926565b62000567565b9050919050565b6000819050919050565b6200096d8362000930565b620009856200097c8262000958565b848454620008d0565b825550505050565b600090565b6200099c6200098d565b620009a981848462000962565b505050565b5b81811015620009d157620009c560008262000992565b600181019050620009af565b5050565b601f82111562000a2057620009ea816200089e565b620009f584620008b3565b8101602085101562000a05578190505b62000a1d62000a1485620008b3565b830182620009ae565b50505b505050565b600082821c905092915050565b600062000a456000198460080262000a25565b1980831691505092915050565b600062000a60838362000a32565b9150826002028217905092915050565b62000a7b8262000800565b67ffffffffffffffff81111562000a975762000a966200080b565b5b62000aa3825462000869565b62000ab0828285620009d5565b600060209050601f83116001811462000ae8576000841562000ad3578287015190505b62000adf858262000a52565b86555062000b4f565b601f19841662000af8866200089e565b60005b8281101562000b225784890151825560018201915060208501945060208101905062000afb565b8683101562000b42578489015162000b3e601f89168262000a32565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b600062000ba060158362000b57565b915062000bad8262000b68565b602082019050919050565b6000602082019050818103600083015262000bd38162000b91565b9050919050565b600062000be78262000567565b915062000bf48362000567565b925082820190508082111562000c0f5762000c0e620005d4565b5b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062000c4d60198362000b57565b915062000c5a8262000c15565b602082019050919050565b6000602082019050818103600083015262000c808162000c3e565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cbf601f8362000b57565b915062000ccc8262000c87565b602082019050919050565b6000602082019050818103600083015262000cf28162000cb0565b9050919050565b62000d048162000567565b82525050565b600060208201905062000d21600083018462000cf9565b92915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000d5f60108362000b57565b915062000d6c8262000d27565b602082019050919050565b6000602082019050818103600083015262000d928162000d50565b9050919050565b60805161225662000db560003960006104ab01526122566000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638da5cb5b116100715780638da5cb5b146102e457806395d89b4114610302578063a457c2d714610320578063a9059cbb14610350578063dd62ed3e1461038057610121565b80635c975abb146102545780635cd62e7e1461027257806370a082311461028e57806379cc6790146102be5780638456cb59146102da57610121565b8063313ce567116100f4578063313ce567146101c2578063355274ea146101e057806339509351146101fe5780633f4ba83a1461022e57806342966c681461023857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103b0565b60405161013b91906114b4565b60405180910390f35b61015e6004803603810190610159919061156f565b610442565b60405161016b91906115ca565b60405180910390f35b61017c610465565b60405161018991906115f4565b60405180910390f35b6101ac60048036038101906101a7919061160f565b61046f565b6040516101b991906115ca565b60405180910390f35b6101ca61049e565b6040516101d7919061167e565b60405180910390f35b6101e86104a7565b6040516101f591906115f4565b60405180910390f35b6102186004803603810190610213919061156f565b6104cf565b60405161022591906115ca565b60405180910390f35b610236610506565b005b610252600480360381019061024d9190611699565b6105a0565b005b61025c6105b4565b60405161026991906115ca565b60405180910390f35b61028c60048036038101906102879190611699565b6105cb565b005b6102a860048036038101906102a391906116c6565b6106e9565b6040516102b591906115f4565b60405180910390f35b6102d860048036038101906102d3919061156f565b610731565b005b6102e2610751565b005b6102ec6107eb565b6040516102f99190611714565b60405180910390f35b61030a610811565b60405161031791906114b4565b60405180910390f35b61033a6004803603810190610335919061156f565b6108a3565b60405161034791906115ca565b60405180910390f35b61036a6004803603810190610365919061156f565b61091a565b60405161037791906115ca565b60405180910390f35b61039a6004803603810190610395919061172f565b61093d565b6040516103a791906115f4565b60405180910390f35b6060600380546103bf9061179e565b80601f01602080910402602001604051908101604052809291908181526020018280546103eb9061179e565b80156104385780601f1061040d57610100808354040283529160200191610438565b820191906000526020600020905b81548152906001019060200180831161041b57829003601f168201915b5050505050905090565b60008061044d610b92565b905061045a818585610b9a565b600191505092915050565b6000600254905090565b60008061047a610b92565b9050610487858285610d63565b610492858585610def565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000806104da610b92565b90506104fb8185856104ec858961093d565b6104f691906117fe565b610b9a565b600191505092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058d906118a4565b60405180910390fd5b61059e61106e565b565b6105b16105ab610b92565b826110d1565b50565b6000600560009054906101000a900460ff16905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065290611936565b60405180910390fd5b33600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106e6600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166106ca61049e565b600a6106d69190611a89565b836106e19190611ad4565b6112a7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107438261073d610b92565b83610d63565b61074d82826110d1565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d8906118a4565b60405180910390fd5b6107e9611311565b565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546108209061179e565b80601f016020809104026020016040519081016040528092919081815260200182805461084c9061179e565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000806108ae610b92565b905060006108bc828661093d565b905083811015610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890611b88565b60405180910390fd5b61090e8286868403610b9a565b60019250505092915050565b600080610925610b92565b9050610932818585610def565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109cc6104a7565b816109d5610465565b6109df91906117fe565b1115610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790611bf4565b60405180910390fd5b610a2a8282610a2e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611c60565b60405180910390fd5b610aa960008383611374565b8060026000828254610abb91906117fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b1091906117fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b7591906115f4565b60405180910390a3610b896000838361138c565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090611cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611d84565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5691906115f4565b60405180910390a3505050565b6000610d6f848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de95781811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290611df0565b60405180910390fd5b610de88484848403610b9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611e82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490611f14565b60405180910390fd5b610ed8838383611374565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611fa6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff191906117fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105591906115f4565b60405180910390a361106884848461138c565b50505050565b611076611391565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110ba610b92565b6040516110c79190611fd5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612062565b60405180910390fd5b61114c82600083611374565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906120f4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112299190612114565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128e91906115f4565b60405180910390a36112a28360008461138c565b505050565b6112af6104a7565b816112b8610465565b6112c291906117fe565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90611bf4565b60405180910390fd5b61130d82826109c4565b5050565b6113196113da565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861135d610b92565b60405161136a9190611fd5565b60405180910390a1565b61137c6113da565b611387838383610b8d565b505050565b505050565b6113996105b4565b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90612194565b60405180910390fd5b565b6113e26105b4565b15611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612200565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145e578082015181840152602081019050611443565b60008484015250505050565b6000601f19601f8301169050919050565b600061148682611424565b611490818561142f565b93506114a0818560208601611440565b6114a98161146a565b840191505092915050565b600060208201905081810360008301526114ce818461147b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611506826114db565b9050919050565b611516816114fb565b811461152157600080fd5b50565b6000813590506115338161150d565b92915050565b6000819050919050565b61154c81611539565b811461155757600080fd5b50565b60008135905061156981611543565b92915050565b60008060408385031215611586576115856114d6565b5b600061159485828601611524565b92505060206115a58582860161155a565b9150509250929050565b60008115159050919050565b6115c4816115af565b82525050565b60006020820190506115df60008301846115bb565b92915050565b6115ee81611539565b82525050565b600060208201905061160960008301846115e5565b92915050565b600080600060608486031215611628576116276114d6565b5b600061163686828701611524565b935050602061164786828701611524565b92505060406116588682870161155a565b9150509250925092565b600060ff82169050919050565b61167881611662565b82525050565b6000602082019050611693600083018461166f565b92915050565b6000602082840312156116af576116ae6114d6565b5b60006116bd8482850161155a565b91505092915050565b6000602082840312156116dc576116db6114d6565b5b60006116ea84828501611524565b91505092915050565b60006116fe826114db565b9050919050565b61170e816116f3565b82525050565b60006020820190506117296000830184611705565b92915050565b60008060408385031215611746576117456114d6565b5b600061175485828601611524565b925050602061176585828601611524565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117b657607f821691505b6020821081036117c9576117c861176f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061180982611539565b915061181483611539565b925082820190508082111561182c5761182b6117cf565b5b92915050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061188e60258361142f565b915061189982611832565b604082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f6f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061192060258361142f565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156119ad57808604811115611989576119886117cf565b5b60018516156119985780820291505b80810290506119a685611956565b945061196d565b94509492505050565b6000826119c65760019050611a82565b816119d45760009050611a82565b81600181146119ea57600281146119f457611a23565b6001915050611a82565b60ff841115611a0657611a056117cf565b5b8360020a915084821115611a1d57611a1c6117cf565b5b50611a82565b5060208310610133831016604e8410600b8410161715611a585782820a905083811115611a5357611a526117cf565b5b611a82565b611a658484846001611963565b92509050818404811115611a7c57611a7b6117cf565b5b81810290505b9392505050565b6000611a9482611539565b9150611a9f83611662565b9250611acc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846119b6565b905092915050565b6000611adf82611539565b9150611aea83611539565b9250828202611af881611539565b91508282048414831517611b0f57611b0e6117cf565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b7260258361142f565b9150611b7d82611b16565b604082019050919050565b60006020820190508181036000830152611ba181611b65565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611bde60198361142f565b9150611be982611ba8565b602082019050919050565b60006020820190508181036000830152611c0d81611bd1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c4a601f8361142f565b9150611c5582611c14565b602082019050919050565b60006020820190508181036000830152611c7981611c3d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cdc60248361142f565b9150611ce782611c80565b604082019050919050565b60006020820190508181036000830152611d0b81611ccf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6e60228361142f565b9150611d7982611d12565b604082019050919050565b60006020820190508181036000830152611d9d81611d61565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dda601d8361142f565b9150611de582611da4565b602082019050919050565b60006020820190508181036000830152611e0981611dcd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e6c60258361142f565b9150611e7782611e10565b604082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611efe60238361142f565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f9060268361142f565b9150611f9b82611f34565b604082019050919050565b60006020820190508181036000830152611fbf81611f83565b9050919050565b611fcf816114fb565b82525050565b6000602082019050611fea6000830184611fc6565b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061204c60218361142f565b915061205782611ff0565b604082019050919050565b6000602082019050818103600083015261207b8161203f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120de60228361142f565b91506120e982612082565b604082019050919050565b6000602082019050818103600083015261210d816120d1565b9050919050565b600061211f82611539565b915061212a83611539565b9250828203905081811115612142576121416117cf565b5b92915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061217e60148361142f565b915061218982612148565b602082019050919050565b600060208201905081810360008301526121ad81612171565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006121ea60108361142f565b91506121f5826121b4565b602082019050919050565b60006020820190508181036000830152612219816121dd565b905091905056fea2646970667358221220f13a843062379aec58c3732581e444b2ade4fbd50ab54212084a68b3d18779cb64736f6c6343000811003300000000000000000000000000000000000000000000000000000000633de240
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80635c975abb116100ad5780638da5cb5b116100715780638da5cb5b146102e457806395d89b4114610302578063a457c2d714610320578063a9059cbb14610350578063dd62ed3e1461038057610121565b80635c975abb146102545780635cd62e7e1461027257806370a082311461028e57806379cc6790146102be5780638456cb59146102da57610121565b8063313ce567116100f4578063313ce567146101c2578063355274ea146101e057806339509351146101fe5780633f4ba83a1461022e57806342966c681461023857610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e6103b0565b60405161013b91906114b4565b60405180910390f35b61015e6004803603810190610159919061156f565b610442565b60405161016b91906115ca565b60405180910390f35b61017c610465565b60405161018991906115f4565b60405180910390f35b6101ac60048036038101906101a7919061160f565b61046f565b6040516101b991906115ca565b60405180910390f35b6101ca61049e565b6040516101d7919061167e565b60405180910390f35b6101e86104a7565b6040516101f591906115f4565b60405180910390f35b6102186004803603810190610213919061156f565b6104cf565b60405161022591906115ca565b60405180910390f35b610236610506565b005b610252600480360381019061024d9190611699565b6105a0565b005b61025c6105b4565b60405161026991906115ca565b60405180910390f35b61028c60048036038101906102879190611699565b6105cb565b005b6102a860048036038101906102a391906116c6565b6106e9565b6040516102b591906115f4565b60405180910390f35b6102d860048036038101906102d3919061156f565b610731565b005b6102e2610751565b005b6102ec6107eb565b6040516102f99190611714565b60405180910390f35b61030a610811565b60405161031791906114b4565b60405180910390f35b61033a6004803603810190610335919061156f565b6108a3565b60405161034791906115ca565b60405180910390f35b61036a6004803603810190610365919061156f565b61091a565b60405161037791906115ca565b60405180910390f35b61039a6004803603810190610395919061172f565b61093d565b6040516103a791906115f4565b60405180910390f35b6060600380546103bf9061179e565b80601f01602080910402602001604051908101604052809291908181526020018280546103eb9061179e565b80156104385780601f1061040d57610100808354040283529160200191610438565b820191906000526020600020905b81548152906001019060200180831161041b57829003601f168201915b5050505050905090565b60008061044d610b92565b905061045a818585610b9a565b600191505092915050565b6000600254905090565b60008061047a610b92565b9050610487858285610d63565b610492858585610def565b60019150509392505050565b60006012905090565b60007f000000000000000000000000000000000000000005614176dc02d58421000000905090565b6000806104da610b92565b90506104fb8185856104ec858961093d565b6104f691906117fe565b610b9a565b600191505092915050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058d906118a4565b60405180910390fd5b61059e61106e565b565b6105b16105ab610b92565b826110d1565b50565b6000600560009054906101000a900460ff16905090565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461065b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065290611936565b60405180910390fd5b33600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506106e6600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff166106ca61049e565b600a6106d69190611a89565b836106e19190611ad4565b6112a7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107438261073d610b92565b83610d63565b61074d82826110d1565b5050565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d8906118a4565b60405180910390fd5b6107e9611311565b565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546108209061179e565b80601f016020809104026020016040519081016040528092919081815260200182805461084c9061179e565b80156108995780601f1061086e57610100808354040283529160200191610899565b820191906000526020600020905b81548152906001019060200180831161087c57829003601f168201915b5050505050905090565b6000806108ae610b92565b905060006108bc828661093d565b905083811015610901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f890611b88565b60405180910390fd5b61090e8286868403610b9a565b60019250505092915050565b600080610925610b92565b9050610932818585610def565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6109cc6104a7565b816109d5610465565b6109df91906117fe565b1115610a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1790611bf4565b60405180910390fd5b610a2a8282610a2e565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9490611c60565b60405180910390fd5b610aa960008383611374565b8060026000828254610abb91906117fe565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b1091906117fe565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b7591906115f4565b60405180910390a3610b896000838361138c565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0090611cf2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611d84565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d5691906115f4565b60405180910390a3505050565b6000610d6f848461093d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de95781811015610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd290611df0565b60405180910390fd5b610de88484848403610b9a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590611e82565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec490611f14565b60405180910390fd5b610ed8838383611374565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611fa6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ff191906117fe565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161105591906115f4565b60405180910390a361106884848461138c565b50505050565b611076611391565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6110ba610b92565b6040516110c79190611fd5565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611140576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113790612062565b60405180910390fd5b61114c82600083611374565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c9906120f4565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546112299190612114565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161128e91906115f4565b60405180910390a36112a28360008461138c565b505050565b6112af6104a7565b816112b8610465565b6112c291906117fe565b1115611303576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fa90611bf4565b60405180910390fd5b61130d82826109c4565b5050565b6113196113da565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861135d610b92565b60405161136a9190611fd5565b60405180910390a1565b61137c6113da565b611387838383610b8d565b505050565b505050565b6113996105b4565b6113d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cf90612194565b60405180910390fd5b565b6113e26105b4565b15611422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141990612200565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561145e578082015181840152602081019050611443565b60008484015250505050565b6000601f19601f8301169050919050565b600061148682611424565b611490818561142f565b93506114a0818560208601611440565b6114a98161146a565b840191505092915050565b600060208201905081810360008301526114ce818461147b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611506826114db565b9050919050565b611516816114fb565b811461152157600080fd5b50565b6000813590506115338161150d565b92915050565b6000819050919050565b61154c81611539565b811461155757600080fd5b50565b60008135905061156981611543565b92915050565b60008060408385031215611586576115856114d6565b5b600061159485828601611524565b92505060206115a58582860161155a565b9150509250929050565b60008115159050919050565b6115c4816115af565b82525050565b60006020820190506115df60008301846115bb565b92915050565b6115ee81611539565b82525050565b600060208201905061160960008301846115e5565b92915050565b600080600060608486031215611628576116276114d6565b5b600061163686828701611524565b935050602061164786828701611524565b92505060406116588682870161155a565b9150509250925092565b600060ff82169050919050565b61167881611662565b82525050565b6000602082019050611693600083018461166f565b92915050565b6000602082840312156116af576116ae6114d6565b5b60006116bd8482850161155a565b91505092915050565b6000602082840312156116dc576116db6114d6565b5b60006116ea84828501611524565b91505092915050565b60006116fe826114db565b9050919050565b61170e816116f3565b82525050565b60006020820190506117296000830184611705565b92915050565b60008060408385031215611746576117456114d6565b5b600061175485828601611524565b925050602061176585828601611524565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117b657607f821691505b6020821081036117c9576117c861176f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061180982611539565b915061181483611539565b925082820190508082111561182c5761182b6117cf565b5b92915050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061188e60258361142f565b915061189982611832565b604082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f6f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b600061192060258361142f565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156119ad57808604811115611989576119886117cf565b5b60018516156119985780820291505b80810290506119a685611956565b945061196d565b94509492505050565b6000826119c65760019050611a82565b816119d45760009050611a82565b81600181146119ea57600281146119f457611a23565b6001915050611a82565b60ff841115611a0657611a056117cf565b5b8360020a915084821115611a1d57611a1c6117cf565b5b50611a82565b5060208310610133831016604e8410600b8410161715611a585782820a905083811115611a5357611a526117cf565b5b611a82565b611a658484846001611963565b92509050818404811115611a7c57611a7b6117cf565b5b81810290505b9392505050565b6000611a9482611539565b9150611a9f83611662565b9250611acc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846119b6565b905092915050565b6000611adf82611539565b9150611aea83611539565b9250828202611af881611539565b91508282048414831517611b0f57611b0e6117cf565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611b7260258361142f565b9150611b7d82611b16565b604082019050919050565b60006020820190508181036000830152611ba181611b65565b9050919050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b6000611bde60198361142f565b9150611be982611ba8565b602082019050919050565b60006020820190508181036000830152611c0d81611bd1565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611c4a601f8361142f565b9150611c5582611c14565b602082019050919050565b60006020820190508181036000830152611c7981611c3d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cdc60248361142f565b9150611ce782611c80565b604082019050919050565b60006020820190508181036000830152611d0b81611ccf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6e60228361142f565b9150611d7982611d12565b604082019050919050565b60006020820190508181036000830152611d9d81611d61565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dda601d8361142f565b9150611de582611da4565b602082019050919050565b60006020820190508181036000830152611e0981611dcd565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e6c60258361142f565b9150611e7782611e10565b604082019050919050565b60006020820190508181036000830152611e9b81611e5f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611efe60238361142f565b9150611f0982611ea2565b604082019050919050565b60006020820190508181036000830152611f2d81611ef1565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f9060268361142f565b9150611f9b82611f34565b604082019050919050565b60006020820190508181036000830152611fbf81611f83565b9050919050565b611fcf816114fb565b82525050565b6000602082019050611fea6000830184611fc6565b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061204c60218361142f565b915061205782611ff0565b604082019050919050565b6000602082019050818103600083015261207b8161203f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006120de60228361142f565b91506120e982612082565b604082019050919050565b6000602082019050818103600083015261210d816120d1565b9050919050565b600061211f82611539565b915061212a83611539565b9250828203905081811115612142576121416117cf565b5b92915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061217e60148361142f565b915061218982612148565b602082019050919050565b600060208201905081810360008301526121ad81612171565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006121ea60108361142f565b91506121f5826121b4565b602082019050919050565b60006020820190508181036000830152612219816121dd565b905091905056fea2646970667358221220f13a843062379aec58c3732581e444b2ade4fbd50ab54212084a68b3d18779cb64736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000633de240
-----Decoded View---------------
Arg [0] : cap (uint256): 1665000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000633de240
Deployed Bytecode Sourcemap
22395:1215:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9308:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11659:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10428:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12440:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10270:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21938:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13144:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23367:64;;;:::i;:::-;;20677:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2566:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22936:232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10599:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21087:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23301:60;;;:::i;:::-;;22460:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9527:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13885:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10932:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11188:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9308:100;9362:13;9395:5;9388:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9308:100;:::o;11659:201::-;11742:4;11759:13;11775:12;:10;:12::i;:::-;11759:28;;11798:32;11807:5;11814:7;11823:6;11798:8;:32::i;:::-;11848:4;11841:11;;;11659:201;;;;:::o;10428:108::-;10489:7;10516:12;;10509:19;;10428:108;:::o;12440:295::-;12571:4;12588:15;12606:12;:10;:12::i;:::-;12588:30;;12629:38;12645:4;12651:7;12660:6;12629:15;:38::i;:::-;12678:27;12688:4;12694:2;12698:6;12678:9;:27::i;:::-;12723:4;12716:11;;;12440:295;;;;;:::o;10270:93::-;10328:5;10353:2;10346:9;;10270:93;:::o;21938:83::-;21982:7;22009:4;22002:11;;21938:83;:::o;13144:238::-;13232:4;13249:13;13265:12;:10;:12::i;:::-;13249:28;;13288:64;13297:5;13304:7;13341:10;13313:25;13323:5;13330:7;13313:9;:25::i;:::-;:38;;;;:::i;:::-;13288:8;:64::i;:::-;13370:4;13363:11;;;13144:238;;;;:::o;23367:64::-;23228:5;;;;;;;;;;;23214:19;;:10;:19;;;23206:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23413:10:::1;:8;:10::i;:::-;23367:64::o:0;20677:91::-;20733:27;20739:12;:10;:12::i;:::-;20753:6;20733:5;:27::i;:::-;20677:91;:::o;2566:86::-;2613:4;2637:7;;;;;;;;;;;2630:14;;2566:86;:::o;22936:232::-;23013:5;;;;;;;;;;;22999:19;;:10;:19;;;22991:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23096:10;23080:5;;:27;;;;;;;;;;;;;;;;;;23118:41;23124:5;;;;;;;;;;;23147:10;:8;:10::i;:::-;23141:2;:16;;;;:::i;:::-;23131:6;:27;;;;:::i;:::-;23118:5;:41::i;:::-;22936:232;:::o;10599:127::-;10673:7;10700:9;:18;10710:7;10700:18;;;;;;;;;;;;;;;;10693:25;;10599:127;;;:::o;21087:164::-;21164:46;21180:7;21189:12;:10;:12::i;:::-;21203:6;21164:15;:46::i;:::-;21221:22;21227:7;21236:6;21221:5;:22::i;:::-;21087:164;;:::o;23301:60::-;23228:5;;;;;;;;;;;23214:19;;:10;:19;;;23206:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23345:8:::1;:6;:8::i;:::-;23301:60::o:0;22460:28::-;;;;;;;;;;;;;:::o;9527:104::-;9583:13;9616:7;9609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9527:104;:::o;13885:436::-;13978:4;13995:13;14011:12;:10;:12::i;:::-;13995:28;;14034:24;14061:25;14071:5;14078:7;14061:9;:25::i;:::-;14034:52;;14125:15;14105:16;:35;;14097:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14218:60;14227:5;14234:7;14262:15;14243:16;:34;14218:8;:60::i;:::-;14309:4;14302:11;;;;13885:436;;;;:::o;10932:193::-;11011:4;11028:13;11044:12;:10;:12::i;:::-;11028:28;;11067;11077:5;11084:2;11088:6;11067:9;:28::i;:::-;11113:4;11106:11;;;10932:193;;;;:::o;11188:151::-;11277:7;11304:11;:18;11316:5;11304:18;;;;;;;;;;;;;;;:27;11323:7;11304:27;;;;;;;;;;;;;;;;11297:34;;11188:151;;;;:::o;22079:207::-;22204:5;:3;:5::i;:::-;22194:6;22172:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;22164:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22250:28;22262:7;22271:6;22250:11;:28::i;:::-;22079:207;;:::o;15749:399::-;15852:1;15833:21;;:7;:21;;;15825:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15903:49;15932:1;15936:7;15945:6;15903:20;:49::i;:::-;15981:6;15965:12;;:22;;;;;;;:::i;:::-;;;;;;;;16020:6;15998:9;:18;16008:7;15998:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16063:7;16042:37;;16059:1;16042:37;;;16072:6;16042:37;;;;;;:::i;:::-;;;;;;;;16092:48;16120:1;16124:7;16133:6;16092:19;:48::i;:::-;15749:399;;:::o;19234:125::-;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17510:380::-;17663:1;17646:19;;:5;:19;;;17638:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17744:1;17725:21;;:7;:21;;;17717:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17828:6;17798:11;:18;17810:5;17798:18;;;;;;;;;;;;;;;:27;17817:7;17798:27;;;;;;;;;;;;;;;:36;;;;17866:7;17850:32;;17859:5;17850:32;;;17875:6;17850:32;;;;;;:::i;:::-;;;;;;;;17510:380;;;:::o;18181:453::-;18316:24;18343:25;18353:5;18360:7;18343:9;:25::i;:::-;18316:52;;18403:17;18383:16;:37;18379:248;;18465:6;18445:16;:26;;18437:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18549:51;18558:5;18565:7;18593:6;18574:16;:25;18549:8;:51::i;:::-;18379:248;18305:329;18181:453;;;:::o;14791:671::-;14938:1;14922:18;;:4;:18;;;14914:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15015:1;15001:16;;:2;:16;;;14993:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15070:38;15091:4;15097:2;15101:6;15070:20;:38::i;:::-;15121:19;15143:9;:15;15153:4;15143:15;;;;;;;;;;;;;;;;15121:37;;15192:6;15177:11;:21;;15169:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15309:6;15295:11;:20;15277:9;:15;15287:4;15277:15;;;;;;;;;;;;;;;:38;;;;15354:6;15337:9;:13;15347:2;15337:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15393:2;15378:26;;15387:4;15378:26;;;15397:6;15378:26;;;;;;:::i;:::-;;;;;;;;15417:37;15437:4;15443:2;15447:6;15417:19;:37::i;:::-;14903:559;14791:671;;;:::o;3421:120::-;2430:16;:14;:16::i;:::-;3490:5:::1;3480:7;;:15;;;;;;;;;;;;;;;;;;3511:22;3520:12;:10;:12::i;:::-;3511:22;;;;;;:::i;:::-;;;;;;;;3421:120::o:0;16481:591::-;16584:1;16565:21;;:7;:21;;;16557:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16637:49;16658:7;16675:1;16679:6;16637:20;:49::i;:::-;16699:22;16724:9;:18;16734:7;16724:18;;;;;;;;;;;;;;;;16699:43;;16779:6;16761:14;:24;;16753:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16898:6;16881:14;:23;16860:9;:18;16870:7;16860:18;;;;;;;;;;;;;;;:44;;;;16942:6;16926:12;;:22;;;;;;;:::i;:::-;;;;;;;;16992:1;16966:37;;16975:7;16966:37;;;16996:6;16966:37;;;;;;:::i;:::-;;;;;;;;17016:48;17036:7;17053:1;17057:6;17016:19;:48::i;:::-;16546:526;16481:591;;:::o;22697:227::-;22842:5;:3;:5::i;:::-;22832:6;22810:19;:17;:19::i;:::-;:28;;;;:::i;:::-;:37;;22802:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;22888:28;22900:7;22909:6;22888:11;:28::i;:::-;22697:227;;:::o;3162:118::-;2171:19;:17;:19::i;:::-;3232:4:::1;3222:7;;:14;;;;;;;;;;;;;;;;;;3252:20;3259:12;:10;:12::i;:::-;3252:20;;;;;;:::i;:::-;;;;;;;;3162:118::o:0;23437:164::-;2171:19;:17;:19::i;:::-;23549:44:::1;23576:4;23582:2;23586:6;23549:26;:44::i;:::-;23437:164:::0;;;:::o;19963:124::-;;;;:::o;2910:108::-;2977:8;:6;:8::i;:::-;2969:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2910:108::o;2725:::-;2796:8;:6;:8::i;:::-;2795:9;2787:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;2725:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:104::-;5568:7;5597:24;5615:5;5597:24;:::i;:::-;5586:35;;5523:104;;;:::o;5633:142::-;5736:32;5762:5;5736:32;:::i;:::-;5731:3;5724:45;5633:142;;:::o;5781:254::-;5890:4;5928:2;5917:9;5913:18;5905:26;;5941:87;6025:1;6014:9;6010:17;6001:6;5941:87;:::i;:::-;5781:254;;;;:::o;6041:474::-;6109:6;6117;6166:2;6154:9;6145:7;6141:23;6137:32;6134:119;;;6172:79;;:::i;:::-;6134:119;6292:1;6317:53;6362:7;6353:6;6342:9;6338:22;6317:53;:::i;:::-;6307:63;;6263:117;6419:2;6445:53;6490:7;6481:6;6470:9;6466:22;6445:53;:::i;:::-;6435:63;;6390:118;6041:474;;;;;:::o;6521:180::-;6569:77;6566:1;6559:88;6666:4;6663:1;6656:15;6690:4;6687:1;6680:15;6707:320;6751:6;6788:1;6782:4;6778:12;6768:22;;6835:1;6829:4;6825:12;6856:18;6846:81;;6912:4;6904:6;6900:17;6890:27;;6846:81;6974:2;6966:6;6963:14;6943:18;6940:38;6937:84;;6993:18;;:::i;:::-;6937:84;6758:269;6707:320;;;:::o;7033:180::-;7081:77;7078:1;7071:88;7178:4;7175:1;7168:15;7202:4;7199:1;7192:15;7219:191;7259:3;7278:20;7296:1;7278:20;:::i;:::-;7273:25;;7312:20;7330:1;7312:20;:::i;:::-;7307:25;;7355:1;7352;7348:9;7341:16;;7376:3;7373:1;7370:10;7367:36;;;7383:18;;:::i;:::-;7367:36;7219:191;;;;:::o;7416:224::-;7556:34;7552:1;7544:6;7540:14;7533:58;7625:7;7620:2;7612:6;7608:15;7601:32;7416:224;:::o;7646:366::-;7788:3;7809:67;7873:2;7868:3;7809:67;:::i;:::-;7802:74;;7885:93;7974:3;7885:93;:::i;:::-;8003:2;7998:3;7994:12;7987:19;;7646:366;;;:::o;8018:419::-;8184:4;8222:2;8211:9;8207:18;8199:26;;8271:9;8265:4;8261:20;8257:1;8246:9;8242:17;8235:47;8299:131;8425:4;8299:131;:::i;:::-;8291:139;;8018:419;;;:::o;8443:224::-;8583:34;8579:1;8571:6;8567:14;8560:58;8652:7;8647:2;8639:6;8635:15;8628:32;8443:224;:::o;8673:366::-;8815:3;8836:67;8900:2;8895:3;8836:67;:::i;:::-;8829:74;;8912:93;9001:3;8912:93;:::i;:::-;9030:2;9025:3;9021:12;9014:19;;8673:366;;;:::o;9045:419::-;9211:4;9249:2;9238:9;9234:18;9226:26;;9298:9;9292:4;9288:20;9284:1;9273:9;9269:17;9262:47;9326:131;9452:4;9326:131;:::i;:::-;9318:139;;9045:419;;;:::o;9470:102::-;9512:8;9559:5;9556:1;9552:13;9531:34;;9470:102;;;:::o;9578:848::-;9639:5;9646:4;9670:6;9661:15;;9694:5;9685:14;;9708:712;9729:1;9719:8;9716:15;9708:712;;;9824:4;9819:3;9815:14;9809:4;9806:24;9803:50;;;9833:18;;:::i;:::-;9803:50;9883:1;9873:8;9869:16;9866:451;;;10298:4;10291:5;10287:16;10278:25;;9866:451;10348:4;10342;10338:15;10330:23;;10378:32;10401:8;10378:32;:::i;:::-;10366:44;;9708:712;;;9578:848;;;;;;;:::o;10432:1073::-;10486:5;10677:8;10667:40;;10698:1;10689:10;;10700:5;;10667:40;10726:4;10716:36;;10743:1;10734:10;;10745:5;;10716:36;10812:4;10860:1;10855:27;;;;10896:1;10891:191;;;;10805:277;;10855:27;10873:1;10864:10;;10875:5;;;10891:191;10936:3;10926:8;10923:17;10920:43;;;10943:18;;:::i;:::-;10920:43;10992:8;10989:1;10985:16;10976:25;;11027:3;11020:5;11017:14;11014:40;;;11034:18;;:::i;:::-;11014:40;11067:5;;;10805:277;;11191:2;11181:8;11178:16;11172:3;11166:4;11163:13;11159:36;11141:2;11131:8;11128:16;11123:2;11117:4;11114:12;11110:35;11094:111;11091:246;;;11247:8;11241:4;11237:19;11228:28;;11282:3;11275:5;11272:14;11269:40;;;11289:18;;:::i;:::-;11269:40;11322:5;;11091:246;11362:42;11400:3;11390:8;11384:4;11381:1;11362:42;:::i;:::-;11347:57;;;;11436:4;11431:3;11427:14;11420:5;11417:25;11414:51;;;11445:18;;:::i;:::-;11414:51;11494:4;11487:5;11483:16;11474:25;;10432:1073;;;;;;:::o;11511:281::-;11569:5;11593:23;11611:4;11593:23;:::i;:::-;11585:31;;11637:25;11653:8;11637:25;:::i;:::-;11625:37;;11681:104;11718:66;11708:8;11702:4;11681:104;:::i;:::-;11672:113;;11511:281;;;;:::o;11798:410::-;11838:7;11861:20;11879:1;11861:20;:::i;:::-;11856:25;;11895:20;11913:1;11895:20;:::i;:::-;11890:25;;11950:1;11947;11943:9;11972:30;11990:11;11972:30;:::i;:::-;11961:41;;12151:1;12142:7;12138:15;12135:1;12132:22;12112:1;12105:9;12085:83;12062:139;;12181:18;;:::i;:::-;12062:139;11846:362;11798:410;;;;:::o;12214:224::-;12354:34;12350:1;12342:6;12338:14;12331:58;12423:7;12418:2;12410:6;12406:15;12399:32;12214:224;:::o;12444:366::-;12586:3;12607:67;12671:2;12666:3;12607:67;:::i;:::-;12600:74;;12683:93;12772:3;12683:93;:::i;:::-;12801:2;12796:3;12792:12;12785:19;;12444:366;;;:::o;12816:419::-;12982:4;13020:2;13009:9;13005:18;12997:26;;13069:9;13063:4;13059:20;13055:1;13044:9;13040:17;13033:47;13097:131;13223:4;13097:131;:::i;:::-;13089:139;;12816:419;;;:::o;13241:175::-;13381:27;13377:1;13369:6;13365:14;13358:51;13241:175;:::o;13422:366::-;13564:3;13585:67;13649:2;13644:3;13585:67;:::i;:::-;13578:74;;13661:93;13750:3;13661:93;:::i;:::-;13779:2;13774:3;13770:12;13763:19;;13422:366;;;:::o;13794:419::-;13960:4;13998:2;13987:9;13983:18;13975:26;;14047:9;14041:4;14037:20;14033:1;14022:9;14018:17;14011:47;14075:131;14201:4;14075:131;:::i;:::-;14067:139;;13794:419;;;:::o;14219:181::-;14359:33;14355:1;14347:6;14343:14;14336:57;14219:181;:::o;14406:366::-;14548:3;14569:67;14633:2;14628:3;14569:67;:::i;:::-;14562:74;;14645:93;14734:3;14645:93;:::i;:::-;14763:2;14758:3;14754:12;14747:19;;14406:366;;;:::o;14778:419::-;14944:4;14982:2;14971:9;14967:18;14959:26;;15031:9;15025:4;15021:20;15017:1;15006:9;15002:17;14995:47;15059:131;15185:4;15059:131;:::i;:::-;15051:139;;14778:419;;;:::o;15203:223::-;15343:34;15339:1;15331:6;15327:14;15320:58;15412:6;15407:2;15399:6;15395:15;15388:31;15203:223;:::o;15432:366::-;15574:3;15595:67;15659:2;15654:3;15595:67;:::i;:::-;15588:74;;15671:93;15760:3;15671:93;:::i;:::-;15789:2;15784:3;15780:12;15773:19;;15432:366;;;:::o;15804:419::-;15970:4;16008:2;15997:9;15993:18;15985:26;;16057:9;16051:4;16047:20;16043:1;16032:9;16028:17;16021:47;16085:131;16211:4;16085:131;:::i;:::-;16077:139;;15804:419;;;:::o;16229:221::-;16369:34;16365:1;16357:6;16353:14;16346:58;16438:4;16433:2;16425:6;16421:15;16414:29;16229:221;:::o;16456:366::-;16598:3;16619:67;16683:2;16678:3;16619:67;:::i;:::-;16612:74;;16695:93;16784:3;16695:93;:::i;:::-;16813:2;16808:3;16804:12;16797:19;;16456:366;;;:::o;16828:419::-;16994:4;17032:2;17021:9;17017:18;17009:26;;17081:9;17075:4;17071:20;17067:1;17056:9;17052:17;17045:47;17109:131;17235:4;17109:131;:::i;:::-;17101:139;;16828:419;;;:::o;17253:179::-;17393:31;17389:1;17381:6;17377:14;17370:55;17253:179;:::o;17438:366::-;17580:3;17601:67;17665:2;17660:3;17601:67;:::i;:::-;17594:74;;17677:93;17766:3;17677:93;:::i;:::-;17795:2;17790:3;17786:12;17779:19;;17438:366;;;:::o;17810:419::-;17976:4;18014:2;18003:9;17999:18;17991:26;;18063:9;18057:4;18053:20;18049:1;18038:9;18034:17;18027:47;18091:131;18217:4;18091:131;:::i;:::-;18083:139;;17810:419;;;:::o;18235:224::-;18375:34;18371:1;18363:6;18359:14;18352:58;18444:7;18439:2;18431:6;18427:15;18420:32;18235:224;:::o;18465:366::-;18607:3;18628:67;18692:2;18687:3;18628:67;:::i;:::-;18621:74;;18704:93;18793:3;18704:93;:::i;:::-;18822:2;18817:3;18813:12;18806:19;;18465:366;;;:::o;18837:419::-;19003:4;19041:2;19030:9;19026:18;19018:26;;19090:9;19084:4;19080:20;19076:1;19065:9;19061:17;19054:47;19118:131;19244:4;19118:131;:::i;:::-;19110:139;;18837:419;;;:::o;19262:222::-;19402:34;19398:1;19390:6;19386:14;19379:58;19471:5;19466:2;19458:6;19454:15;19447:30;19262:222;:::o;19490:366::-;19632:3;19653:67;19717:2;19712:3;19653:67;:::i;:::-;19646:74;;19729:93;19818:3;19729:93;:::i;:::-;19847:2;19842:3;19838:12;19831:19;;19490:366;;;:::o;19862:419::-;20028:4;20066:2;20055:9;20051:18;20043:26;;20115:9;20109:4;20105:20;20101:1;20090:9;20086:17;20079:47;20143:131;20269:4;20143:131;:::i;:::-;20135:139;;19862:419;;;:::o;20287:225::-;20427:34;20423:1;20415:6;20411:14;20404:58;20496:8;20491:2;20483:6;20479:15;20472:33;20287:225;:::o;20518:366::-;20660:3;20681:67;20745:2;20740:3;20681:67;:::i;:::-;20674:74;;20757:93;20846:3;20757:93;:::i;:::-;20875:2;20870:3;20866:12;20859:19;;20518:366;;;:::o;20890:419::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:118::-;21402:24;21420:5;21402:24;:::i;:::-;21397:3;21390:37;21315:118;;:::o;21439:222::-;21532:4;21570:2;21559:9;21555:18;21547:26;;21583:71;21651:1;21640:9;21636:17;21627:6;21583:71;:::i;:::-;21439:222;;;;:::o;21667:220::-;21807:34;21803:1;21795:6;21791:14;21784:58;21876:3;21871:2;21863:6;21859:15;21852:28;21667:220;:::o;21893:366::-;22035:3;22056:67;22120:2;22115:3;22056:67;:::i;:::-;22049:74;;22132:93;22221:3;22132:93;:::i;:::-;22250:2;22245:3;22241:12;22234:19;;21893:366;;;:::o;22265:419::-;22431:4;22469:2;22458:9;22454:18;22446:26;;22518:9;22512:4;22508:20;22504:1;22493:9;22489:17;22482:47;22546:131;22672:4;22546:131;:::i;:::-;22538:139;;22265:419;;;:::o;22690:221::-;22830:34;22826:1;22818:6;22814:14;22807:58;22899:4;22894:2;22886:6;22882:15;22875:29;22690:221;:::o;22917:366::-;23059:3;23080:67;23144:2;23139:3;23080:67;:::i;:::-;23073:74;;23156:93;23245:3;23156:93;:::i;:::-;23274:2;23269:3;23265:12;23258:19;;22917:366;;;:::o;23289:419::-;23455:4;23493:2;23482:9;23478:18;23470:26;;23542:9;23536:4;23532:20;23528:1;23517:9;23513:17;23506:47;23570:131;23696:4;23570:131;:::i;:::-;23562:139;;23289:419;;;:::o;23714:194::-;23754:4;23774:20;23792:1;23774:20;:::i;:::-;23769:25;;23808:20;23826:1;23808:20;:::i;:::-;23803:25;;23852:1;23849;23845:9;23837:17;;23876:1;23870:4;23867:11;23864:37;;;23881:18;;:::i;:::-;23864:37;23714:194;;;;:::o;23914:170::-;24054:22;24050:1;24042:6;24038:14;24031:46;23914:170;:::o;24090:366::-;24232:3;24253:67;24317:2;24312:3;24253:67;:::i;:::-;24246:74;;24329:93;24418:3;24329:93;:::i;:::-;24447:2;24442:3;24438:12;24431:19;;24090:366;;;:::o;24462:419::-;24628:4;24666:2;24655:9;24651:18;24643:26;;24715:9;24709:4;24705:20;24701:1;24690:9;24686:17;24679:47;24743:131;24869:4;24743:131;:::i;:::-;24735:139;;24462:419;;;:::o;24887:166::-;25027:18;25023:1;25015:6;25011:14;25004:42;24887:166;:::o;25059:366::-;25201:3;25222:67;25286:2;25281:3;25222:67;:::i;:::-;25215:74;;25298:93;25387:3;25298:93;:::i;:::-;25416:2;25411:3;25407:12;25400:19;;25059:366;;;:::o;25431:419::-;25597:4;25635:2;25624:9;25620:18;25612:26;;25684:9;25678:4;25674:20;25670:1;25659:9;25655:17;25648:47;25712:131;25838:4;25712:131;:::i;:::-;25704:139;;25431:419;;;:::o
Swarm Source
ipfs://f13a843062379aec58c3732581e444b2ade4fbd50ab54212084a68b3d18779cb
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.