This token was updated based on the Polygon Mapper website.
Overview
Max Total Supply
170,274,141.94270706072427145 DATA
Holders
36,332 ( -0.011%)
Market
Price
$0.03 @ 0.071793 MATIC (-16.31%)
Onchain Market Cap
$4,404,877.97
Circulating Supply Market Cap
$19,796,886.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
15,999.131258754576223979 DATAValue
$413.89 ( ~1,148.6394 MATIC) [0.0094%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
DATAv2onPolygon
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-11-08 */ // Sources flattened with hardhat v2.1.2 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT pragma solidity 0.8.6; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/introspection/[email protected] /** * @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); } // File @openzeppelin/contracts/utils/introspection/[email protected] /** * @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; } } // File @openzeppelin/contracts/access/[email protected] /** * @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 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 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 { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant"); _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 { require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke"); _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()); } } } // File @openzeppelin/contracts/token/ERC20/[email protected] /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/[email protected] /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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: * * - `to` 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 { } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), currentAllowance - amount); _burn(account, amount); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/utils/cryptography/[email protected] /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // Check the signature length if (signature.length != 65) { revert("ECDSA: invalid signature length"); } // Divide the signature in r, s and v variables bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. // solhint-disable-next-line no-inline-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require(uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value"); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File @openzeppelin/contracts/utils/cryptography/[email protected] /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator(bytes32 typeHash, bytes32 name, bytes32 version) private view returns (bytes32) { return keccak256( abi.encode( typeHash, name, version, block.chainid, address(this) ) ); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } } // File @openzeppelin/contracts/utils/[email protected] /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] /** * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * _Available since v3.4._ */ abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 { using Counters for Counters.Counter; mapping (address => Counters.Counter) private _nonces; // solhint-disable-next-line var-name-mixedcase bytes32 private immutable _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`. * * It's a good idea to use the same `name` that is defined as the ERC20 token name. */ constructor(string memory name) EIP712(name, "1") { } /** * @dev See {IERC20Permit-permit}. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public virtual override { // solhint-disable-next-line not-rely-on-time require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256( abi.encode( _PERMIT_TYPEHASH, owner, spender, value, _nonces[owner].current(), deadline ) ); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _nonces[owner].increment(); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view override returns (uint256) { return _nonces[owner].current(); } /** * @dev See {IERC20Permit-DOMAIN_SEPARATOR}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view override returns (bytes32) { return _domainSeparatorV4(); } } // File contracts/IERC677.sol // adapted from LINK token https://etherscan.io/address/0x514910771af9ca656af840dff83e8264ecf986ca#code // implements https://github.com/ethereum/EIPs/issues/677 interface IERC677 is IERC20 { function transferAndCall( address to, uint value, bytes calldata data ) external returns (bool success); event Transfer( address indexed from, address indexed to, uint value, bytes data ); } // File contracts/IERC677Receiver.sol interface IERC677Receiver { function onTokenTransfer( address _sender, uint256 _value, bytes calldata _data ) external; } // File contracts/DATAv2.sol contract DATAv2 is ERC20Permit, ERC20Burnable, AccessControl, IERC677 { string private _name = "Streamr"; string private _symbol = "DATA"; event UpdatedTokenInformation(string newName, string newSymbol); // ------------------------------------------------------------------------ // adapted from @openzeppelin/contracts/token/ERC20/presets/ERC20PresetMinterPauser.sol bytes32 constant public MINTER_ROLE = keccak256("MINTER_ROLE"); constructor() ERC20("", "") ERC20Permit(_name) { // make contract deployer the role admin that can later grant the minter role _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); } function isMinter( address minter ) public view returns (bool) { return hasRole(MINTER_ROLE, minter); } /** * @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 { require(isMinter(_msgSender()), "Transaction signer is not a minter"); _mint(to, amount); } // ------------------------------------------------------------------------ // adapted from LINK token, see https://etherscan.io/address/0x514910771af9ca656af840dff83e8264ecf986ca#code // implements https://github.com/ethereum/EIPs/issues/677 /** * @dev transfer token to a contract address with additional data if the recipient is a contact. * @param _to The address to transfer to. * @param _value The amount to be transferred. * @param _data The extra data to be passed to the receiving contract. */ function transferAndCall( address _to, uint256 _value, bytes calldata _data ) public override returns (bool success) { super.transfer(_to, _value); emit Transfer(_msgSender(), _to, _value, _data); uint256 recipientCodeSize; assembly { recipientCodeSize := extcodesize(_to) } if (recipientCodeSize > 0) { IERC677Receiver receiver = IERC677Receiver(_to); receiver.onTokenTransfer(_msgSender(), _value, _data); } return true; } // ------------------------------------------------------------------------ // allow admin to change the token name and symbol modifier onlyAdmin { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Transaction signer is not an admin"); _; } function setTokenInformation(string calldata newName, string calldata newSymbol) public onlyAdmin { _name = newName; _symbol = newSymbol; emit UpdatedTokenInformation(_name, _symbol); } /** * @dev Returns the name of the token. */ function name() public view override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the name. */ function symbol() public view override returns (string memory) { return _symbol; } } // File contracts/DATAv2onPolygon.sol /** * Version of DATAv2 that fulfills the requirements in https://docs.polygon.technology/docs/develop/ethereum-polygon/pos/mapping-assets/ */ contract DATAv2onPolygon is DATAv2 { address public bridgeAddress; constructor(address initialBridgeAddress) DATAv2() { setBridgeAddress(initialBridgeAddress); } ///@dev docs say: being proxified smart contract, most probably bridge addreess is not going to change ever, but... just in case function setBridgeAddress(address newBridgeAddress) public onlyAdmin { bridgeAddress = newBridgeAddress; } /** * When tokens are bridged from mainnet, perform a "mind-and-call" to activate * the receiving contract's ERC677 onTokenTransfer callback * Equal amount of tokens got locked in RootChainManager on the mainnet side */ function deposit(address user, bytes calldata depositData) external { require(_msgSender() == bridgeAddress, "error_onlyBridge"); uint256 amount = abi.decode(depositData, (uint256)); // emits two Transfer events: 0x0 -> bridgeAddress -> user _mint(bridgeAddress, amount); transferAndCall(user, amount, depositData); } /** * When returning to mainnet, it's enough to simply burn the tokens on the Polygon side */ function withdraw(uint256 amount) external { _burn(_msgSender(), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialBridgeAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Transfer","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":"string","name":"newName","type":"string"},{"indexed":false,"internalType":"string","name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridgeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"depositData","type":"bytes"}],"name":"deposit","outputs":[],"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":"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":"minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","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":"address","name":"newBridgeAddress","type":"address"}],"name":"setBridgeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newName","type":"string"},{"internalType":"string","name":"newSymbol","type":"string"}],"name":"setTokenInformation","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":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"transferAndCall","outputs":[{"internalType":"bool","name":"success","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c96101205261018060405260076101408190526629ba3932b0b6b960c91b61016090815262000050919081620003bc565b50604080518082019091526004808252634441544160e01b60209092019182526200007e91600891620003bc565b503480156200008c57600080fd5b50604051620024cb380380620024cb833981016040819052620000af9162000462565b60078054620000be9062000494565b80601f0160208091040260200160405190810160405280929190818152602001828054620000ec9062000494565b80156200013d5780601f1062000111576101008083540402835291602001916200013d565b820191906000526020600020905b8154815290600101906020018083116200011f57829003601f168201915b505050505080604051806040016040528060018152602001603160f81b8152506040518060200160405280600081525060405180602001604052806000815250816003908051906020019062000195929190620003bc565b508051620001ab906004906020840190620003bc565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a01819052818301989098526060810195909552608080860193909352308583015280518086039092018252939092019092528051940193909320909252610100525062000246905060003362000258565b620002518162000268565b50620004d1565b62000264828262000318565b5050565b3360009081527f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f8602052604090205460ff16620002f65760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f7420616e2061646d60448201526134b760f11b606482015260840160405180910390fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16620002645760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620003783390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620003ca9062000494565b90600052602060002090601f016020900481019282620003ee576000855562000439565b82601f106200040957805160ff191683800117855562000439565b8280016001018555821562000439579182015b82811115620004395782518255916020019190600101906200041c565b50620004479291506200044b565b5090565b5b808211156200044757600081556001016200044c565b6000602082840312156200047557600080fd5b81516001600160a01b03811681146200048d57600080fd5b9392505050565b600181811c90821680620004a957607f821691505b60208210811415620004cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e0516101005161012051611faa620005216000396000610e020152600061159c015260006115eb015260006115c60152600061154a015260006115730152611faa6000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf1461044d578063d539139314610460578063d547741f14610487578063dd62ed3e1461049a57600080fd5b8063a457c2d714610401578063a9059cbb14610414578063aa271e1a14610427578063cf2c52cb1461043a57600080fd5b806391d14854116100de57806391d148541461038d57806395d89b41146103c6578063a217fddf146103ce578063a3c573eb146103d657600080fd5b806370a082311461032b57806379cc6790146103545780637ecebe00146103675780637f5a22f91461037a57600080fd5b8063313ce567116101875780634000aea0116101565780634000aea0146102f257806340c10f191461030557806342966c681461028d5780634eee966f1461031857600080fd5b8063313ce567146102b55780633644e515146102c457806336568abe146102cc57806339509351146102df57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a5780632e1a7d4d1461028d5780632f2ff15d146102a257600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611cc2565b6104d3565b60405190151581526020015b60405180910390f35b61022561056c565b6040516102149190611e60565b610208610240366004611c02565b6105fe565b6002545b604051908152602001610214565b610208610265366004611b00565b610614565b610249610278366004611c86565b60009081526006602052604090206001015490565b6102a061029b366004611c86565b6106df565b005b6102a06102b0366004611c9f565b6106ec565b60405160128152602001610214565b610249610789565b6102a06102da366004611c9f565b610798565b6102086102ed366004611c02565b610820565b610208610300366004611c2c565b610857565b6102a0610313366004611c02565b610948565b6102a0610326366004611d04565b6109cd565b610249610339366004611aab565b6001600160a01b031660009081526020819052604090205490565b6102a0610362366004611c02565b610a8a565b610249610375366004611aab565b610b2b565b6102a0610388366004611aab565b610b49565b61020861039b366004611c9f565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610225610be5565b610249600081565b6009546103e9906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b61020861040f366004611c02565b610bf4565b610208610422366004611c02565b610ca7565b610208610435366004611aab565b610cb4565b6102a0610448366004611baf565b610cf4565b6102a061045b366004611b3c565b610d91565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102a0610495366004611c9f565b610f17565b6102496104a8366004611acd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061056657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606007805461057b90611f23565b80601f01602080910402602001604051908101604052809291908181526020018280546105a790611f23565b80156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b600061060b338484610fa4565b50600192915050565b60006106218484846110fd565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106c05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106d485336106cf8685611f0c565b610fa4565b506001949350505050565b6106e9338261131e565b50565b600082815260066020526040902060010154610709905b3361039b565b61077b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106b7565b61078582826114a4565b5050565b6000610793611546565b905090565b6001600160a01b03811633146108165760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106b7565b6107858282611639565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161060b9185906106cf908690611ef4565b60006108638585610ca7565b506001600160a01b038516336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168686866040516108ab93929190611eda565b60405180910390a3843b801561093c576040517fa4c0ed3600000000000000000000000000000000000000000000000000000000815286906001600160a01b0382169063a4c0ed36906109089033908a908a908a90600401611e2d565b600060405180830381600087803b15801561092257600080fd5b505af1158015610936573d6000803e3d6000fd5b50505050505b50600195945050505050565b61095133610cb4565b6109c35760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f742061206d696e7460448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b61078582826116bc565b6109d860003361039b565b610a2f5760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f7420616e2061646d60448201526134b760f11b60648201526084016106b7565b610a3b600785856119ad565b50610a48600883836119ad565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb4660076008604051610a7c929190611eb5565b60405180910390a150505050565b6000610a9683336104a8565b905081811015610b0d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106b7565b610b1c83336106cf8585611f0c565b610b26838361131e565b505050565b6001600160a01b038116600090815260056020526040812054610566565b610b5460003361039b565b610bab5760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f7420616e2061646d60448201526134b760f11b60648201526084016106b7565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60606008805461057b90611f23565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106b7565b610c9d33856106cf8685611f0c565b5060019392505050565b600061060b3384846110fd565b6001600160a01b03811660009081527f3195c024b2ddd6d9b8f6c836aa52f67fe69376c8903d009b80229b3ce4425f51602052604081205460ff16610566565b6009546001600160a01b0316336001600160a01b031614610d575760405162461bcd60e51b815260206004820152601060248201527f6572726f725f6f6e6c794272696467650000000000000000000000000000000060448201526064016106b7565b6000610d6582840184611c86565b600954909150610d7e906001600160a01b0316826116bc565b610d8a84828585610857565b5050505050565b83421115610de15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106b7565b6001600160a01b0387811660008181526005602090815260408083205481517f00000000000000000000000000000000000000000000000000000000000000008185015280830195909552948b166060850152608084018a905260a084019490945260c08084018990528451808503909101815260e09093019093528151919092012090610e6e8261179b565b90506000610e7e82878787611804565b9050896001600160a01b0316816001600160a01b031614610ee15760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106b7565b6001600160a01b038a16600090815260056020526040902080546001019055610f0b8a8a8a610fa4565b50505050505050505050565b600082815260066020526040902060010154610f3290610703565b6108165760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106b7565b6001600160a01b03831661101f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b03821661109b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b038316600090815260208190526040902054818110156112845760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b7565b61128e8282611f0c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112c4908490611ef4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131091815260200190565b60405180910390a350505050565b6001600160a01b03821661139a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b038216600090815260208190526040902054818110156114295760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6114338282611f0c565b6001600160a01b03841660009081526020819052604081209190915560028054849290611461908490611f0c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016110f0565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff166107855760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115023390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000000046141561159557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16156107855760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166117125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b7565b80600260008282546117249190611ef4565b90915550506001600160a01b03821660009081526020819052604081208054839290611751908490611ef4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006105666117a8611546565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118815760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b7565b8360ff16601b148061189657508360ff16601c145b6118ed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106b7565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611941573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119a45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b7565b95945050505050565b8280546119b990611f23565b90600052602060002090601f0160209004810192826119db5760008555611a21565b82601f106119f45782800160ff19823516178555611a21565b82800160010185558215611a21579182015b82811115611a21578235825591602001919060010190611a06565b50611a2d929150611a31565b5090565b5b80821115611a2d5760008155600101611a32565b80356001600160a01b0381168114611a5d57600080fd5b919050565b60008083601f840112611a7457600080fd5b50813567ffffffffffffffff811115611a8c57600080fd5b602083019150836020828501011115611aa457600080fd5b9250929050565b600060208284031215611abd57600080fd5b611ac682611a46565b9392505050565b60008060408385031215611ae057600080fd5b611ae983611a46565b9150611af760208401611a46565b90509250929050565b600080600060608486031215611b1557600080fd5b611b1e84611a46565b9250611b2c60208501611a46565b9150604084013590509250925092565b600080600080600080600060e0888a031215611b5757600080fd5b611b6088611a46565b9650611b6e60208901611a46565b95506040880135945060608801359350608088013560ff81168114611b9257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080600060408486031215611bc457600080fd5b611bcd84611a46565b9250602084013567ffffffffffffffff811115611be957600080fd5b611bf586828701611a62565b9497909650939450505050565b60008060408385031215611c1557600080fd5b611c1e83611a46565b946020939093013593505050565b60008060008060608587031215611c4257600080fd5b611c4b85611a46565b935060208501359250604085013567ffffffffffffffff811115611c6e57600080fd5b611c7a87828801611a62565b95989497509550505050565b600060208284031215611c9857600080fd5b5035919050565b60008060408385031215611cb257600080fd5b82359150611af760208401611a46565b600060208284031215611cd457600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611ac657600080fd5b60008060008060408587031215611d1a57600080fd5b843567ffffffffffffffff80821115611d3257600080fd5b611d3e88838901611a62565b90965094506020870135915080821115611d5757600080fd5b50611c7a87828801611a62565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8054600090600181811c9080831680611da757607f831692505b6020808410821415611dc957634e487b7160e01b600052602260045260246000fd5b83885260208801828015611de45760018114611df557611e20565b60ff19871682528282019750611e20565b60008981526020902060005b87811015611e1a57815484820152908601908401611e01565b83019850505b5050505050505092915050565b6001600160a01b0385168152836020820152606060408201526000611e56606083018486611d64565b9695505050505050565b600060208083528351808285015260005b81811015611e8d57858101830151858201604001528201611e71565b81811115611e9f576000604083870101525b50601f01601f1916929092016040019392505050565b604081526000611ec86040830185611d8d565b82810360208401526119a48185611d8d565b8381526040602082015260006119a4604083018486611d64565b60008219821115611f0757611f07611f5e565b500190565b600082821015611f1e57611f1e611f5e565b500390565b600181811c90821680611f3757607f821691505b60208210811415611f5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122040f4abb1a7a458eaa2a9a745c1bc68ea866b102eb9fcd4236eea0ce945bdc7b864736f6c63430008060033000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c806370a082311161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf1461044d578063d539139314610460578063d547741f14610487578063dd62ed3e1461049a57600080fd5b8063a457c2d714610401578063a9059cbb14610414578063aa271e1a14610427578063cf2c52cb1461043a57600080fd5b806391d14854116100de57806391d148541461038d57806395d89b41146103c6578063a217fddf146103ce578063a3c573eb146103d657600080fd5b806370a082311461032b57806379cc6790146103545780637ecebe00146103675780637f5a22f91461037a57600080fd5b8063313ce567116101875780634000aea0116101565780634000aea0146102f257806340c10f191461030557806342966c681461028d5780634eee966f1461031857600080fd5b8063313ce567146102b55780633644e515146102c457806336568abe146102cc57806339509351146102df57600080fd5b806323b872dd116101c357806323b872dd14610257578063248a9ca31461026a5780632e1a7d4d1461028d5780632f2ff15d146102a257600080fd5b806301ffc9a7146101f557806306fdde031461021d578063095ea7b31461023257806318160ddd14610245575b600080fd5b610208610203366004611cc2565b6104d3565b60405190151581526020015b60405180910390f35b61022561056c565b6040516102149190611e60565b610208610240366004611c02565b6105fe565b6002545b604051908152602001610214565b610208610265366004611b00565b610614565b610249610278366004611c86565b60009081526006602052604090206001015490565b6102a061029b366004611c86565b6106df565b005b6102a06102b0366004611c9f565b6106ec565b60405160128152602001610214565b610249610789565b6102a06102da366004611c9f565b610798565b6102086102ed366004611c02565b610820565b610208610300366004611c2c565b610857565b6102a0610313366004611c02565b610948565b6102a0610326366004611d04565b6109cd565b610249610339366004611aab565b6001600160a01b031660009081526020819052604090205490565b6102a0610362366004611c02565b610a8a565b610249610375366004611aab565b610b2b565b6102a0610388366004611aab565b610b49565b61020861039b366004611c9f565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b610225610be5565b610249600081565b6009546103e9906001600160a01b031681565b6040516001600160a01b039091168152602001610214565b61020861040f366004611c02565b610bf4565b610208610422366004611c02565b610ca7565b610208610435366004611aab565b610cb4565b6102a0610448366004611baf565b610cf4565b6102a061045b366004611b3c565b610d91565b6102497f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6102a0610495366004611c9f565b610f17565b6102496104a8366004611acd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b00000000000000000000000000000000000000000000000000000000148061056657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606007805461057b90611f23565b80601f01602080910402602001604051908101604052809291908181526020018280546105a790611f23565b80156105f45780601f106105c9576101008083540402835291602001916105f4565b820191906000526020600020905b8154815290600101906020018083116105d757829003601f168201915b5050505050905090565b600061060b338484610fa4565b50600192915050565b60006106218484846110fd565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156106c05760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106d485336106cf8685611f0c565b610fa4565b506001949350505050565b6106e9338261131e565b50565b600082815260066020526040902060010154610709905b3361039b565b61077b5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f206772616e74000000000000000000000000000000000060648201526084016106b7565b61078582826114a4565b5050565b6000610793611546565b905090565b6001600160a01b03811633146108165760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016106b7565b6107858282611639565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161060b9185906106cf908690611ef4565b60006108638585610ca7565b506001600160a01b038516336001600160a01b03167fe19260aff97b920c7df27010903aeb9c8d2be5d310a2c67824cf3f15396e4c168686866040516108ab93929190611eda565b60405180910390a3843b801561093c576040517fa4c0ed3600000000000000000000000000000000000000000000000000000000815286906001600160a01b0382169063a4c0ed36906109089033908a908a908a90600401611e2d565b600060405180830381600087803b15801561092257600080fd5b505af1158015610936573d6000803e3d6000fd5b50505050505b50600195945050505050565b61095133610cb4565b6109c35760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f742061206d696e7460448201527f657200000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b61078582826116bc565b6109d860003361039b565b610a2f5760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f7420616e2061646d60448201526134b760f11b60648201526084016106b7565b610a3b600785856119ad565b50610a48600883836119ad565b507fd131ab1e6f279deea74e13a18477e13e2107deb6dc8ae955648948be5841fb4660076008604051610a7c929190611eb5565b60405180910390a150505050565b6000610a9683336104a8565b905081811015610b0d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016106b7565b610b1c83336106cf8585611f0c565b610b26838361131e565b505050565b6001600160a01b038116600090815260056020526040812054610566565b610b5460003361039b565b610bab5760405162461bcd60e51b815260206004820152602260248201527f5472616e73616374696f6e207369676e6572206973206e6f7420616e2061646d60448201526134b760f11b60648201526084016106b7565b600980547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b60606008805461057b90611f23565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016106b7565b610c9d33856106cf8685611f0c565b5060019392505050565b600061060b3384846110fd565b6001600160a01b03811660009081527f3195c024b2ddd6d9b8f6c836aa52f67fe69376c8903d009b80229b3ce4425f51602052604081205460ff16610566565b6009546001600160a01b0316336001600160a01b031614610d575760405162461bcd60e51b815260206004820152601060248201527f6572726f725f6f6e6c794272696467650000000000000000000000000000000060448201526064016106b7565b6000610d6582840184611c86565b600954909150610d7e906001600160a01b0316826116bc565b610d8a84828585610857565b5050505050565b83421115610de15760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016106b7565b6001600160a01b0387811660008181526005602090815260408083205481517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98185015280830195909552948b166060850152608084018a905260a084019490945260c08084018990528451808503909101815260e09093019093528151919092012090610e6e8261179b565b90506000610e7e82878787611804565b9050896001600160a01b0316816001600160a01b031614610ee15760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016106b7565b6001600160a01b038a16600090815260056020526040902080546001019055610f0b8a8a8a610fa4565b50505050505050505050565b600082815260066020526040902060010154610f3290610703565b6108165760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201527f2061646d696e20746f207265766f6b650000000000000000000000000000000060648201526084016106b7565b6001600160a01b03831661101f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b03821661109b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166111795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b0382166111f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b038316600090815260208190526040902054818110156112845760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016106b7565b61128e8282611f0c565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906112c4908490611ef4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161131091815260200190565b60405180910390a350505050565b6001600160a01b03821661139a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6001600160a01b038216600090815260208190526040902054818110156114295760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016106b7565b6114338282611f0c565b6001600160a01b03841660009081526020819052604081209190915560028054849290611461908490611f0c565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016110f0565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff166107855760008281526006602090815260408083206001600160a01b03851684529091529020805460ff191660011790556115023390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60007f000000000000000000000000000000000000000000000000000000000000008946141561159557507f22b43ecf999b10aad5293bd19fd4150c64191e7bc4aa67d07d1aab70f9f1550f90565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527fbc9211a51ce2feced0d2078c3a27156fd77cb553512b626d67d54095b8363b02828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff16156107855760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b0382166117125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016106b7565b80600260008282546117249190611ef4565b90915550506001600160a01b03821660009081526020819052604081208054839290611751908490611ef4565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006105666117a8611546565b836040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156118815760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016106b7565b8360ff16601b148061189657508360ff16601c145b6118ed5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016106b7565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa158015611941573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119a45760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016106b7565b95945050505050565b8280546119b990611f23565b90600052602060002090601f0160209004810192826119db5760008555611a21565b82601f106119f45782800160ff19823516178555611a21565b82800160010185558215611a21579182015b82811115611a21578235825591602001919060010190611a06565b50611a2d929150611a31565b5090565b5b80821115611a2d5760008155600101611a32565b80356001600160a01b0381168114611a5d57600080fd5b919050565b60008083601f840112611a7457600080fd5b50813567ffffffffffffffff811115611a8c57600080fd5b602083019150836020828501011115611aa457600080fd5b9250929050565b600060208284031215611abd57600080fd5b611ac682611a46565b9392505050565b60008060408385031215611ae057600080fd5b611ae983611a46565b9150611af760208401611a46565b90509250929050565b600080600060608486031215611b1557600080fd5b611b1e84611a46565b9250611b2c60208501611a46565b9150604084013590509250925092565b600080600080600080600060e0888a031215611b5757600080fd5b611b6088611a46565b9650611b6e60208901611a46565b95506040880135945060608801359350608088013560ff81168114611b9257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080600060408486031215611bc457600080fd5b611bcd84611a46565b9250602084013567ffffffffffffffff811115611be957600080fd5b611bf586828701611a62565b9497909650939450505050565b60008060408385031215611c1557600080fd5b611c1e83611a46565b946020939093013593505050565b60008060008060608587031215611c4257600080fd5b611c4b85611a46565b935060208501359250604085013567ffffffffffffffff811115611c6e57600080fd5b611c7a87828801611a62565b95989497509550505050565b600060208284031215611c9857600080fd5b5035919050565b60008060408385031215611cb257600080fd5b82359150611af760208401611a46565b600060208284031215611cd457600080fd5b81357fffffffff0000000000000000000000000000000000000000000000000000000081168114611ac657600080fd5b60008060008060408587031215611d1a57600080fd5b843567ffffffffffffffff80821115611d3257600080fd5b611d3e88838901611a62565b90965094506020870135915080821115611d5757600080fd5b50611c7a87828801611a62565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b8054600090600181811c9080831680611da757607f831692505b6020808410821415611dc957634e487b7160e01b600052602260045260246000fd5b83885260208801828015611de45760018114611df557611e20565b60ff19871682528282019750611e20565b60008981526020902060005b87811015611e1a57815484820152908601908401611e01565b83019850505b5050505050505092915050565b6001600160a01b0385168152836020820152606060408201526000611e56606083018486611d64565b9695505050505050565b600060208083528351808285015260005b81811015611e8d57858101830151858201604001528201611e71565b81811115611e9f576000604083870101525b50601f01601f1916929092016040019392505050565b604081526000611ec86040830185611d8d565b82810360208401526119a48185611d8d565b8381526040602082015260006119a4604083018486611d64565b60008219821115611f0757611f07611f5e565b500190565b600082821015611f1e57611f1e611f5e565b500390565b600181811c90821680611f3757607f821691505b60208210811415611f5857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122040f4abb1a7a458eaa2a9a745c1bc68ea866b102eb9fcd4236eea0ce945bdc7b864736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
-----Decoded View---------------
Arg [0] : initialBridgeAddress (address): 0xA6FA4fB5f76172d178d61B04b0ecd319C5d1C0aa
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6fa4fb5f76172d178d61b04b0ecd319c5d1c0aa
Deployed Bytecode Sourcemap
44542:1288:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6451:217;;;;;;:::i;:::-;;:::i;:::-;;;7706:14:1;;7699:22;7681:41;;7669:2;7654:18;6451:217:0;;;;;;;;44039:92;;;:::i;:::-;;;;;;;:::i;17374:169::-;;;;;;:::i;:::-;;:::i;16327:108::-;16415:12;;16327:108;;;7879:25:1;;;7867:2;7852:18;16327:108:0;7834:76:1;18025:422:0;;;;;;:::i;:::-;;:::i;7088:123::-;;;;;;:::i;:::-;7154:7;7181:12;;;:6;:12;;;;;:22;;;;7088:123;45738:89;;;;;;:::i;:::-;;:::i;:::-;;7473:232;;;;;;:::i;:::-;;:::i;16178:84::-;;;16252:2;19784:36:1;;19772:2;19757:18;16178:84:0;19739:87:1;40228:115:0;;;:::i;8692:218::-;;;;;;:::i;:::-;;:::i;18856:215::-;;;;;;:::i;:::-;;:::i;42885:574::-;;;;;;:::i;:::-;;:::i;42134:190::-;;;;;;:::i;:::-;;:::i;43752:217::-;;;;;;:::i;:::-;;:::i;16498:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16599:18:0;16572:7;16599:18;;;;;;;;;;;;16498:127;24862:332;;;;;;:::i;:::-;;:::i;39978:120::-;;;;;;:::i;:::-;;:::i;44871:::-;;;;;;:::i;:::-;;:::i;6760:139::-;;;;;;:::i;:::-;6838:4;6862:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6862:29:0;;;;;;;;;;;;;;;6760:139;44242:96;;;:::i;5216:49::-;;5261:4;5216:49;;44584:28;;;;;-1:-1:-1;;;;;44584:28:0;;;;;;-1:-1:-1;;;;;7034:55:1;;;7016:74;;7004:2;6989:18;44584:28:0;6971:125:1;19574:377:0;;;;;;:::i;:::-;;:::i;16838:175::-;;;;;;:::i;:::-;;:::i;41803:131::-;;;;;;:::i;:::-;;:::i;45250:369::-;;;;;;:::i;:::-;;:::i;39096:816::-;;;;;;:::i;:::-;;:::i;41527:62::-;;41565:24;41527:62;;7950:235;;;;;;:::i;:::-;;:::i;17076:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17192:18:0;;;17165:7;17192:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17076:151;6451:217;6536:4;6560:47;;;6575:32;6560:47;;:100;;-1:-1:-1;2811:25:0;2796:40;;;;6624:36;6553:107;6451:217;-1:-1:-1;;6451:217:0:o;44039:92::-;44085:13;44118:5;44111:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44039:92;:::o;17374:169::-;17457:4;17474:39;804:10;17497:7;17506:6;17474:8;:39::i;:::-;-1:-1:-1;17531:4:0;17374:169;;;;:::o;18025:422::-;18131:4;18148:36;18158:6;18166:9;18177:6;18148:9;:36::i;:::-;-1:-1:-1;;;;;18224:19:0;;18197:24;18224:19;;;:11;:19;;;;;;;;804:10;18224:33;;;;;;;;18276:26;;;;18268:79;;;;-1:-1:-1;;;18268:79:0;;15730:2:1;18268:79:0;;;15712:21:1;15769:2;15749:18;;;15742:30;15808:34;15788:18;;;15781:62;15879:10;15859:18;;;15852:38;15907:19;;18268:79:0;;;;;;;;;18358:57;18367:6;804:10;18389:25;18408:6;18389:16;:25;:::i;:::-;18358:8;:57::i;:::-;-1:-1:-1;18435:4:0;;18025:422;-1:-1:-1;;;;18025:422:0:o;45738:89::-;45792:27;804:10;45812:6;45792:5;:27::i;:::-;45738:89;:::o;7473:232::-;7154:7;7181:12;;;:6;:12;;;;;:22;;;7566:41;;7574:18;804:10;6760:139;:::i;7566:41::-;7558:101;;;;-1:-1:-1;;;7558:101:0;;11413:2:1;7558:101:0;;;11395:21:1;11452:2;11432:18;;;11425:30;11491:34;11471:18;;;11464:62;11562:17;11542:18;;;11535:45;11597:19;;7558:101:0;11385:237:1;7558:101:0;7672:25;7683:4;7689:7;7672:10;:25::i;:::-;7473:232;;:::o;40228:115::-;40288:7;40315:20;:18;:20::i;:::-;40308:27;;40228:115;:::o;8692:218::-;-1:-1:-1;;;;;8788:23:0;;804:10;8788:23;8780:83;;;;-1:-1:-1;;;8780:83:0;;18566:2:1;8780:83:0;;;18548:21:1;18605:2;18585:18;;;18578:30;18644:34;18624:18;;;18617:62;18715:17;18695:18;;;18688:45;18750:19;;8780:83:0;18538:237:1;8780:83:0;8876:26;8888:4;8894:7;8876:11;:26::i;18856:215::-;804:10;18944:4;18993:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18993:34:0;;;;;;;;;;18944:4;;18961:80;;18984:7;;18993:47;;19030:10;;18993:47;:::i;42885:574::-;43020:12;43045:27;43060:3;43065:6;43045:14;:27::i;:::-;-1:-1:-1;;;;;;43088:42:0;;804:10;-1:-1:-1;;;;;43088:42:0;;43116:6;43124:5;;43088:42;;;;;;;;:::i;:::-;;;;;;;;43224:16;;43265:21;;43261:169;;43365:53;;;;;43346:3;;-1:-1:-1;;;;;43365:24:0;;;;;:53;;804:10;;43404:6;;43412:5;;;;43365:53;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43288:142;43261:169;-1:-1:-1;43447:4:0;;42885:574;-1:-1:-1;;;;;42885:574:0:o;42134:190::-;42227:22;804:10;41803:131;:::i;42227:22::-;42219:69;;;;-1:-1:-1;;;42219:69:0;;13803:2:1;42219:69:0;;;13785:21:1;13842:2;13822:18;;;13815:30;13881:34;13861:18;;;13854:62;13952:4;13932:18;;;13925:32;13974:19;;42219:69:0;13775:224:1;42219:69:0;42299:17;42305:2;42309:6;42299:5;:17::i;43752:217::-;43644:41;5261:4;804:10;6760:139;:::i;43644:41::-;43636:88;;;;-1:-1:-1;;;43636:88:0;;17757:2:1;43636:88:0;;;17739:21:1;17796:2;17776:18;;;17769:30;17835:34;17815:18;;;17808:62;-1:-1:-1;;;17886:18:1;;;17879:32;17928:19;;43636:88:0;17729:224:1;43636:88:0;43861:15:::1;:5;43869:7:::0;;43861:15:::1;:::i;:::-;-1:-1:-1::0;43887:19:0::1;:7;43897:9:::0;;43887:19:::1;:::i;:::-;;43922:39;43946:5;43953:7;43922:39;;;;;;;:::i;:::-;;;;;;;;43752:217:::0;;;;:::o;24862:332::-;24939:24;24966:32;24976:7;804:10;17076:151;:::i;24966:32::-;24939:59;;25037:6;25017:16;:26;;25009:75;;;;-1:-1:-1;;;25009:75:0;;16139:2:1;25009:75:0;;;16121:21:1;16178:2;16158:18;;;16151:30;16217:34;16197:18;;;16190:62;16288:6;16268:18;;;16261:34;16312:19;;25009:75:0;16111:226:1;25009:75:0;25095:58;25104:7;804:10;25127:25;25146:6;25127:16;:25;:::i;25095:58::-;25164:22;25170:7;25179:6;25164:5;:22::i;:::-;24928:266;24862:332;;:::o;39978:120::-;-1:-1:-1;;;;;40066:14:0;;40039:7;40066:14;;;:7;:14;;;;;37326;40066:24;37234:114;44871:120;43644:41;5261:4;804:10;6760:139;:::i;43644:41::-;43636:88;;;;-1:-1:-1;;;43636:88:0;;17757:2:1;43636:88:0;;;17739:21:1;17796:2;17776:18;;;17769:30;17835:34;17815:18;;;17808:62;-1:-1:-1;;;17886:18:1;;;17879:32;17928:19;;43636:88:0;17729:224:1;43636:88:0;44951:13:::1;:32:::0;;;::::1;-1:-1:-1::0;;;;;44951:32:0;;;::::1;::::0;;;::::1;::::0;;44871:120::o;44242:96::-;44290:13;44323:7;44316:14;;;;;:::i;19574:377::-;804:10;19667:4;19711:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19711:34:0;;;;;;;;;;19764:35;;;;19756:85;;;;-1:-1:-1;;;19756:85:0;;18160:2:1;19756:85:0;;;18142:21:1;18199:2;18179:18;;;18172:30;18238:34;18218:18;;;18211:62;18309:7;18289:18;;;18282:35;18334:19;;19756:85:0;18132:227:1;19756:85:0;19852:67;804:10;19875:7;19884:34;19903:15;19884:16;:34;:::i;19852:67::-;-1:-1:-1;19939:4:0;;19574:377;-1:-1:-1;;;19574:377:0:o;16838:175::-;16924:4;16941:42;804:10;16965:9;16976:6;16941:9;:42::i;41803:131::-;-1:-1:-1;;;;;6862:29:0;;41874:4;6862:29;;;:12;;:29;:12;:29;;;;;41898:28;6760:139;45250:369;45353:13;;-1:-1:-1;;;;;45353:13:0;804:10;-1:-1:-1;;;;;45337:29:0;;45329:58;;;;-1:-1:-1;;;45329:58:0;;15026:2:1;45329:58:0;;;15008:21:1;15065:2;15045:18;;;15038:30;15104:18;15084;;;15077:46;15140:18;;45329:58:0;14998:166:1;45329:58:0;45398:14;45415:34;;;;45426:11;45415:34;:::i;:::-;45536:13;;45398:51;;-1:-1:-1;45530:28:0;;-1:-1:-1;;;;;45536:13:0;45398:51;45530:5;:28::i;:::-;45569:42;45585:4;45591:6;45599:11;;45569:15;:42::i;:::-;;45318:301;45250:369;;;:::o;39096:816::-;39325:8;39306:15;:27;;39298:69;;;;-1:-1:-1;;;39298:69:0;;12635:2:1;39298:69:0;;;12617:21:1;12674:2;12654:18;;;12647:30;12713:31;12693:18;;;12686:59;12762:18;;39298:69:0;12607:179:1;39298:69:0;-1:-1:-1;;;;;39563:14:0;;;39380:18;39563:14;;;:7;:14;;;;;;;;37326;39425:204;;39454:16;39425:204;;;8202:25:1;8304:18;;;8297:43;;;;8376:15;;;8356:18;;;8349:43;8408:18;;;8401:34;;;8451:19;;;8444:35;;;;8495:19;;;;8488:35;;;39425:204:0;;;;;;;;;;8174:19:1;;;;39425:204:0;;;39401:239;;;;;;;;39668:28;39401:239;39668:16;:28::i;:::-;39653:43;;39709:14;39726:28;39740:4;39746:1;39749;39752;39726:13;:28::i;:::-;39709:45;;39783:5;-1:-1:-1;;;;;39773:15:0;:6;-1:-1:-1;;;;;39773:15:0;;39765:58;;;;-1:-1:-1;;;39765:58:0;;15371:2:1;39765:58:0;;;15353:21:1;15410:2;15390:18;;;15383:30;15449:32;15429:18;;;15422:60;15499:18;;39765:58:0;15343:180:1;39765:58:0;-1:-1:-1;;;;;39836:14:0;;;;;;:7;:14;;;;;37445:19;;37463:1;37445:19;;;39873:31;39882:5;39889:7;39898:5;39873:8;:31::i;:::-;39232:680;;;39096:816;;;;;;;:::o;7950:235::-;7154:7;7181:12;;;:6;:12;;;;;:22;;;8044:41;;8052:18;7088:123;8044:41;8036:102;;;;-1:-1:-1;;;8036:102:0;;14206:2:1;8036:102:0;;;14188:21:1;14245:2;14225:18;;;14218:30;14284:34;14264:18;;;14257:62;14355:18;14335;;;14328:46;14391:19;;8036:102:0;14178:238:1;22930:346:0;-1:-1:-1;;;;;23032:19:0;;23024:68;;;;-1:-1:-1;;;23024:68:0;;17352:2:1;23024:68:0;;;17334:21:1;17391:2;17371:18;;;17364:30;17430:34;17410:18;;;17403:62;17501:6;17481:18;;;17474:34;17525:19;;23024:68:0;17324:226:1;23024:68:0;-1:-1:-1;;;;;23111:21:0;;23103:68;;;;-1:-1:-1;;;23103:68:0;;12232:2:1;23103:68:0;;;12214:21:1;12271:2;12251:18;;;12244:30;12310:34;12290:18;;;12283:62;12381:4;12361:18;;;12354:32;12403:19;;23103:68:0;12204:224:1;23103:68:0;-1:-1:-1;;;;;23184:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23236:32;;7879:25:1;;;23236:32:0;;7852:18:1;23236:32:0;;;;;;;;22930:346;;;:::o;20441:604::-;-1:-1:-1;;;;;20547:20:0;;20539:70;;;;-1:-1:-1;;;20539:70:0;;16946:2:1;20539:70:0;;;16928:21:1;16985:2;16965:18;;;16958:30;17024:34;17004:18;;;16997:62;17095:7;17075:18;;;17068:35;17120:19;;20539:70:0;16918:227:1;20539:70:0;-1:-1:-1;;;;;20628:23:0;;20620:71;;;;-1:-1:-1;;;20620:71:0;;11009:2:1;20620:71:0;;;10991:21:1;11048:2;11028:18;;;11021:30;11087:34;11067:18;;;11060:62;11158:5;11138:18;;;11131:33;11181:19;;20620:71:0;10981:225:1;20620:71:0;-1:-1:-1;;;;;20788:17:0;;20764:21;20788:17;;;;;;;;;;;20824:23;;;;20816:74;;;;-1:-1:-1;;;20816:74:0;;12993:2:1;20816:74:0;;;12975:21:1;13032:2;13012:18;;;13005:30;13071:34;13051:18;;;13044:62;13142:8;13122:18;;;13115:36;13168:19;;20816:74:0;12965:228:1;20816:74:0;20921:22;20937:6;20921:13;:22;:::i;:::-;-1:-1:-1;;;;;20901:17:0;;;:9;:17;;;;;;;;;;;:42;;;;20954:20;;;;;;;;:30;;20978:6;;20901:9;20954:30;;20978:6;;20954:30;:::i;:::-;;;;;;;;21019:9;-1:-1:-1;;;;;21002:35:0;21011:6;-1:-1:-1;;;;;21002:35:0;;21030:6;21002:35;;;;7879:25:1;;7867:2;7852:18;;7834:76;21002:35:0;;;;;;;;20528:517;20441:604;;;:::o;21998:494::-;-1:-1:-1;;;;;22082:21:0;;22074:67;;;;-1:-1:-1;;;22074:67:0;;16544:2:1;22074:67:0;;;16526:21:1;16583:2;16563:18;;;16556:30;16622:34;16602:18;;;16595:62;16693:3;16673:18;;;16666:31;16714:19;;22074:67:0;16516:223:1;22074:67:0;-1:-1:-1;;;;;22241:18:0;;22216:22;22241:18;;;;;;;;;;;22278:24;;;;22270:71;;;;-1:-1:-1;;;22270:71:0;;11829:2:1;22270:71:0;;;11811:21:1;11868:2;11848:18;;;11841:30;11907:34;11887:18;;;11880:62;11978:4;11958:18;;;11951:32;12000:19;;22270:71:0;11801:224:1;22270:71:0;22373:23;22390:6;22373:14;:23;:::i;:::-;-1:-1:-1;;;;;22352:18:0;;:9;:18;;;;;;;;;;:44;;;;22407:12;:22;;22423:6;;22352:9;22407:22;;22423:6;;22407:22;:::i;:::-;;;;-1:-1:-1;;22447:37:0;;7879:25:1;;;22473:1:0;;-1:-1:-1;;;;;22447:37:0;;;;;7867:2:1;7852:18;22447:37:0;7834:76:1;9940:229:0;6838:4;6862:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6862:29:0;;;;;;;;;;;;10010:152;;10054:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;10054:29:0;;;;;;;;;:36;;-1:-1:-1;;10054:36:0;10086:4;10054:36;;;10137:12;804:10;;724:98;10137:12;-1:-1:-1;;;;;10110:40:0;10128:7;-1:-1:-1;;;;;10110:40:0;10122:4;10110:40;;;;;;;;;;9940:229;;:::o;34990:281::-;35043:7;35084:16;35067:13;:33;35063:201;;;-1:-1:-1;35124:24:0;;34990:281::o;35063:201::-;-1:-1:-1;35432:165:0;;;35210:10;35432:165;;;;8793:25:1;;;;35222:12:0;8834:18:1;;;8827:34;35236:15:0;8877:18:1;;;8870:34;35537:13:0;8920:18:1;;;8913:34;35577:4:0;8963:19:1;;;;8956:84;;;;35432:165:0;;;;;;;;;;8765:19:1;;;;35432:165:0;;;35408:200;;;;;;40228:115::o;10177:230::-;6838:4;6862:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;6862:29:0;;;;;;;;;;;;10248:152;;;10323:5;10291:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;10291:29:0;;;;;;;;;;:37;;-1:-1:-1;;10291:37:0;;;10348:40;804:10;;10291:12;;10348:40;;10323:5;10348:40;10177:230;;:::o;21327:338::-;-1:-1:-1;;;;;21411:21:0;;21403:65;;;;-1:-1:-1;;;21403:65:0;;18982:2:1;21403:65:0;;;18964:21:1;19021:2;19001:18;;;18994:30;19060:33;19040:18;;;19033:61;19111:18;;21403:65:0;18954:181:1;21403:65:0;21559:6;21543:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21576:18:0;;:9;:18;;;;;;;;;;:28;;21598:6;;21576:9;:28;;21598:6;;21576:28;:::i;:::-;;;;-1:-1:-1;;21620:37:0;;7879:25:1;;;-1:-1:-1;;;;;21620:37:0;;;21637:1;;21620:37;;7867:2:1;7852:18;21620:37:0;;;;;;;21327:338;;:::o;36258:167::-;36335:7;36362:55;36384:20;:18;:20::i;:::-;36406:10;31886:57;;6691:66:1;31886:57:0;;;6679:79:1;6774:11;;;6767:27;;;6810:12;;;6803:28;;;31849:7:0;;6847:12:1;;31886:57:0;;;;;;;;;;;;31876:68;;;;;;31869:75;;31756:196;;;;;29405:1432;29490:7;30415:66;30401:80;;;30393:127;;;;-1:-1:-1;;;30393:127:0;;13400:2:1;30393:127:0;;;13382:21:1;13439:2;13419:18;;;13412:30;13478:34;13458:18;;;13451:62;-1:-1:-1;;;13529:18:1;;;13522:32;13571:19;;30393:127:0;13372:224:1;30393:127:0;30539:1;:7;;30544:2;30539:7;:18;;;;30550:1;:7;;30555:2;30550:7;30539:18;30531:65;;;;-1:-1:-1;;;30531:65:0;;14623:2:1;30531:65:0;;;14605:21:1;14662:2;14642:18;;;14635:30;14701:34;14681:18;;;14674:62;-1:-1:-1;;;14752:18:1;;;14745:32;14794:19;;30531:65:0;14595:224:1;30531:65:0;30711:24;;;30694:14;30711:24;;;;;;;;;9278:25:1;;;9351:4;9339:17;;9319:18;;;9312:45;;;;9373:18;;;9366:34;;;9416:18;;;9409:34;;;30711:24:0;;9250:19:1;;30711:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30711:24:0;;-1:-1:-1;;30711:24:0;;;-1:-1:-1;;;;;;;30754:20:0;;30746:57;;;;-1:-1:-1;;;30746:57:0;;10656:2:1;30746:57:0;;;10638:21:1;10695:2;10675:18;;;10668:30;10734:26;10714:18;;;10707:54;10778:18;;30746:57:0;10628:174:1;30746:57:0;30823:6;29405:1432;-1:-1:-1;;;;;29405:1432:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:1;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:347::-;266:8;276:6;330:3;323:4;315:6;311:17;307:27;297:2;;348:1;345;338:12;297:2;-1:-1:-1;371:20:1;;414:18;403:30;;400:2;;;446:1;443;436:12;400:2;483:4;475:6;471:17;459:29;;535:3;528:4;519:6;511;507:19;503:30;500:39;497:2;;;552:1;549;542:12;497:2;287:275;;;;;:::o;567:186::-;626:6;679:2;667:9;658:7;654:23;650:32;647:2;;;695:1;692;685:12;647:2;718:29;737:9;718:29;:::i;:::-;708:39;637:116;-1:-1:-1;;;637:116:1:o;758:260::-;826:6;834;887:2;875:9;866:7;862:23;858:32;855:2;;;903:1;900;893:12;855:2;926:29;945:9;926:29;:::i;:::-;916:39;;974:38;1008:2;997:9;993:18;974:38;:::i;:::-;964:48;;845:173;;;;;:::o;1023:328::-;1100:6;1108;1116;1169:2;1157:9;1148:7;1144:23;1140:32;1137:2;;;1185:1;1182;1175:12;1137:2;1208:29;1227:9;1208:29;:::i;:::-;1198:39;;1256:38;1290:2;1279:9;1275:18;1256:38;:::i;:::-;1246:48;;1341:2;1330:9;1326:18;1313:32;1303:42;;1127:224;;;;;:::o;1356:693::-;1467:6;1475;1483;1491;1499;1507;1515;1568:3;1556:9;1547:7;1543:23;1539:33;1536:2;;;1585:1;1582;1575:12;1536:2;1608:29;1627:9;1608:29;:::i;:::-;1598:39;;1656:38;1690:2;1679:9;1675:18;1656:38;:::i;:::-;1646:48;;1741:2;1730:9;1726:18;1713:32;1703:42;;1792:2;1781:9;1777:18;1764:32;1754:42;;1846:3;1835:9;1831:19;1818:33;1891:4;1884:5;1880:16;1873:5;1870:27;1860:2;;1911:1;1908;1901:12;1860:2;1526:523;;;;-1:-1:-1;1526:523:1;;;;1934:5;1986:3;1971:19;;1958:33;;-1:-1:-1;2038:3:1;2023:19;;;2010:33;;1526:523;-1:-1:-1;;1526:523:1:o;2054:483::-;2133:6;2141;2149;2202:2;2190:9;2181:7;2177:23;2173:32;2170:2;;;2218:1;2215;2208:12;2170:2;2241:29;2260:9;2241:29;:::i;:::-;2231:39;;2321:2;2310:9;2306:18;2293:32;2348:18;2340:6;2337:30;2334:2;;;2380:1;2377;2370:12;2334:2;2419:58;2469:7;2460:6;2449:9;2445:22;2419:58;:::i;:::-;2160:377;;2496:8;;-1:-1:-1;2393:84:1;;-1:-1:-1;;;;2160:377:1:o;2542:254::-;2610:6;2618;2671:2;2659:9;2650:7;2646:23;2642:32;2639:2;;;2687:1;2684;2677:12;2639:2;2710:29;2729:9;2710:29;:::i;:::-;2700:39;2786:2;2771:18;;;;2758:32;;-1:-1:-1;;;2629:167:1:o;2801:551::-;2889:6;2897;2905;2913;2966:2;2954:9;2945:7;2941:23;2937:32;2934:2;;;2982:1;2979;2972:12;2934:2;3005:29;3024:9;3005:29;:::i;:::-;2995:39;;3081:2;3070:9;3066:18;3053:32;3043:42;;3136:2;3125:9;3121:18;3108:32;3163:18;3155:6;3152:30;3149:2;;;3195:1;3192;3185:12;3149:2;3234:58;3284:7;3275:6;3264:9;3260:22;3234:58;:::i;:::-;2924:428;;;;-1:-1:-1;3311:8:1;-1:-1:-1;;;;2924:428:1:o;3357:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:2;;;3485:1;3482;3475:12;3437:2;-1:-1:-1;3508:23:1;;3427:110;-1:-1:-1;3427:110:1:o;3542:254::-;3610:6;3618;3671:2;3659:9;3650:7;3646:23;3642:32;3639:2;;;3687:1;3684;3677:12;3639:2;3723:9;3710:23;3700:33;;3752:38;3786:2;3775:9;3771:18;3752:38;:::i;3801:332::-;3859:6;3912:2;3900:9;3891:7;3887:23;3883:32;3880:2;;;3928:1;3925;3918:12;3880:2;3967:9;3954:23;4017:66;4010:5;4006:78;3999:5;3996:89;3986:2;;4099:1;4096;4089:12;4138:719;4230:6;4238;4246;4254;4307:2;4295:9;4286:7;4282:23;4278:32;4275:2;;;4323:1;4320;4313:12;4275:2;4363:9;4350:23;4392:18;4433:2;4425:6;4422:14;4419:2;;;4449:1;4446;4439:12;4419:2;4488:58;4538:7;4529:6;4518:9;4514:22;4488:58;:::i;:::-;4565:8;;-1:-1:-1;4462:84:1;-1:-1:-1;4653:2:1;4638:18;;4625:32;;-1:-1:-1;4669:16:1;;;4666:2;;;4698:1;4695;4688:12;4666:2;;4737:60;4789:7;4778:8;4767:9;4763:24;4737:60;:::i;5047:266::-;5135:6;5130:3;5123:19;5187:6;5180:5;5173:4;5168:3;5164:14;5151:43;-1:-1:-1;5239:1:1;5214:16;;;5232:4;5210:27;;;5203:38;;;;5295:2;5274:15;;;-1:-1:-1;;5270:29:1;5261:39;;;5257:50;;5113:200::o;5318:1098::-;5403:12;;5368:3;;5458:1;5478:18;;;;5531;;;;5558:2;;5612:4;5604:6;5600:17;5590:27;;5558:2;5638;5686;5678:6;5675:14;5655:18;5652:38;5649:2;;;-1:-1:-1;;;5720:1:1;5713:88;5824:4;5821:1;5814:15;5852:4;5849:1;5842:15;5649:2;20043:19;;;20095:4;20086:14;;5952:18;5979:104;;;;6097:1;6092:318;;;;5945:465;;5979:104;-1:-1:-1;;6014:24:1;;6000:39;;6059:14;;;;-1:-1:-1;5979:104:1;;6092:318;19904:1;19897:14;;;19941:4;19928:18;;6186:1;6200:167;6214:6;6211:1;6208:13;6200:167;;;6294:14;;6279:13;;;6272:37;6337:16;;;;6229:10;;6200:167;;;6387:13;;;-1:-1:-1;;5945:465:1;;;;;;;;5376:1040;;;;:::o;7101:435::-;-1:-1:-1;;;;;7318:6:1;7314:55;7303:9;7296:74;7406:6;7401:2;7390:9;7386:18;7379:34;7449:2;7444;7433:9;7429:18;7422:30;7277:4;7469:61;7526:2;7515:9;7511:18;7503:6;7495;7469:61;:::i;:::-;7461:69;7286:250;-1:-1:-1;;;;;;7286:250:1:o;9454:597::-;9566:4;9595:2;9624;9613:9;9606:21;9656:6;9650:13;9699:6;9694:2;9683:9;9679:18;9672:34;9724:1;9734:140;9748:6;9745:1;9742:13;9734:140;;;9843:14;;;9839:23;;9833:30;9809:17;;;9828:2;9805:26;9798:66;9763:10;;9734:140;;;9892:6;9889:1;9886:13;9883:2;;;9962:1;9957:2;9948:6;9937:9;9933:22;9929:31;9922:42;9883:2;-1:-1:-1;10035:2:1;10014:15;-1:-1:-1;;10010:29:1;9995:45;;;;10042:2;9991:54;;9575:476;-1:-1:-1;;;9575:476:1:o;10056:393::-;10247:2;10236:9;10229:21;10210:4;10273:53;10322:2;10311:9;10307:18;10299:6;10273:53;:::i;:::-;10374:9;10366:6;10362:22;10357:2;10346:9;10342:18;10335:50;10402:41;10436:6;10428;10402:41;:::i;19322:315::-;19507:6;19496:9;19489:25;19550:2;19545;19534:9;19530:18;19523:30;19470:4;19570:61;19627:2;19616:9;19612:18;19604:6;19596;19570:61;:::i;20111:128::-;20151:3;20182:1;20178:6;20175:1;20172:13;20169:2;;;20188:18;;:::i;:::-;-1:-1:-1;20224:9:1;;20159:80::o;20244:125::-;20284:4;20312:1;20309;20306:8;20303:2;;;20317:18;;:::i;:::-;-1:-1:-1;20354:9:1;;20293:76::o;20374:437::-;20453:1;20449:12;;;;20496;;;20517:2;;20571:4;20563:6;20559:17;20549:27;;20517:2;20624;20616:6;20613:14;20593:18;20590:38;20587:2;;;-1:-1:-1;;;20658:1:1;20651:88;20762:4;20759:1;20752:15;20790:4;20787:1;20780:15;20587:2;;20429:382;;;:::o;20816:184::-;-1:-1:-1;;;20865:1:1;20858:88;20965:4;20962:1;20955:15;20989:4;20986:1;20979:15
Swarm Source
ipfs://40f4abb1a7a458eaa2a9a745c1bc68ea866b102eb9fcd4236eea0ce945bdc7b8
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.