Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 231 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 14397265 | 1457 days ago | IN | 0 ETH | 0.00065571 | ||||
| Transfer | 14397263 | 1457 days ago | IN | 0 ETH | 0.00052944 | ||||
| Pause | 14397257 | 1457 days ago | IN | 0 ETH | 0.00077512 | ||||
| Transfer | 14022417 | 1515 days ago | IN | 0 ETH | 0.00586306 | ||||
| Transfer | 13982199 | 1521 days ago | IN | 0 ETH | 0.00503326 | ||||
| Transfer | 13969536 | 1523 days ago | IN | 0 ETH | 0.00574399 | ||||
| Transfer | 13963700 | 1524 days ago | IN | 0 ETH | 0.00531511 | ||||
| Transfer | 13958901 | 1524 days ago | IN | 0 ETH | 0.00945843 | ||||
| Transfer | 13956727 | 1525 days ago | IN | 0 ETH | 0.00684937 | ||||
| Transfer | 13946525 | 1526 days ago | IN | 0 ETH | 0.00914876 | ||||
| Transfer | 13944570 | 1527 days ago | IN | 0 ETH | 0.00569868 | ||||
| Transfer | 13944214 | 1527 days ago | IN | 0 ETH | 0.00663019 | ||||
| Transfer | 13944213 | 1527 days ago | IN | 0 ETH | 0.00701222 | ||||
| Transfer | 13944210 | 1527 days ago | IN | 0 ETH | 0.00641101 | ||||
| Transfer | 13944120 | 1527 days ago | IN | 0 ETH | 0.00630142 | ||||
| Transfer | 13940213 | 1527 days ago | IN | 0 ETH | 0.01874399 | ||||
| Transfer | 13938930 | 1528 days ago | IN | 0 ETH | 0.00515073 | ||||
| Transfer | 13938443 | 1528 days ago | IN | 0 ETH | 0.00476716 | ||||
| Transfer | 13937544 | 1528 days ago | IN | 0 ETH | 0.00564141 | ||||
| Transfer | 13937531 | 1528 days ago | IN | 0 ETH | 0.00575221 | ||||
| Transfer | 13933489 | 1528 days ago | IN | 0 ETH | 0.00619047 | ||||
| Transfer | 13932113 | 1529 days ago | IN | 0 ETH | 0.00482196 | ||||
| Transfer | 13931919 | 1529 days ago | IN | 0 ETH | 0.00478574 | ||||
| Transfer | 13789005 | 1551 days ago | IN | 0 ETH | 0.00263073 | ||||
| Transfer | 13739398 | 1559 days ago | IN | 0 ETH | 0.00646581 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
COINOVY
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-07-12
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
contract 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;
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
function name() public view virtual override returns (string memory) {
return _name;
}
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
function decimals() public view virtual override returns (uint8) {
return 18;
}
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:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, 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}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), 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}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
_approve(sender, _msgSender(), currentAllowance - 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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][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) {
uint256 currentAllowance = _allowances[_msgSender()][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
_approve(_msgSender(), spender, currentAllowance - subtractedValue);
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is 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:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(address sender, address recipient, uint256 amount) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
_balances[sender] = senderBalance - amount;
_balances[recipient] += amount;
emit Transfer(sender, recipient, 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);
}
/**
* @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");
_balances[account] = accountBalance - amount;
_totalSupply -= amount;
emit Transfer(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 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 to 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 { }
}
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 {
uint256 currentAllowance = allowance(account, _msgSender());
require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
_approve(account, _msgSender(), currentAllowance - 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());
}
}
abstract contract ERC20Pausable is ERC20, Pausable {
/**
* @dev See {ERC20-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
require(!paused(), "ERC20Pausable: token transfer while paused");
}
}
library Strings {
bytes16 private constant alphabet = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = alphabet[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
function hasRole(bytes32 role, address account) external view returns (bool);
function getRoleAdmin(bytes32 role) external view returns (bytes32);
function grantRole(bytes32 role, address account) external;
function revokeRole(bytes32 role, address account) external;
function renounceRole(bytes32 role, address account) external;
}
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping (address => bool) members;
bytes32 adminRole;
}
mapping (bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId
|| super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
*/
function _checkRole(bytes32 role, address account) internal view {
if(!hasRole(role, account)) {
revert(string(abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(uint160(account), 20),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)));
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
_roles[role].adminRole = adminRole;
}
function _grantRole(bytes32 role, address account) private {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
function _revokeRole(bytes32 role, address account) private {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping (bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) { // Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastvalue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastvalue;
// Update the index for the moved value
set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value) private view returns (bool) {
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index) private view returns (bytes32) {
return set._values[index];
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
return _at(set._inner, index);
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value) internal returns (bool) {
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value) internal returns (bool) {
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value) internal view returns (bool) {
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index) internal view returns (address) {
return address(uint160(uint256(_at(set._inner, index))));
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value) internal returns (bool) {
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value) internal view returns (bool) {
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index) internal view returns (uint256) {
return uint256(_at(set._inner, index));
}
}
/**
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
*/
interface IAccessControlEnumerable {
function getRoleMember(bytes32 role, uint256 index) external view returns (address);
function getRoleMemberCount(bytes32 role) external view returns (uint256);
}
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
using EnumerableSet for EnumerableSet.AddressSet;
mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerable).interfaceId
|| super.supportsInterface(interfaceId);
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
return _roleMembers[role].at(index);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
return _roleMembers[role].length();
}
/**
* @dev Overload {grantRole} to track enumerable memberships
*/
function grantRole(bytes32 role, address account) public virtual override {
super.grantRole(role, account);
_roleMembers[role].add(account);
}
/**
* @dev Overload {revokeRole} to track enumerable memberships
*/
function revokeRole(bytes32 role, address account) public virtual override {
super.revokeRole(role, account);
_roleMembers[role].remove(account);
}
/**
* @dev Overload {renounceRole} to track enumerable memberships
*/
function renounceRole(bytes32 role, address account) public virtual override {
super.renounceRole(role, account);
_roleMembers[role].remove(account);
}
/**
* @dev Overload {_setupRole} to track enumerable memberships
*/
function _setupRole(bytes32 role, address account) internal virtual override {
super._setupRole(role, account);
_roleMembers[role].add(account);
}
}
/**
* @dev {ERC20} token, including:
*
* - ability for holders to burn (destroy) their tokens
* - a minter role that allows for token minting (creation)
* - a pauser role that allows to stop all token transfers
*
* This contract uses {AccessControl} to lock permissioned functions using the
* different roles - head to its documentation for details.
*
* The account that deploys the contract will be granted the minter and pauser
* roles, as well as the default admin role, which will let it grant both minter
* and pauser roles to other accounts.
*/
contract COINOVY is Context, AccessControlEnumerable, ERC20Burnable, ERC20Pausable {
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");
/**
* @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
* account that deploys the contract.
*
* See {ERC20-constructor}.
*/
constructor(string memory name, string memory symbol) ERC20(name, symbol) {
_setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
_setupRole(MINTER_ROLE, _msgSender());
_setupRole(PAUSER_ROLE, _msgSender());
}
/**
* @dev Creates `amount` new tokens for `to`.
*
* See {ERC20-_mint}.
*
* Requirements:
*
* - the caller must have the `MINTER_ROLE`.
*/
function mint(address to, uint256 amount) public virtual {
require(hasRole(MINTER_ROLE, _msgSender()), "COINOVY (C2F): must have minter role to mint");
_mint(to, amount);
}
/**
* @dev Pauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_pause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function pause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "COINOVY (C2F): must have pauser role to pause");
_pause();
}
/**
* @dev Unpauses all token transfers.
*
* See {ERC20Pausable} and {Pausable-_unpause}.
*
* Requirements:
*
* - the caller must have the `PAUSER_ROLE`.
*/
function unpause() public virtual {
require(hasRole(PAUSER_ROLE, _msgSender()), "COINOVY (C2F): must have pauser role to unpause");
_unpause();
}
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
super._beforeTokenTransfer(from, to, amount);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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
60806040523480156200001157600080fd5b5060405162003b0238038062003b028339818101604052810190620000379190620004ee565b8181816005908051906020019062000051929190620003cc565b5080600690805190602001906200006a929190620003cc565b5050506000600760006101000a81548160ff021916908315150217905550620000ac6000801b620000a06200013660201b60201c565b6200013e60201b60201c565b620000ed7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6620000e16200013660201b60201c565b6200013e60201b60201c565b6200012e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001226200013660201b60201c565b6200013e60201b60201c565b5050620006d1565b600033905090565b6200015582826200018660201b62000efb1760201c565b6200018181600160008581526020019081526020016000206200019c60201b62000f091790919060201c565b505050565b620001988282620001d460201b60201c565b5050565b6000620001cc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620002c560201b60201c565b905092915050565b620001e682826200033f60201b60201c565b620002c157600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002666200013660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620002d98383620003a960201b60201c565b6200033457826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000339565b600090505b92915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620003da90620005f6565b90600052602060002090601f016020900481019282620003fe57600085556200044a565b82601f106200041957805160ff19168380011785556200044a565b828001600101855582156200044a579182015b82811115620004495782518255916020019190600101906200042c565b5b5090506200045991906200045d565b5090565b5b80821115620004785760008160009055506001016200045e565b5090565b6000620004936200048d846200058a565b62000561565b905082815260208101848484011115620004ac57600080fd5b620004b9848285620005c0565b509392505050565b600082601f830112620004d357600080fd5b8151620004e58482602086016200047c565b91505092915050565b600080604083850312156200050257600080fd5b600083015167ffffffffffffffff8111156200051d57600080fd5b6200052b85828601620004c1565b925050602083015167ffffffffffffffff8111156200054957600080fd5b6200055785828601620004c1565b9150509250929050565b60006200056d62000580565b90506200057b82826200062c565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a762000691565b5b620005b382620006c0565b9050602081019050919050565b60005b83811015620005e0578082015181840152602081019050620005c3565b83811115620005f0576000848401525b50505050565b600060028204905060018216806200060f57607f821691505b6020821081141562000626576200062562000662565b5b50919050565b6200063782620006c0565b810181811067ffffffffffffffff8211171562000659576200065862000691565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61342180620006e16000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061243b565b6105b5565b6040516101f09190612876565b60405180910390f35b61020161062f565b60405161020e91906128ac565b60405180910390f35b610231600480360381019061022c919061235e565b6106c1565b60405161023e9190612876565b60405180910390f35b61024f6106df565b60405161025c9190612b2e565b60405180910390f35b61027f600480360381019061027a919061230f565b6106e9565b60405161028c9190612876565b60405180910390f35b6102af60048036038101906102aa919061239a565b6107ea565b6040516102bc9190612891565b60405180910390f35b6102df60048036038101906102da91906123c3565b610809565b005b6102e961083d565b6040516102f69190612b49565b60405180910390f35b610319600480360381019061031491906123c3565b610846565b005b6103356004803603810190610330919061235e565b61087a565b6040516103429190612876565b60405180910390f35b610353610926565b005b61036f600480360381019061036a919061235e565b6109a0565b005b61038b60048036038101906103869190612464565b610a1e565b005b610395610a32565b6040516103a29190612876565b60405180910390f35b6103c560048036038101906103c091906122aa565b610a49565b6040516103d29190612b2e565b60405180910390f35b6103f560048036038101906103f0919061235e565b610a92565b005b6103ff610b16565b005b61041b600480360381019061041691906123ff565b610b90565b604051610428919061285b565b60405180910390f35b61044b600480360381019061044691906123c3565b610bbf565b6040516104589190612876565b60405180910390f35b610469610c29565b60405161047691906128ac565b60405180910390f35b610487610cbb565b6040516104949190612891565b60405180910390f35b6104b760048036038101906104b2919061235e565b610cc2565b6040516104c49190612876565b60405180910390f35b6104e760048036038101906104e2919061235e565b610db6565b6040516104f49190612876565b60405180910390f35b6105176004803603810190610512919061239a565b610dd4565b6040516105249190612b2e565b60405180910390f35b610535610df8565b6040516105429190612891565b60405180910390f35b610565600480360381019061056091906123c3565b610e1c565b005b610581600480360381019061057c91906122d3565b610e50565b60405161058e9190612b2e565b60405180910390f35b61059f610ed7565b6040516105ac9190612891565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f39565b5b9050919050565b60606005805461063e90612d57565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612d57565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106d56106ce610fb3565b8484610fbb565b6001905092915050565b6000600454905090565b60006106f6848484611186565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610741610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906129ce565b60405180910390fd5b6107de856107cd610fb3565b85846107d99190612c3b565b610fbb565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108138282611408565b6108388160016000858152602001908152602001600020610f0990919063ffffffff16565b505050565b60006012905090565b6108508282611431565b61087581600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b600061091c610887610fb3565b848460036000610895610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109179190612b8b565b610fbb565b6001905092915050565b6109577f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610952610fb3565b610bbf565b610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d9061298e565b60405180910390fd5b61099e6114e4565b565b6109d17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109cc610fb3565b610bbf565b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612a4e565b60405180910390fd5b610a1a8282611586565b5050565b610a2f610a29610fb3565b826116db565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610aa583610aa0610fb3565b610e50565b905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612a0e565b60405180910390fd5b610b0783610af6610fb3565b8484610b029190612c3b565b610fbb565b610b1183836116db565b505050565b610b477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b42610fb3565b610bbf565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d906129ee565b60405180910390fd5b610b8e6118b1565b565b6000610bb7826001600086815260200190815260200160002061195490919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c3890612d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612d57565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b5050505050905090565b6000801b81565b60008060036000610cd1610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590612aae565b60405180910390fd5b610dab610d99610fb3565b858584610da69190612c3b565b610fbb565b600191505092915050565b6000610dca610dc3610fb3565b8484611186565b6001905092915050565b6000610df16001600084815260200190815260200160002061196e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e268282611983565b610e4b81600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f0582826119ac565b5050565b6000610f31836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a8c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fac5750610fab82611afc565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061294e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111799190612b2e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906128ee565b60405180910390fd5b611271838383611b66565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef9061296e565b60405180910390fd5b81816113049190612c3b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612b8b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190612b2e565b60405180910390a350505050565b611411826107ea565b6114228161141d610fb3565b611b76565b61142c83836119ac565b505050565b611439610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612ace565b60405180910390fd5b6114b08282611c13565b5050565b60006114dc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611cf4565b905092915050565b6114ec610a32565b61152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061290e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61156f610fb3565b60405161157c919061285b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612aee565b60405180910390fd5b61160260008383611b66565b80600460008282546116149190612b8b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166a9190612b8b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116cf9190612b2e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612a2e565b60405180910390fd5b61175782600083611b66565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d59061292e565b60405180910390fd5b81816117ea9190612c3b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461183f9190612c3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a49190612b2e565b60405180910390a3505050565b6118b9610a32565b156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906129ae565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861193d610fb3565b60405161194a919061285b565b60405180910390a1565b60006119638360000183611e7a565b60001c905092915050565b600061197c82600001611ecb565b9050919050565b61198c826107ea565b61199d81611998610fb3565b611b76565b6119a78383611c13565b505050565b6119b68282610bbf565b611a8857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2d610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a988383611edc565b611af1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611af6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b71838383611eff565b505050565b611b808282610bbf565b611c0f57611ba58173ffffffffffffffffffffffffffffffffffffffff166014611f57565b611bb38360001c6020611f57565b604051602001611bc4929190612821565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0691906128ac565b60405180910390fd5b5050565b611c1d8282610bbf565b15611cf057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c95610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611e6e576000600182611d269190612c3b565b9050600060018660000180549050611d3e9190612c3b565b9050818114611df9576000866000018281548110611d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611e74565b60009150505b92915050565b6000826000018281548110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611f0a838383612251565b611f12610a32565b15611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990612b0e565b60405180910390fd5b505050565b606060006002836002611f6a9190612be1565b611f749190612b8b565b67ffffffffffffffff811115611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261210d9190612be1565b6121179190612b8b565b90505b6001811115612203577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106121bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121fc90612d2d565b905061211a565b5060008414612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906128ce565b60405180910390fd5b8091505092915050565b505050565b6000813590506122658161338f565b92915050565b60008135905061227a816133a6565b92915050565b60008135905061228f816133bd565b92915050565b6000813590506122a4816133d4565b92915050565b6000602082840312156122bc57600080fd5b60006122ca84828501612256565b91505092915050565b600080604083850312156122e657600080fd5b60006122f485828601612256565b925050602061230585828601612256565b9150509250929050565b60008060006060848603121561232457600080fd5b600061233286828701612256565b935050602061234386828701612256565b925050604061235486828701612295565b9150509250925092565b6000806040838503121561237157600080fd5b600061237f85828601612256565b925050602061239085828601612295565b9150509250929050565b6000602082840312156123ac57600080fd5b60006123ba8482850161226b565b91505092915050565b600080604083850312156123d657600080fd5b60006123e48582860161226b565b92505060206123f585828601612256565b9150509250929050565b6000806040838503121561241257600080fd5b60006124208582860161226b565b925050602061243185828601612295565b9150509250929050565b60006020828403121561244d57600080fd5b600061245b84828501612280565b91505092915050565b60006020828403121561247657600080fd5b600061248484828501612295565b91505092915050565b61249681612c6f565b82525050565b6124a581612c81565b82525050565b6124b481612c8d565b82525050565b60006124c582612b64565b6124cf8185612b6f565b93506124df818560208601612cfa565b6124e881612de7565b840191505092915050565b60006124fe82612b64565b6125088185612b80565b9350612518818560208601612cfa565b80840191505092915050565b6000612531602083612b6f565b915061253c82612df8565b602082019050919050565b6000612554602383612b6f565b915061255f82612e21565b604082019050919050565b6000612577601483612b6f565b915061258282612e70565b602082019050919050565b600061259a602283612b6f565b91506125a582612e99565b604082019050919050565b60006125bd602283612b6f565b91506125c882612ee8565b604082019050919050565b60006125e0602683612b6f565b91506125eb82612f37565b604082019050919050565b6000612603602f83612b6f565b915061260e82612f86565b604082019050919050565b6000612626601083612b6f565b915061263182612fd5565b602082019050919050565b6000612649602883612b6f565b915061265482612ffe565b604082019050919050565b600061266c602d83612b6f565b91506126778261304d565b604082019050919050565b600061268f602483612b6f565b915061269a8261309c565b604082019050919050565b60006126b2602183612b6f565b91506126bd826130eb565b604082019050919050565b60006126d5602c83612b6f565b91506126e08261313a565b604082019050919050565b60006126f8602583612b6f565b915061270382613189565b604082019050919050565b600061271b602483612b6f565b9150612726826131d8565b604082019050919050565b600061273e601783612b80565b915061274982613227565b601782019050919050565b6000612761602583612b6f565b915061276c82613250565b604082019050919050565b6000612784601183612b80565b915061278f8261329f565b601182019050919050565b60006127a7602f83612b6f565b91506127b2826132c8565b604082019050919050565b60006127ca601f83612b6f565b91506127d582613317565b602082019050919050565b60006127ed602a83612b6f565b91506127f882613340565b604082019050919050565b61280c81612ce3565b82525050565b61281b81612ced565b82525050565b600061282c82612731565b915061283882856124f3565b915061284382612777565b915061284f82846124f3565b91508190509392505050565b6000602082019050612870600083018461248d565b92915050565b600060208201905061288b600083018461249c565b92915050565b60006020820190506128a660008301846124ab565b92915050565b600060208201905081810360008301526128c681846124ba565b905092915050565b600060208201905081810360008301526128e781612524565b9050919050565b6000602082019050818103600083015261290781612547565b9050919050565b600060208201905081810360008301526129278161256a565b9050919050565b600060208201905081810360008301526129478161258d565b9050919050565b60006020820190508181036000830152612967816125b0565b9050919050565b60006020820190508181036000830152612987816125d3565b9050919050565b600060208201905081810360008301526129a7816125f6565b9050919050565b600060208201905081810360008301526129c781612619565b9050919050565b600060208201905081810360008301526129e78161263c565b9050919050565b60006020820190508181036000830152612a078161265f565b9050919050565b60006020820190508181036000830152612a2781612682565b9050919050565b60006020820190508181036000830152612a47816126a5565b9050919050565b60006020820190508181036000830152612a67816126c8565b9050919050565b60006020820190508181036000830152612a87816126eb565b9050919050565b60006020820190508181036000830152612aa78161270e565b9050919050565b60006020820190508181036000830152612ac781612754565b9050919050565b60006020820190508181036000830152612ae78161279a565b9050919050565b60006020820190508181036000830152612b07816127bd565b9050919050565b60006020820190508181036000830152612b27816127e0565b9050919050565b6000602082019050612b436000830184612803565b92915050565b6000602082019050612b5e6000830184612812565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b9682612ce3565b9150612ba183612ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd657612bd5612d89565b5b828201905092915050565b6000612bec82612ce3565b9150612bf783612ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3057612c2f612d89565b5b828202905092915050565b6000612c4682612ce3565b9150612c5183612ce3565b925082821015612c6457612c63612d89565b5b828203905092915050565b6000612c7a82612cc3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d18578082015181840152602081019050612cfd565b83811115612d27576000848401525b50505050565b6000612d3882612ce3565b91506000821415612d4c57612d4b612d89565b5b600182039050919050565b60006002820490506001821680612d6f57607f821691505b60208210811415612d8357612d82612db8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665207061757365722060008201527f726f6c6520746f20756e70617573650000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665207061757365722060008201527f726f6c6520746f20706175736500000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665206d696e7465722060008201527f726f6c6520746f206d696e740000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61339881612c6f565b81146133a357600080fd5b50565b6133af81612c8d565b81146133ba57600080fd5b50565b6133c681612c97565b81146133d157600080fd5b50565b6133dd81612ce3565b81146133e857600080fd5b5056fea264697066735822122068155d7d2a3d3264056d63a35146666b51a65959726b465dbcdc0904caf223b664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007434f494e4f56590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034332460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806370a08231116100f9578063a457c2d711610097578063d539139311610071578063d53913931461052d578063d547741f1461054b578063dd62ed3e14610567578063e63ab1e914610597576101c4565b8063a457c2d71461049d578063a9059cbb146104cd578063ca15c873146104fd576101c4565b80639010d07c116100d35780639010d07c1461040157806391d148541461043157806395d89b4114610461578063a217fddf1461047f576101c4565b806370a08231146103ab57806379cc6790146103db5780638456cb59146103f7576101c4565b8063313ce567116101665780633f4ba83a116101405780633f4ba83a1461034b57806340c10f191461035557806342966c68146103715780635c975abb1461038d576101c4565b8063313ce567146102e157806336568abe146102ff578063395093511461031b576101c4565b806318160ddd116101a257806318160ddd1461024757806323b872dd14610265578063248a9ca3146102955780632f2ff15d146102c5576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063095ea7b314610217575b600080fd5b6101e360048036038101906101de919061243b565b6105b5565b6040516101f09190612876565b60405180910390f35b61020161062f565b60405161020e91906128ac565b60405180910390f35b610231600480360381019061022c919061235e565b6106c1565b60405161023e9190612876565b60405180910390f35b61024f6106df565b60405161025c9190612b2e565b60405180910390f35b61027f600480360381019061027a919061230f565b6106e9565b60405161028c9190612876565b60405180910390f35b6102af60048036038101906102aa919061239a565b6107ea565b6040516102bc9190612891565b60405180910390f35b6102df60048036038101906102da91906123c3565b610809565b005b6102e961083d565b6040516102f69190612b49565b60405180910390f35b610319600480360381019061031491906123c3565b610846565b005b6103356004803603810190610330919061235e565b61087a565b6040516103429190612876565b60405180910390f35b610353610926565b005b61036f600480360381019061036a919061235e565b6109a0565b005b61038b60048036038101906103869190612464565b610a1e565b005b610395610a32565b6040516103a29190612876565b60405180910390f35b6103c560048036038101906103c091906122aa565b610a49565b6040516103d29190612b2e565b60405180910390f35b6103f560048036038101906103f0919061235e565b610a92565b005b6103ff610b16565b005b61041b600480360381019061041691906123ff565b610b90565b604051610428919061285b565b60405180910390f35b61044b600480360381019061044691906123c3565b610bbf565b6040516104589190612876565b60405180910390f35b610469610c29565b60405161047691906128ac565b60405180910390f35b610487610cbb565b6040516104949190612891565b60405180910390f35b6104b760048036038101906104b2919061235e565b610cc2565b6040516104c49190612876565b60405180910390f35b6104e760048036038101906104e2919061235e565b610db6565b6040516104f49190612876565b60405180910390f35b6105176004803603810190610512919061239a565b610dd4565b6040516105249190612b2e565b60405180910390f35b610535610df8565b6040516105429190612891565b60405180910390f35b610565600480360381019061056091906123c3565b610e1c565b005b610581600480360381019061057c91906122d3565b610e50565b60405161058e9190612b2e565b60405180910390f35b61059f610ed7565b6040516105ac9190612891565b60405180910390f35b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610628575061062782610f39565b5b9050919050565b60606005805461063e90612d57565b80601f016020809104026020016040519081016040528092919081815260200182805461066a90612d57565b80156106b75780601f1061068c576101008083540402835291602001916106b7565b820191906000526020600020905b81548152906001019060200180831161069a57829003601f168201915b5050505050905090565b60006106d56106ce610fb3565b8484610fbb565b6001905092915050565b6000600454905090565b60006106f6848484611186565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610741610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b8906129ce565b60405180910390fd5b6107de856107cd610fb3565b85846107d99190612c3b565b610fbb565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b6108138282611408565b6108388160016000858152602001908152602001600020610f0990919063ffffffff16565b505050565b60006012905090565b6108508282611431565b61087581600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b600061091c610887610fb3565b848460036000610895610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109179190612b8b565b610fbb565b6001905092915050565b6109577f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610952610fb3565b610bbf565b610996576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098d9061298e565b60405180910390fd5b61099e6114e4565b565b6109d17f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66109cc610fb3565b610bbf565b610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612a4e565b60405180910390fd5b610a1a8282611586565b5050565b610a2f610a29610fb3565b826116db565b50565b6000600760009054906101000a900460ff16905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610aa583610aa0610fb3565b610e50565b905081811015610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190612a0e565b60405180910390fd5b610b0783610af6610fb3565b8484610b029190612c3b565b610fbb565b610b1183836116db565b505050565b610b477f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610b42610fb3565b610bbf565b610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d906129ee565b60405180910390fd5b610b8e6118b1565b565b6000610bb7826001600086815260200190815260200160002061195490919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060068054610c3890612d57565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6490612d57565b8015610cb15780601f10610c8657610100808354040283529160200191610cb1565b820191906000526020600020905b815481529060010190602001808311610c9457829003601f168201915b5050505050905090565b6000801b81565b60008060036000610cd1610fb3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8590612aae565b60405180910390fd5b610dab610d99610fb3565b858584610da69190612c3b565b610fbb565b600191505092915050565b6000610dca610dc3610fb3565b8484611186565b6001905092915050565b6000610df16001600084815260200190815260200160002061196e565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b610e268282611983565b610e4b81600160008581526020019081526020016000206114b490919063ffffffff16565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b610f0582826119ac565b5050565b6000610f31836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611a8c565b905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610fac5750610fab82611afc565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612a8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561109b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110929061294e565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111799190612b2e565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90612a6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906128ee565b60405180910390fd5b611271838383611b66565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef9061296e565b60405180910390fd5b81816113049190612c3b565b600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113969190612b8b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113fa9190612b2e565b60405180910390a350505050565b611411826107ea565b6114228161141d610fb3565b611b76565b61142c83836119ac565b505050565b611439610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90612ace565b60405180910390fd5b6114b08282611c13565b5050565b60006114dc836000018373ffffffffffffffffffffffffffffffffffffffff1660001b611cf4565b905092915050565b6114ec610a32565b61152b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115229061290e565b60405180910390fd5b6000600760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61156f610fb3565b60405161157c919061285b565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ed90612aee565b60405180910390fd5b61160260008383611b66565b80600460008282546116149190612b8b565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461166a9190612b8b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116cf9190612b2e565b60405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290612a2e565b60405180910390fd5b61175782600083611b66565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d59061292e565b60405180910390fd5b81816117ea9190612c3b565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816004600082825461183f9190612c3b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118a49190612b2e565b60405180910390a3505050565b6118b9610a32565b156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f0906129ae565b60405180910390fd5b6001600760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861193d610fb3565b60405161194a919061285b565b60405180910390a1565b60006119638360000183611e7a565b60001c905092915050565b600061197c82600001611ecb565b9050919050565b61198c826107ea565b61199d81611998610fb3565b611b76565b6119a78383611c13565b505050565b6119b68282610bbf565b611a8857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2d610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000611a988383611edc565b611af1578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050611af6565b600090505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611b71838383611eff565b505050565b611b808282610bbf565b611c0f57611ba58173ffffffffffffffffffffffffffffffffffffffff166014611f57565b611bb38360001c6020611f57565b604051602001611bc4929190612821565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0691906128ac565b60405180910390fd5b5050565b611c1d8282610bbf565b15611cf057600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c95610fb3565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114611e6e576000600182611d269190612c3b565b9050600060018660000180549050611d3e9190612c3b565b9050818114611df9576000866000018281548110611d85577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110611dcf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480611e33577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050611e74565b60009150505b92915050565b6000826000018281548110611eb8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b611f0a838383612251565b611f12610a32565b15611f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4990612b0e565b60405180910390fd5b505050565b606060006002836002611f6a9190612be1565b611f749190612b8b565b67ffffffffffffffff811115611fb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612043577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120cd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261210d9190612be1565b6121179190612b8b565b90505b6001811115612203577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061217f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106121bc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806121fc90612d2d565b905061211a565b5060008414612247576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223e906128ce565b60405180910390fd5b8091505092915050565b505050565b6000813590506122658161338f565b92915050565b60008135905061227a816133a6565b92915050565b60008135905061228f816133bd565b92915050565b6000813590506122a4816133d4565b92915050565b6000602082840312156122bc57600080fd5b60006122ca84828501612256565b91505092915050565b600080604083850312156122e657600080fd5b60006122f485828601612256565b925050602061230585828601612256565b9150509250929050565b60008060006060848603121561232457600080fd5b600061233286828701612256565b935050602061234386828701612256565b925050604061235486828701612295565b9150509250925092565b6000806040838503121561237157600080fd5b600061237f85828601612256565b925050602061239085828601612295565b9150509250929050565b6000602082840312156123ac57600080fd5b60006123ba8482850161226b565b91505092915050565b600080604083850312156123d657600080fd5b60006123e48582860161226b565b92505060206123f585828601612256565b9150509250929050565b6000806040838503121561241257600080fd5b60006124208582860161226b565b925050602061243185828601612295565b9150509250929050565b60006020828403121561244d57600080fd5b600061245b84828501612280565b91505092915050565b60006020828403121561247657600080fd5b600061248484828501612295565b91505092915050565b61249681612c6f565b82525050565b6124a581612c81565b82525050565b6124b481612c8d565b82525050565b60006124c582612b64565b6124cf8185612b6f565b93506124df818560208601612cfa565b6124e881612de7565b840191505092915050565b60006124fe82612b64565b6125088185612b80565b9350612518818560208601612cfa565b80840191505092915050565b6000612531602083612b6f565b915061253c82612df8565b602082019050919050565b6000612554602383612b6f565b915061255f82612e21565b604082019050919050565b6000612577601483612b6f565b915061258282612e70565b602082019050919050565b600061259a602283612b6f565b91506125a582612e99565b604082019050919050565b60006125bd602283612b6f565b91506125c882612ee8565b604082019050919050565b60006125e0602683612b6f565b91506125eb82612f37565b604082019050919050565b6000612603602f83612b6f565b915061260e82612f86565b604082019050919050565b6000612626601083612b6f565b915061263182612fd5565b602082019050919050565b6000612649602883612b6f565b915061265482612ffe565b604082019050919050565b600061266c602d83612b6f565b91506126778261304d565b604082019050919050565b600061268f602483612b6f565b915061269a8261309c565b604082019050919050565b60006126b2602183612b6f565b91506126bd826130eb565b604082019050919050565b60006126d5602c83612b6f565b91506126e08261313a565b604082019050919050565b60006126f8602583612b6f565b915061270382613189565b604082019050919050565b600061271b602483612b6f565b9150612726826131d8565b604082019050919050565b600061273e601783612b80565b915061274982613227565b601782019050919050565b6000612761602583612b6f565b915061276c82613250565b604082019050919050565b6000612784601183612b80565b915061278f8261329f565b601182019050919050565b60006127a7602f83612b6f565b91506127b2826132c8565b604082019050919050565b60006127ca601f83612b6f565b91506127d582613317565b602082019050919050565b60006127ed602a83612b6f565b91506127f882613340565b604082019050919050565b61280c81612ce3565b82525050565b61281b81612ced565b82525050565b600061282c82612731565b915061283882856124f3565b915061284382612777565b915061284f82846124f3565b91508190509392505050565b6000602082019050612870600083018461248d565b92915050565b600060208201905061288b600083018461249c565b92915050565b60006020820190506128a660008301846124ab565b92915050565b600060208201905081810360008301526128c681846124ba565b905092915050565b600060208201905081810360008301526128e781612524565b9050919050565b6000602082019050818103600083015261290781612547565b9050919050565b600060208201905081810360008301526129278161256a565b9050919050565b600060208201905081810360008301526129478161258d565b9050919050565b60006020820190508181036000830152612967816125b0565b9050919050565b60006020820190508181036000830152612987816125d3565b9050919050565b600060208201905081810360008301526129a7816125f6565b9050919050565b600060208201905081810360008301526129c781612619565b9050919050565b600060208201905081810360008301526129e78161263c565b9050919050565b60006020820190508181036000830152612a078161265f565b9050919050565b60006020820190508181036000830152612a2781612682565b9050919050565b60006020820190508181036000830152612a47816126a5565b9050919050565b60006020820190508181036000830152612a67816126c8565b9050919050565b60006020820190508181036000830152612a87816126eb565b9050919050565b60006020820190508181036000830152612aa78161270e565b9050919050565b60006020820190508181036000830152612ac781612754565b9050919050565b60006020820190508181036000830152612ae78161279a565b9050919050565b60006020820190508181036000830152612b07816127bd565b9050919050565b60006020820190508181036000830152612b27816127e0565b9050919050565b6000602082019050612b436000830184612803565b92915050565b6000602082019050612b5e6000830184612812565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612b9682612ce3565b9150612ba183612ce3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bd657612bd5612d89565b5b828201905092915050565b6000612bec82612ce3565b9150612bf783612ce3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c3057612c2f612d89565b5b828202905092915050565b6000612c4682612ce3565b9150612c5183612ce3565b925082821015612c6457612c63612d89565b5b828203905092915050565b6000612c7a82612cc3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612d18578082015181840152602081019050612cfd565b83811115612d27576000848401525b50505050565b6000612d3882612ce3565b91506000821415612d4c57612d4b612d89565b5b600182039050919050565b60006002820490506001821680612d6f57607f821691505b60208210811415612d8357612d82612db8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665207061757365722060008201527f726f6c6520746f20756e70617573650000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665207061757365722060008201527f726f6c6520746f20706175736500000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f434f494e4f56592028433246293a206d7573742068617665206d696e7465722060008201527f726f6c6520746f206d696e740000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b61339881612c6f565b81146133a357600080fd5b50565b6133af81612c8d565b81146133ba57600080fd5b50565b6133c681612c97565b81146133d157600080fd5b50565b6133dd81612ce3565b81146133e857600080fd5b5056fea264697066735822122068155d7d2a3d3264056d63a35146666b51a65959726b465dbcdc0904caf223b664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007434f494e4f56590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034332460000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): COINOVY
Arg [1] : symbol (string): C2F
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 434f494e4f565900000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4332460000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
38535:1999:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35617:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1970:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3338:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2291:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3989:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:123;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36988:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2190:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37511:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4820:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40172:168;;;:::i;:::-;;39383:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10114:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11847:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2462:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10524:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39792:162;;;:::i;:::-;;36443:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21360:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2078:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19325:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5538:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36762:134;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38625:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37246:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3040:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38694:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:227;35702:4;35741:42;35726:57;;;:11;:57;;;;:110;;;;35800:36;35824:11;35800:23;:36::i;:::-;35726:110;35719:117;;35617:227;;;:::o;1970:100::-;2024:13;2057:5;2050:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970:100;:::o;3338:169::-;3421:4;3438:39;3447:12;:10;:12::i;:::-;3461:7;3470:6;3438:8;:39::i;:::-;3495:4;3488:11;;3338:169;;;;:::o;2291:108::-;2352:7;2379:12;;2372:19;;2291:108;:::o;3989:422::-;4095:4;4112:36;4122:6;4130:9;4141:6;4112:9;:36::i;:::-;4161:24;4188:11;:19;4200:6;4188:19;;;;;;;;;;;;;;;:33;4208:12;:10;:12::i;:::-;4188:33;;;;;;;;;;;;;;;;4161:60;;4260:6;4240:16;:26;;4232:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;4322:57;4331:6;4339:12;:10;:12::i;:::-;4372:6;4353:16;:25;;;;:::i;:::-;4322:8;:57::i;:::-;4399:4;4392:11;;;3989:422;;;;;:::o;22362:123::-;22428:7;22455:6;:12;22462:4;22455:12;;;;;;;;;;;:22;;;22448:29;;22362:123;;;:::o;36988:165::-;37073:30;37089:4;37095:7;37073:15;:30::i;:::-;37114:31;37137:7;37114:12;:18;37127:4;37114:18;;;;;;;;;;;:22;;:31;;;;:::i;:::-;;36988:165;;:::o;2190:93::-;2248:5;2273:2;2266:9;;2190:93;:::o;37511:174::-;37599:33;37618:4;37624:7;37599:18;:33::i;:::-;37643:34;37669:7;37643:12;:18;37656:4;37643:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;37511:174;;:::o;4820:215::-;4908:4;4925:80;4934:12;:10;:12::i;:::-;4948:7;4994:10;4957:11;:25;4969:12;:10;:12::i;:::-;4957:25;;;;;;;;;;;;;;;:34;4983:7;4957:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;4925:8;:80::i;:::-;5023:4;5016:11;;4820:215;;;;:::o;40172:168::-;40225:34;38732:24;40246:12;:10;:12::i;:::-;40225:7;:34::i;:::-;40217:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:10;:8;:10::i;:::-;40172:168::o;39383:195::-;39459:34;38663:24;39480:12;:10;:12::i;:::-;39459:7;:34::i;:::-;39451:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;39553:17;39559:2;39563:6;39553:5;:17::i;:::-;39383:195;;:::o;10114:91::-;10170:27;10176:12;:10;:12::i;:::-;10190:6;10170:5;:27::i;:::-;10114:91;:::o;11847:86::-;11894:4;11918:7;;;;;;;;;;;11911:14;;11847:86;:::o;2462:127::-;2536:7;2563:9;:18;2573:7;2563:18;;;;;;;;;;;;;;;;2556:25;;2462:127;;;:::o;10524:332::-;10601:24;10628:32;10638:7;10647:12;:10;:12::i;:::-;10628:9;:32::i;:::-;10601:59;;10699:6;10679:16;:26;;10671:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;10757:58;10766:7;10775:12;:10;:12::i;:::-;10808:6;10789:16;:25;;;;:::i;:::-;10757:8;:58::i;:::-;10826:22;10832:7;10841:6;10826:5;:22::i;:::-;10524:332;;;:::o;39792:162::-;39843:34;38732:24;39864:12;:10;:12::i;:::-;39843:7;:34::i;:::-;39835:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;39938:8;:6;:8::i;:::-;39792:162::o;36443:145::-;36525:7;36552:28;36574:5;36552:12;:18;36565:4;36552:18;;;;;;;;;;;:21;;:28;;;;:::i;:::-;36545:35;;36443:145;;;;:::o;21360:139::-;21438:4;21462:6;:12;21469:4;21462:12;;;;;;;;;;;:20;;:29;21483:7;21462:29;;;;;;;;;;;;;;;;;;;;;;;;;21455:36;;21360:139;;;;:::o;2078:104::-;2134:13;2167:7;2160:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2078:104;:::o;19325:49::-;19370:4;19325:49;;;:::o;5538:377::-;5631:4;5648:24;5675:11;:25;5687:12;:10;:12::i;:::-;5675:25;;;;;;;;;;;;;;;:34;5701:7;5675:34;;;;;;;;;;;;;;;;5648:61;;5748:15;5728:16;:35;;5720:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5816:67;5825:12;:10;:12::i;:::-;5839:7;5867:15;5848:16;:34;;;;:::i;:::-;5816:8;:67::i;:::-;5903:4;5896:11;;;5538:377;;;;:::o;2802:175::-;2888:4;2905:42;2915:12;:10;:12::i;:::-;2929:9;2940:6;2905:9;:42::i;:::-;2965:4;2958:11;;2802:175;;;;:::o;36762:134::-;36834:7;36861:27;:12;:18;36874:4;36861:18;;;;;;;;;;;:25;:27::i;:::-;36854:34;;36762:134;;;:::o;38625:62::-;38663:24;38625:62;:::o;37246:170::-;37332:31;37349:4;37355:7;37332:16;:31::i;:::-;37374:34;37400:7;37374:12;:18;37387:4;37374:18;;;;;;;;;;;:25;;:34;;;;:::i;:::-;;37246:170;;:::o;3040:151::-;3129:7;3156:11;:18;3168:5;3156:18;;;;;;;;;;;;;;;:27;3175:7;3156:27;;;;;;;;;;;;;;;;3149:34;;3040:151;;;;:::o;38694:62::-;38732:24;38694:62;:::o;24596:112::-;24675:25;24686:4;24692:7;24675:10;:25::i;:::-;24596:112;;:::o;31855:152::-;31925:4;31949:50;31954:3;:10;;31990:5;31974:23;;31966:32;;31949:4;:50::i;:::-;31942:57;;31855:152;;;;:::o;21051:217::-;21136:4;21175:32;21160:47;;;:11;:47;;;;:100;;;;21224:36;21248:11;21224:23;:36::i;:::-;21160:100;21153:107;;21051:217;;;:::o;95:98::-;148:7;175:10;168:17;;95:98;:::o;8899:346::-;9018:1;9001:19;;:5;:19;;;;8993:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9099:1;9080:21;;:7;:21;;;;9072:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9183:6;9153:11;:18;9165:5;9153:18;;;;;;;;;;;;;;;:27;9172:7;9153:27;;;;;;;;;;;;;;;:36;;;;9221:7;9205:32;;9214:5;9205:32;;;9230:6;9205:32;;;;;;:::i;:::-;;;;;;;;8899:346;;;:::o;6405:604::-;6529:1;6511:20;;:6;:20;;;;6503:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6613:1;6592:23;;:9;:23;;;;6584:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6668:47;6689:6;6697:9;6708:6;6668:20;:47::i;:::-;6728:21;6752:9;:17;6762:6;6752:17;;;;;;;;;;;;;;;;6728:41;;6805:6;6788:13;:23;;6780:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;6901:6;6885:13;:22;;;;:::i;:::-;6865:9;:17;6875:6;6865:17;;;;;;;;;;;;;;;:42;;;;6942:6;6918:9;:20;6928:9;6918:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;6983:9;6966:35;;6975:6;6966:35;;;6994:6;6966:35;;;;;;:::i;:::-;;;;;;;;6405:604;;;;:::o;22747:147::-;22830:18;22843:4;22830:12;:18::i;:::-;20929:30;20940:4;20946:12;:10;:12::i;:::-;20929:10;:30::i;:::-;22861:25:::1;22872:4;22878:7;22861:10;:25::i;:::-;22747:147:::0;;;:::o;23795:218::-;23902:12;:10;:12::i;:::-;23891:23;;:7;:23;;;23883:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;23979:26;23991:4;23997:7;23979:11;:26::i;:::-;23795:218;;:::o;32183:158::-;32256:4;32280:53;32288:3;:10;;32324:5;32308:23;;32300:32;;32280:7;:53::i;:::-;32273:60;;32183:158;;;;:::o;12906:120::-;12450:8;:6;:8::i;:::-;12442:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;12975:5:::1;12965:7;;:15;;;;;;;;;;;;;;;;;;12996:22;13005:12;:10;:12::i;:::-;12996:22;;;;;;:::i;:::-;;;;;;;;12906:120::o:0;7296:338::-;7399:1;7380:21;;:7;:21;;;;7372:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;7450:49;7479:1;7483:7;7492:6;7450:20;:49::i;:::-;7528:6;7512:12;;:22;;;;;;;:::i;:::-;;;;;;;;7567:6;7545:9;:18;7555:7;7545:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;7610:7;7589:37;;7606:1;7589:37;;;7619:6;7589:37;;;;;;:::i;:::-;;;;;;;;7296:338;;:::o;7967:494::-;8070:1;8051:21;;:7;:21;;;;8043:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8123:49;8144:7;8161:1;8165:6;8123:20;:49::i;:::-;8185:22;8210:9;:18;8220:7;8210:18;;;;;;;;;;;;;;;;8185:43;;8265:6;8247:14;:24;;8239:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;8359:6;8342:14;:23;;;;:::i;:::-;8321:9;:18;8331:7;8321:18;;;;;;;;;;;;;;;:44;;;;8392:6;8376:12;;:22;;;;;;;:::i;:::-;;;;;;;;8442:1;8416:37;;8425:7;8416:37;;;8446:6;8416:37;;;;;;:::i;:::-;;;;;;;;7967:494;;;:::o;12647:118::-;12173:8;:6;:8::i;:::-;12172:9;12164:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;12717:4:::1;12707:7;;:14;;;;;;;;;;;;;;;;;;12737:20;12744:12;:10;:12::i;:::-;12737:20;;;;;;:::i;:::-;;;;;;;;12647:118::o:0;33141:158::-;33215:7;33266:22;33270:3;:10;;33282:5;33266:3;:22::i;:::-;33258:31;;33235:56;;33141:158;;;;:::o;32680:117::-;32743:7;32770:19;32778:3;:10;;32770:7;:19::i;:::-;32763:26;;32680:117;;;:::o;23139:149::-;23223:18;23236:4;23223:12;:18::i;:::-;20929:30;20940:4;20946:12;:10;:12::i;:::-;20929:10;:30::i;:::-;23254:26:::1;23266:4;23272:7;23254:11;:26::i;:::-;23139:149:::0;;;:::o;25043:229::-;25118:22;25126:4;25132:7;25118;:22::i;:::-;25113:152;;25189:4;25157:6;:12;25164:4;25157:12;;;;;;;;;;;:20;;:29;25178:7;25157:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;25240:12;:10;:12::i;:::-;25213:40;;25231:7;25213:40;;25225:4;25213:40;;;;;;;;;;25113:152;25043:229;;:::o;27140:414::-;27203:4;27225:21;27235:3;27240:5;27225:9;:21::i;:::-;27220:327;;27263:3;:11;;27280:5;27263:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27446:3;:11;;:18;;;;27424:3;:12;;:19;27437:5;27424:19;;;;;;;;;;;:40;;;;27486:4;27479:11;;;;27220:327;27530:5;27523:12;;27140:414;;;;;:::o;16875:157::-;16960:4;16999:25;16984:40;;;:11;:40;;;;16977:47;;16875:157;;;:::o;40348:183::-;40479:44;40506:4;40512:2;40516:6;40479:26;:44::i;:::-;40348:183;;;:::o;21789:384::-;21869:22;21877:4;21883:7;21869;:22::i;:::-;21865:301;;22001:41;22029:7;22001:41;;22039:2;22001:19;:41::i;:::-;22099:38;22127:4;22119:13;;22134:2;22099:19;:38::i;:::-;21922:230;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21908:246;;;;;;;;;;;:::i;:::-;;;;;;;;21865:301;21789:384;;:::o;25280:230::-;25355:22;25363:4;25369:7;25355;:22::i;:::-;25351:152;;;25426:5;25394:6;:12;25401:4;25394:12;;;;;;;;;;;:20;;:29;25415:7;25394:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;25478:12;:10;:12::i;:::-;25451:40;;25469:7;25451:40;;25463:4;25451:40;;;;;;;;;;25351:152;25280:230;;:::o;27730:1407::-;27796:4;27914:18;27935:3;:12;;:19;27948:5;27935:19;;;;;;;;;;;;27914:40;;27985:1;27971:10;:15;27967:1163;;28333:21;28370:1;28357:10;:14;;;;:::i;:::-;28333:38;;28386:17;28427:1;28406:3;:11;;:18;;;;:22;;;;:::i;:::-;28386:42;;28462:13;28449:9;:26;28445:405;;28496:17;28516:3;:11;;28528:9;28516:22;;;;;;;;;;;;;;;;;;;;;;;;28496:42;;28670:9;28641:3;:11;;28653:13;28641:26;;;;;;;;;;;;;;;;;;;;;;;:38;;;;28781:10;28755:3;:12;;:23;28768:9;28755:23;;;;;;;;;;;:36;;;;28445:405;;28931:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29026:3;:12;;:19;29039:5;29026:19;;;;;;;;;;;29019:26;;;29069:4;29062:11;;;;;;;27967:1163;29113:5;29106:12;;;27730:1407;;;;;:::o;29891:120::-;29958:7;29985:3;:11;;29997:5;29985:18;;;;;;;;;;;;;;;;;;;;;;;;29978:25;;29891:120;;;;:::o;29438:109::-;29494:7;29521:3;:11;;:18;;;;29514:25;;29438:109;;;:::o;29223:129::-;29296:4;29343:1;29320:3;:12;;:19;29333:5;29320:19;;;;;;;;;;;;:24;;29313:31;;29223:129;;;;:::o;13237:238::-;13346:44;13373:4;13379:2;13383:6;13346:26;:44::i;:::-;13412:8;:6;:8::i;:::-;13411:9;13403:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13237:238;;;:::o;14969:447::-;15044:13;15070:19;15115:1;15106:6;15102:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15092:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15070:47;;15128:15;:6;15135:1;15128:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;15154;:6;15161:1;15154:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;15185:9;15210:1;15201:6;15197:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;15185:26;;15180:131;15217:1;15213;:5;15180:131;;;15252:8;15269:3;15261:5;:11;15252:21;;;;;;;;;;;;;;;;;;15240:6;15247:1;15240:9;;;;;;;;;;;;;;;;;;;:33;;;;;;;;;;;15298:1;15288:11;;;;;15220:3;;;;:::i;:::-;;;15180:131;;;;15338:1;15329:5;:10;15321:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;15401:6;15387:21;;;14969:447;;;;:::o;9848:92::-;;;;:::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:137::-;342:5;380:6;367:20;358:29;;396:32;422:5;396:32;:::i;:::-;348:86;;;;:::o;440:139::-;486:5;524:6;511:20;502:29;;540:33;567:5;540:33;:::i;:::-;492:87;;;;:::o;585:262::-;644:6;693:2;681:9;672:7;668:23;664:32;661:2;;;709:1;706;699:12;661:2;752:1;777:53;822:7;813:6;802:9;798:22;777:53;:::i;:::-;767:63;;723:117;651:196;;;;:::o;853:407::-;921:6;929;978:2;966:9;957:7;953:23;949:32;946:2;;;994:1;991;984:12;946:2;1037:1;1062:53;1107:7;1098:6;1087:9;1083:22;1062:53;:::i;:::-;1052:63;;1008:117;1164:2;1190:53;1235:7;1226:6;1215:9;1211:22;1190:53;:::i;:::-;1180:63;;1135:118;936:324;;;;;:::o;1266:552::-;1343:6;1351;1359;1408:2;1396:9;1387:7;1383:23;1379:32;1376:2;;;1424:1;1421;1414:12;1376:2;1467:1;1492:53;1537:7;1528:6;1517:9;1513:22;1492:53;:::i;:::-;1482:63;;1438:117;1594:2;1620:53;1665:7;1656:6;1645:9;1641:22;1620:53;:::i;:::-;1610:63;;1565:118;1722:2;1748:53;1793:7;1784:6;1773:9;1769:22;1748:53;:::i;:::-;1738:63;;1693:118;1366:452;;;;;:::o;1824:407::-;1892:6;1900;1949:2;1937:9;1928:7;1924:23;1920:32;1917:2;;;1965:1;1962;1955:12;1917:2;2008:1;2033:53;2078:7;2069:6;2058:9;2054:22;2033:53;:::i;:::-;2023:63;;1979:117;2135:2;2161:53;2206:7;2197:6;2186:9;2182:22;2161:53;:::i;:::-;2151:63;;2106:118;1907:324;;;;;:::o;2237:262::-;2296:6;2345:2;2333:9;2324:7;2320:23;2316:32;2313:2;;;2361:1;2358;2351:12;2313:2;2404:1;2429:53;2474:7;2465:6;2454:9;2450:22;2429:53;:::i;:::-;2419:63;;2375:117;2303:196;;;;:::o;2505:407::-;2573:6;2581;2630:2;2618:9;2609:7;2605:23;2601:32;2598:2;;;2646:1;2643;2636:12;2598:2;2689:1;2714:53;2759:7;2750:6;2739:9;2735:22;2714:53;:::i;:::-;2704:63;;2660:117;2816:2;2842:53;2887:7;2878:6;2867:9;2863:22;2842:53;:::i;:::-;2832:63;;2787:118;2588:324;;;;;:::o;2918:407::-;2986:6;2994;3043:2;3031:9;3022:7;3018:23;3014:32;3011:2;;;3059:1;3056;3049:12;3011:2;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;3229:2;3255:53;3300:7;3291:6;3280:9;3276:22;3255:53;:::i;:::-;3245:63;;3200:118;3001:324;;;;;:::o;3331:260::-;3389:6;3438:2;3426:9;3417:7;3413:23;3409:32;3406:2;;;3454:1;3451;3444:12;3406:2;3497:1;3522:52;3566:7;3557:6;3546:9;3542:22;3522:52;:::i;:::-;3512:62;;3468:116;3396:195;;;;:::o;3597:262::-;3656:6;3705:2;3693:9;3684:7;3680:23;3676:32;3673:2;;;3721:1;3718;3711:12;3673:2;3764:1;3789:53;3834:7;3825:6;3814:9;3810:22;3789:53;:::i;:::-;3779:63;;3735:117;3663:196;;;;:::o;3865:118::-;3952:24;3970:5;3952:24;:::i;:::-;3947:3;3940:37;3930:53;;:::o;3989:109::-;4070:21;4085:5;4070:21;:::i;:::-;4065:3;4058:34;4048:50;;:::o;4104:118::-;4191:24;4209:5;4191:24;:::i;:::-;4186:3;4179:37;4169:53;;:::o;4228:364::-;4316:3;4344:39;4377:5;4344:39;:::i;:::-;4399:71;4463:6;4458:3;4399:71;:::i;:::-;4392:78;;4479:52;4524:6;4519:3;4512:4;4505:5;4501:16;4479:52;:::i;:::-;4556:29;4578:6;4556:29;:::i;:::-;4551:3;4547:39;4540:46;;4320:272;;;;;:::o;4598:377::-;4704:3;4732:39;4765:5;4732:39;:::i;:::-;4787:89;4869:6;4864:3;4787:89;:::i;:::-;4780:96;;4885:52;4930:6;4925:3;4918:4;4911:5;4907:16;4885:52;:::i;:::-;4962:6;4957:3;4953:16;4946:23;;4708:267;;;;;:::o;4981:366::-;5123:3;5144:67;5208:2;5203:3;5144:67;:::i;:::-;5137:74;;5220:93;5309:3;5220:93;:::i;:::-;5338:2;5333:3;5329:12;5322:19;;5127:220;;;:::o;5353:366::-;5495:3;5516:67;5580:2;5575:3;5516:67;:::i;:::-;5509:74;;5592:93;5681:3;5592:93;:::i;:::-;5710:2;5705:3;5701:12;5694:19;;5499:220;;;:::o;5725:366::-;5867:3;5888:67;5952:2;5947:3;5888:67;:::i;:::-;5881:74;;5964:93;6053:3;5964:93;:::i;:::-;6082:2;6077:3;6073:12;6066:19;;5871:220;;;:::o;6097:366::-;6239:3;6260:67;6324:2;6319:3;6260:67;:::i;:::-;6253:74;;6336:93;6425:3;6336:93;:::i;:::-;6454:2;6449:3;6445:12;6438:19;;6243:220;;;:::o;6469:366::-;6611:3;6632:67;6696:2;6691:3;6632:67;:::i;:::-;6625:74;;6708:93;6797:3;6708:93;:::i;:::-;6826:2;6821:3;6817:12;6810:19;;6615:220;;;:::o;6841:366::-;6983:3;7004:67;7068:2;7063:3;7004:67;:::i;:::-;6997:74;;7080:93;7169:3;7080:93;:::i;:::-;7198:2;7193:3;7189:12;7182:19;;6987:220;;;:::o;7213:366::-;7355:3;7376:67;7440:2;7435:3;7376:67;:::i;:::-;7369:74;;7452:93;7541:3;7452:93;:::i;:::-;7570:2;7565:3;7561:12;7554:19;;7359:220;;;:::o;7585:366::-;7727:3;7748:67;7812:2;7807:3;7748:67;:::i;:::-;7741:74;;7824:93;7913:3;7824:93;:::i;:::-;7942:2;7937:3;7933:12;7926:19;;7731:220;;;:::o;7957:366::-;8099:3;8120:67;8184:2;8179:3;8120:67;:::i;:::-;8113:74;;8196:93;8285:3;8196:93;:::i;:::-;8314:2;8309:3;8305:12;8298:19;;8103:220;;;:::o;8329:366::-;8471:3;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8475:220;;;:::o;8701:366::-;8843:3;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8940:93;9029:3;8940:93;:::i;:::-;9058:2;9053:3;9049:12;9042:19;;8847:220;;;:::o;9073:366::-;9215:3;9236:67;9300:2;9295:3;9236:67;:::i;:::-;9229:74;;9312:93;9401:3;9312:93;:::i;:::-;9430:2;9425:3;9421:12;9414:19;;9219:220;;;:::o;9445:366::-;9587:3;9608:67;9672:2;9667:3;9608:67;:::i;:::-;9601:74;;9684:93;9773:3;9684:93;:::i;:::-;9802:2;9797:3;9793:12;9786:19;;9591:220;;;:::o;9817:366::-;9959:3;9980:67;10044:2;10039:3;9980:67;:::i;:::-;9973:74;;10056:93;10145:3;10056:93;:::i;:::-;10174:2;10169:3;10165:12;10158:19;;9963:220;;;:::o;10189:366::-;10331:3;10352:67;10416:2;10411:3;10352:67;:::i;:::-;10345:74;;10428:93;10517:3;10428:93;:::i;:::-;10546:2;10541:3;10537:12;10530:19;;10335:220;;;:::o;10561:402::-;10721:3;10742:85;10824:2;10819:3;10742:85;:::i;:::-;10735:92;;10836:93;10925:3;10836:93;:::i;:::-;10954:2;10949:3;10945:12;10938:19;;10725:238;;;:::o;10969:366::-;11111:3;11132:67;11196:2;11191:3;11132:67;:::i;:::-;11125:74;;11208:93;11297:3;11208:93;:::i;:::-;11326:2;11321:3;11317:12;11310:19;;11115:220;;;:::o;11341:402::-;11501:3;11522:85;11604:2;11599:3;11522:85;:::i;:::-;11515:92;;11616:93;11705:3;11616:93;:::i;:::-;11734:2;11729:3;11725:12;11718:19;;11505:238;;;:::o;11749:366::-;11891:3;11912:67;11976:2;11971:3;11912:67;:::i;:::-;11905:74;;11988:93;12077:3;11988:93;:::i;:::-;12106:2;12101:3;12097:12;12090:19;;11895:220;;;:::o;12121:366::-;12263:3;12284:67;12348:2;12343:3;12284:67;:::i;:::-;12277:74;;12360:93;12449:3;12360:93;:::i;:::-;12478:2;12473:3;12469:12;12462:19;;12267:220;;;:::o;12493:366::-;12635:3;12656:67;12720:2;12715:3;12656:67;:::i;:::-;12649:74;;12732:93;12821:3;12732:93;:::i;:::-;12850:2;12845:3;12841:12;12834:19;;12639:220;;;:::o;12865:118::-;12952:24;12970:5;12952:24;:::i;:::-;12947:3;12940:37;12930:53;;:::o;12989:112::-;13072:22;13088:5;13072:22;:::i;:::-;13067:3;13060:35;13050:51;;:::o;13107:967::-;13489:3;13511:148;13655:3;13511:148;:::i;:::-;13504:155;;13676:95;13767:3;13758:6;13676:95;:::i;:::-;13669:102;;13788:148;13932:3;13788:148;:::i;:::-;13781:155;;13953:95;14044:3;14035:6;13953:95;:::i;:::-;13946:102;;14065:3;14058:10;;13493:581;;;;;:::o;14080:222::-;14173:4;14211:2;14200:9;14196:18;14188:26;;14224:71;14292:1;14281:9;14277:17;14268:6;14224:71;:::i;:::-;14178:124;;;;:::o;14308:210::-;14395:4;14433:2;14422:9;14418:18;14410:26;;14446:65;14508:1;14497:9;14493:17;14484:6;14446:65;:::i;:::-;14400:118;;;;:::o;14524:222::-;14617:4;14655:2;14644:9;14640:18;14632:26;;14668:71;14736:1;14725:9;14721:17;14712:6;14668:71;:::i;:::-;14622:124;;;;:::o;14752:313::-;14865:4;14903:2;14892:9;14888:18;14880:26;;14952:9;14946:4;14942:20;14938:1;14927:9;14923:17;14916:47;14980:78;15053:4;15044:6;14980:78;:::i;:::-;14972:86;;14870:195;;;;:::o;15071:419::-;15237:4;15275:2;15264:9;15260:18;15252:26;;15324:9;15318:4;15314:20;15310:1;15299:9;15295:17;15288:47;15352:131;15478:4;15352:131;:::i;:::-;15344:139;;15242:248;;;:::o;15496:419::-;15662:4;15700:2;15689:9;15685:18;15677:26;;15749:9;15743:4;15739:20;15735:1;15724:9;15720:17;15713:47;15777:131;15903:4;15777:131;:::i;:::-;15769:139;;15667:248;;;:::o;15921:419::-;16087:4;16125:2;16114:9;16110:18;16102:26;;16174:9;16168:4;16164:20;16160:1;16149:9;16145:17;16138:47;16202:131;16328:4;16202:131;:::i;:::-;16194:139;;16092:248;;;:::o;16346:419::-;16512:4;16550:2;16539:9;16535:18;16527:26;;16599:9;16593:4;16589:20;16585:1;16574:9;16570:17;16563:47;16627:131;16753:4;16627:131;:::i;:::-;16619:139;;16517:248;;;:::o;16771:419::-;16937:4;16975:2;16964:9;16960:18;16952:26;;17024:9;17018:4;17014:20;17010:1;16999:9;16995:17;16988:47;17052:131;17178:4;17052:131;:::i;:::-;17044:139;;16942:248;;;:::o;17196:419::-;17362:4;17400:2;17389:9;17385:18;17377:26;;17449:9;17443:4;17439:20;17435:1;17424:9;17420:17;17413:47;17477:131;17603:4;17477:131;:::i;:::-;17469:139;;17367:248;;;:::o;17621:419::-;17787:4;17825:2;17814:9;17810:18;17802:26;;17874:9;17868:4;17864:20;17860:1;17849:9;17845:17;17838:47;17902:131;18028:4;17902:131;:::i;:::-;17894:139;;17792:248;;;:::o;18046:419::-;18212:4;18250:2;18239:9;18235:18;18227:26;;18299:9;18293:4;18289:20;18285:1;18274:9;18270:17;18263:47;18327:131;18453:4;18327:131;:::i;:::-;18319:139;;18217:248;;;:::o;18471:419::-;18637:4;18675:2;18664:9;18660:18;18652:26;;18724:9;18718:4;18714:20;18710:1;18699:9;18695:17;18688:47;18752:131;18878:4;18752:131;:::i;:::-;18744:139;;18642:248;;;:::o;18896:419::-;19062:4;19100:2;19089:9;19085:18;19077:26;;19149:9;19143:4;19139:20;19135:1;19124:9;19120:17;19113:47;19177:131;19303:4;19177:131;:::i;:::-;19169:139;;19067:248;;;:::o;19321:419::-;19487:4;19525:2;19514:9;19510:18;19502:26;;19574:9;19568:4;19564:20;19560:1;19549:9;19545:17;19538:47;19602:131;19728:4;19602:131;:::i;:::-;19594:139;;19492:248;;;:::o;19746:419::-;19912:4;19950:2;19939:9;19935:18;19927:26;;19999:9;19993:4;19989:20;19985:1;19974:9;19970:17;19963:47;20027:131;20153:4;20027:131;:::i;:::-;20019:139;;19917:248;;;:::o;20171:419::-;20337:4;20375:2;20364:9;20360:18;20352:26;;20424:9;20418:4;20414:20;20410:1;20399:9;20395:17;20388:47;20452:131;20578:4;20452:131;:::i;:::-;20444:139;;20342:248;;;:::o;20596:419::-;20762:4;20800:2;20789:9;20785:18;20777:26;;20849:9;20843:4;20839:20;20835:1;20824:9;20820:17;20813:47;20877:131;21003:4;20877:131;:::i;:::-;20869:139;;20767:248;;;:::o;21021:419::-;21187:4;21225:2;21214:9;21210:18;21202:26;;21274:9;21268:4;21264:20;21260:1;21249:9;21245:17;21238:47;21302:131;21428:4;21302:131;:::i;:::-;21294:139;;21192:248;;;:::o;21446:419::-;21612:4;21650:2;21639:9;21635:18;21627:26;;21699:9;21693:4;21689:20;21685:1;21674:9;21670:17;21663:47;21727:131;21853:4;21727:131;:::i;:::-;21719:139;;21617:248;;;:::o;21871:419::-;22037:4;22075:2;22064:9;22060:18;22052:26;;22124:9;22118:4;22114:20;22110:1;22099:9;22095:17;22088:47;22152:131;22278:4;22152:131;:::i;:::-;22144:139;;22042:248;;;:::o;22296:419::-;22462:4;22500:2;22489:9;22485:18;22477:26;;22549:9;22543:4;22539:20;22535:1;22524:9;22520:17;22513:47;22577:131;22703:4;22577:131;:::i;:::-;22569:139;;22467:248;;;:::o;22721:419::-;22887:4;22925:2;22914:9;22910:18;22902:26;;22974:9;22968:4;22964:20;22960:1;22949:9;22945:17;22938:47;23002:131;23128:4;23002:131;:::i;:::-;22994:139;;22892:248;;;:::o;23146:222::-;23239:4;23277:2;23266:9;23262:18;23254:26;;23290:71;23358:1;23347:9;23343:17;23334:6;23290:71;:::i;:::-;23244:124;;;;:::o;23374:214::-;23463:4;23501:2;23490:9;23486:18;23478:26;;23514:67;23578:1;23567:9;23563:17;23554:6;23514:67;:::i;:::-;23468:120;;;;:::o;23594:99::-;23646:6;23680:5;23674:12;23664:22;;23653:40;;;:::o;23699:169::-;23783:11;23817:6;23812:3;23805:19;23857:4;23852:3;23848:14;23833:29;;23795:73;;;;:::o;23874:148::-;23976:11;24013:3;23998:18;;23988:34;;;;:::o;24028:305::-;24068:3;24087:20;24105:1;24087:20;:::i;:::-;24082:25;;24121:20;24139:1;24121:20;:::i;:::-;24116:25;;24275:1;24207:66;24203:74;24200:1;24197:81;24194:2;;;24281:18;;:::i;:::-;24194:2;24325:1;24322;24318:9;24311:16;;24072:261;;;;:::o;24339:348::-;24379:7;24402:20;24420:1;24402:20;:::i;:::-;24397:25;;24436:20;24454:1;24436:20;:::i;:::-;24431:25;;24624:1;24556:66;24552:74;24549:1;24546:81;24541:1;24534:9;24527:17;24523:105;24520:2;;;24631:18;;:::i;:::-;24520:2;24679:1;24676;24672:9;24661:20;;24387:300;;;;:::o;24693:191::-;24733:4;24753:20;24771:1;24753:20;:::i;:::-;24748:25;;24787:20;24805:1;24787:20;:::i;:::-;24782:25;;24826:1;24823;24820:8;24817:2;;;24831:18;;:::i;:::-;24817:2;24876:1;24873;24869:9;24861:17;;24738:146;;;;:::o;24890:96::-;24927:7;24956:24;24974:5;24956:24;:::i;:::-;24945:35;;24935:51;;;:::o;24992:90::-;25026:7;25069:5;25062:13;25055:21;25044:32;;25034:48;;;:::o;25088:77::-;25125:7;25154:5;25143:16;;25133:32;;;:::o;25171:149::-;25207:7;25247:66;25240:5;25236:78;25225:89;;25215:105;;;:::o;25326:126::-;25363:7;25403:42;25396:5;25392:54;25381:65;;25371:81;;;:::o;25458:77::-;25495:7;25524:5;25513:16;;25503:32;;;:::o;25541:86::-;25576:7;25616:4;25609:5;25605:16;25594:27;;25584:43;;;:::o;25633:307::-;25701:1;25711:113;25725:6;25722:1;25719:13;25711:113;;;25810:1;25805:3;25801:11;25795:18;25791:1;25786:3;25782:11;25775:39;25747:2;25744:1;25740:10;25735:15;;25711:113;;;25842:6;25839:1;25836:13;25833:2;;;25922:1;25913:6;25908:3;25904:16;25897:27;25833:2;25682:258;;;;:::o;25946:171::-;25985:3;26008:24;26026:5;26008:24;:::i;:::-;25999:33;;26054:4;26047:5;26044:15;26041:2;;;26062:18;;:::i;:::-;26041:2;26109:1;26102:5;26098:13;26091:20;;25989:128;;;:::o;26123:320::-;26167:6;26204:1;26198:4;26194:12;26184:22;;26251:1;26245:4;26241:12;26272:18;26262:2;;26328:4;26320:6;26316:17;26306:27;;26262:2;26390;26382:6;26379:14;26359:18;26356:38;26353:2;;;26409:18;;:::i;:::-;26353:2;26174:269;;;;:::o;26449:180::-;26497:77;26494:1;26487:88;26594:4;26591:1;26584:15;26618:4;26615:1;26608:15;26635:180;26683:77;26680:1;26673:88;26780:4;26777:1;26770:15;26804:4;26801:1;26794:15;26821:102;26862:6;26913:2;26909:7;26904:2;26897:5;26893:14;26889:28;26879:38;;26869:54;;;:::o;26929:182::-;27069:34;27065:1;27057:6;27053:14;27046:58;27035:76;:::o;27117:222::-;27257:34;27253:1;27245:6;27241:14;27234:58;27326:5;27321:2;27313:6;27309:15;27302:30;27223:116;:::o;27345:170::-;27485:22;27481:1;27473:6;27469:14;27462:46;27451:64;:::o;27521:221::-;27661:34;27657:1;27649:6;27645:14;27638:58;27730:4;27725:2;27717:6;27713:15;27706:29;27627:115;:::o;27748:221::-;27888:34;27884:1;27876:6;27872:14;27865:58;27957:4;27952:2;27944:6;27940:15;27933:29;27854:115;:::o;27975:225::-;28115:34;28111:1;28103:6;28099:14;28092:58;28184:8;28179:2;28171:6;28167:15;28160:33;28081:119;:::o;28206:234::-;28346:34;28342:1;28334:6;28330:14;28323:58;28415:17;28410:2;28402:6;28398:15;28391:42;28312:128;:::o;28446:166::-;28586:18;28582:1;28574:6;28570:14;28563:42;28552:60;:::o;28618:227::-;28758:34;28754:1;28746:6;28742:14;28735:58;28827:10;28822:2;28814:6;28810:15;28803:35;28724:121;:::o;28851:232::-;28991:34;28987:1;28979:6;28975:14;28968:58;29060:15;29055:2;29047:6;29043:15;29036:40;28957:126;:::o;29089:223::-;29229:34;29225:1;29217:6;29213:14;29206:58;29298:6;29293:2;29285:6;29281:15;29274:31;29195:117;:::o;29318:220::-;29458:34;29454:1;29446:6;29442:14;29435:58;29527:3;29522:2;29514:6;29510:15;29503:28;29424:114;:::o;29544:231::-;29684:34;29680:1;29672:6;29668:14;29661:58;29753:14;29748:2;29740:6;29736:15;29729:39;29650:125;:::o;29781:224::-;29921:34;29917:1;29909:6;29905:14;29898:58;29990:7;29985:2;29977:6;29973:15;29966:32;29887:118;:::o;30011:223::-;30151:34;30147:1;30139:6;30135:14;30128:58;30220:6;30215:2;30207:6;30203:15;30196:31;30117:117;:::o;30240:173::-;30380:25;30376:1;30368:6;30364:14;30357:49;30346:67;:::o;30419:224::-;30559:34;30555:1;30547:6;30543:14;30536:58;30628:7;30623:2;30615:6;30611:15;30604:32;30525:118;:::o;30649:167::-;30789:19;30785:1;30777:6;30773:14;30766:43;30755:61;:::o;30822:234::-;30962:34;30958:1;30950:6;30946:14;30939:58;31031:17;31026:2;31018:6;31014:15;31007:42;30928:128;:::o;31062:181::-;31202:33;31198:1;31190:6;31186:14;31179:57;31168:75;:::o;31249:229::-;31389:34;31385:1;31377:6;31373:14;31366:58;31458:12;31453:2;31445:6;31441:15;31434:37;31355:123;:::o;31484:122::-;31557:24;31575:5;31557:24;:::i;:::-;31550:5;31547:35;31537:2;;31596:1;31593;31586:12;31537:2;31527:79;:::o;31612:122::-;31685:24;31703:5;31685:24;:::i;:::-;31678:5;31675:35;31665:2;;31724:1;31721;31714:12;31665:2;31655:79;:::o;31740:120::-;31812:23;31829:5;31812:23;:::i;:::-;31805:5;31802:34;31792:2;;31850:1;31847;31840:12;31792:2;31782:78;:::o;31866:122::-;31939:24;31957:5;31939:24;:::i;:::-;31932:5;31929:35;31919:2;;31978:1;31975;31968:12;31919:2;31909:79;:::o
Swarm Source
ipfs://68155d7d2a3d3264056d63a35146666b51a65959726b465dbcdc0904caf223b6
Loading...
Loading
Loading...
Loading
OVERVIEW
Coinovy is an all in one crypto-ecosystem which simplifies buying, selling, swapping and withdrawals with speed & security. Coinovy makes crypto to fiat transactions easy and accessible just with a few clicks on the platform.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.