Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
NFT
Overview
Max Total Supply
1,000,000,000 INFT
Holders
349 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
737.8 INFTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
InfinityToken
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 99999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.14; import {ERC20} from '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import {ERC20Permit} from '@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol'; import {ERC20Burnable} from '@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol'; import {ERC20Snapshot} from '@openzeppelin/contracts/token/ERC20/extensions/ERC20Snapshot.sol'; import {ERC20Votes} from '@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.sol'; /** * @title InfinityTokens * @author nneverlander. Twitter @nneverlander * @notice The Infinity Token ($NFT). Implements timelock config to control token release schedule. */ contract InfinityToken is ERC20('Infinity', 'INFT'), ERC20Permit('Infinity'), ERC20Burnable, ERC20Snapshot, ERC20Votes { uint256 public constant EPOCH_INFLATION = 25e7 ether; uint256 public constant EPOCH_DURATION = 180 days; uint256 public constant EPOCH_CLIFF = 180 days; uint256 public constant MAX_EPOCHS = 4; uint256 public immutable currentEpochTimestamp; uint256 public currentEpoch; uint256 public previousEpochTimestamp; address public admin; event EpochAdvanced(uint256 currentEpoch, uint256 supplyMinted); event AdminChanged(address oldAdmin, address newAdmin); /** @param _admin The address of the admin who will be sent the minted tokens @param supply Initial supply of the token */ constructor(address _admin, uint256 supply) { previousEpochTimestamp = block.timestamp; currentEpochTimestamp = block.timestamp; admin = _admin; // mint initial supply _mint(admin, supply); } modifier onlyAdmin() { require(msg.sender == admin, 'only admin'); _; } // =============================================== ADMIN FUNCTIONS ========================================================= function advanceEpoch() external onlyAdmin { require(currentEpoch < MAX_EPOCHS, 'no epochs left'); require(block.timestamp >= currentEpochTimestamp + EPOCH_CLIFF, 'cliff not passed'); require(block.timestamp >= previousEpochTimestamp + EPOCH_DURATION, 'not ready to advance'); uint256 epochsPassedSinceLastAdvance = (block.timestamp - previousEpochTimestamp) / EPOCH_DURATION; uint256 epochsLeft = MAX_EPOCHS - currentEpoch; epochsPassedSinceLastAdvance = epochsPassedSinceLastAdvance > epochsLeft ? epochsLeft : epochsPassedSinceLastAdvance; // update epochs currentEpoch += epochsPassedSinceLastAdvance; previousEpochTimestamp = block.timestamp; // inflation amount uint256 supplyToMint = EPOCH_INFLATION * epochsPassedSinceLastAdvance; // mint supply _mint(admin, supplyToMint); emit EpochAdvanced(currentEpoch, supplyToMint); } function changeAdmin(address newAdmin) external onlyAdmin { require(newAdmin != address(0), 'zero address'); admin = newAdmin; emit AdminChanged(admin, newAdmin); } // =============================================== HOOKS ========================================================= function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20, ERC20Snapshot) { ERC20Snapshot._beforeTokenTransfer(from, to, amount); } // =============================================== REQUIRED OVERRIDES ========================================================= function _afterTokenTransfer( address from, address to, uint256 amount ) internal override(ERC20, ERC20Votes) { super._afterTokenTransfer(from, to, amount); } function _mint(address to, uint256 amount) internal override(ERC20, ERC20Votes) { super._mint(to, amount); } function _burn(address account, uint256 amount) internal override(ERC20, ERC20Votes) { super._burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, _allowances[owner][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = _allowances[owner][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol) pragma solidity ^0.8.0; import "./draft-IERC20Permit.sol"; import "../ERC20.sol"; import "../../../utils/cryptography/draft-EIP712.sol"; import "../../../utils/cryptography/ECDSA.sol"; import "../../../utils/Counters.sol"; /** * @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 { require(block.timestamp <= deadline, "ERC20Permit: expired deadline"); bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline)); bytes32 hash = _hashTypedDataV4(structHash); address signer = ECDSA.recover(hash, v, r, s); require(signer == owner, "ERC20Permit: invalid signature"); _approve(owner, spender, value); } /** * @dev See {IERC20Permit-nonces}. */ function nonces(address owner) public view virtual 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(); } /** * @dev "Consume a nonce": return the current value and increment. * * _Available since v4.1._ */ function _useNonce(address owner) internal virtual returns (uint256 current) { Counters.Counter storage nonce = _nonces[owner]; current = nonce.current(); nonce.increment(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Snapshot.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Arrays.sol"; import "../../../utils/Counters.sol"; /** * @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and * total supply at the time are recorded for later access. * * This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting. * In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different * accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be * used to create an efficient ERC20 forking mechanism. * * Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a * snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot * id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id * and the account address. * * NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it * return `block.number` will trigger the creation of snapshot at the begining of each new block. When overridding this * function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract. * * Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient * alternative consider {ERC20Votes}. * * ==== Gas Costs * * Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log * n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much * smaller since identical balances in subsequent snapshots are stored as a single entry. * * There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is * only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent * transfers will have normal cost until the next snapshot, and so on. */ abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter; // Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a // Snapshot struct, but that would impede usage of functions that work on an array. struct Snapshots { uint256[] ids; uint256[] values; } mapping(address => Snapshots) private _accountBalanceSnapshots; Snapshots private _totalSupplySnapshots; // Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid. Counters.Counter private _currentSnapshotId; /** * @dev Emitted by {_snapshot} when a snapshot identified by `id` is created. */ event Snapshot(uint256 id); /** * @dev Creates a new snapshot and returns its snapshot id. * * Emits a {Snapshot} event that contains the same id. * * {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a * set of accounts, for example using {AccessControl}, or it may be open to the public. * * [WARNING] * ==== * While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking, * you must consider that it can potentially be used by attackers in two ways. * * First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow * logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target * specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs * section above. * * We haven't measured the actual numbers; if this is something you're interested in please reach out to us. * ==== */ function _snapshot() internal virtual returns (uint256) { _currentSnapshotId.increment(); uint256 currentId = _getCurrentSnapshotId(); emit Snapshot(currentId); return currentId; } /** * @dev Get the current snapshotId */ function _getCurrentSnapshotId() internal view virtual returns (uint256) { return _currentSnapshotId.current(); } /** * @dev Retrieves the balance of `account` at the time `snapshotId` was created. */ function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]); return snapshotted ? value : balanceOf(account); } /** * @dev Retrieves the total supply at the time `snapshotId` was created. */ function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) { (bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots); return snapshotted ? value : totalSupply(); } // Update balance and/or total supply snapshots before the values are modified. This is implemented // in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations. function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // mint _updateAccountSnapshot(to); _updateTotalSupplySnapshot(); } else if (to == address(0)) { // burn _updateAccountSnapshot(from); _updateTotalSupplySnapshot(); } else { // transfer _updateAccountSnapshot(from); _updateAccountSnapshot(to); } } function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) { require(snapshotId > 0, "ERC20Snapshot: id is 0"); require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id"); // When a valid snapshot is queried, there are three possibilities: // a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never // created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds // to this id is the current one. // b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the // requested id, and its value is the one to return. // c) More snapshots were created after the requested one, and the queried value was later modified. There will be // no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is // larger than the requested one. // // In summary, we need to find an element in an array, returning the index of the smallest value that is larger if // it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does // exactly this. uint256 index = snapshots.ids.findUpperBound(snapshotId); if (index == snapshots.ids.length) { return (false, 0); } else { return (true, snapshots.values[index]); } } function _updateAccountSnapshot(address account) private { _updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account)); } function _updateTotalSupplySnapshot() private { _updateSnapshot(_totalSupplySnapshots, totalSupply()); } function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private { uint256 currentId = _getCurrentSnapshotId(); if (_lastSnapshotId(snapshots.ids) < currentId) { snapshots.ids.push(currentId); snapshots.values.push(currentValue); } } function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) { if (ids.length == 0) { return 0; } else { return ids[ids.length - 1]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol) pragma solidity ^0.8.0; import "./draft-ERC20Permit.sol"; import "../../../utils/math/Math.sol"; import "../../../governance/utils/IVotes.sol"; import "../../../utils/math/SafeCast.sol"; import "../../../utils/cryptography/ECDSA.sol"; /** * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's, * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1. * * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module. * * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting * power can be queried through the public accessors {getVotes} and {getPastVotes}. * * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked. * * _Available since v4.2._ */ abstract contract ERC20Votes is IVotes, ERC20Permit { struct Checkpoint { uint32 fromBlock; uint224 votes; } bytes32 private constant _DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping(address => address) private _delegates; mapping(address => Checkpoint[]) private _checkpoints; Checkpoint[] private _totalSupplyCheckpoints; /** * @dev Get the `pos`-th checkpoint for `account`. */ function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) { return _checkpoints[account][pos]; } /** * @dev Get number of checkpoints for `account`. */ function numCheckpoints(address account) public view virtual returns (uint32) { return SafeCast.toUint32(_checkpoints[account].length); } /** * @dev Get the address `account` is currently delegating to. */ function delegates(address account) public view virtual override returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view virtual override returns (uint256) { uint256 pos = _checkpoints[account].length; return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes; } /** * @dev Retrieve the number of votes for `account` at the end of `blockNumber`. * * Requirements: * * - `blockNumber` must have been already mined */ function getPastVotes(address account, uint256 blockNumber) public view virtual override returns (uint256) { require(blockNumber < block.number, "ERC20Votes: block not yet mined"); return _checkpointsLookup(_checkpoints[account], blockNumber); } /** * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances. * It is but NOT the sum of all the delegated votes! * * Requirements: * * - `blockNumber` must have been already mined */ function getPastTotalSupply(uint256 blockNumber) public view virtual override returns (uint256) { require(blockNumber < block.number, "ERC20Votes: block not yet mined"); return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber); } /** * @dev Lookup a value in a list of (sorted) checkpoints. */ function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) { // We run a binary search to look for the earliest checkpoint taken after `blockNumber`. // // During the loop, the index of the wanted checkpoint remains in the range [low-1, high). // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant. // - If the middle checkpoint is after `blockNumber`, we look in [low, mid) // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high) // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not // out of bounds (in which case we're looking too far in the past and the result is 0). // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out // the same. uint256 high = ckpts.length; uint256 low = 0; while (low < high) { uint256 mid = Math.average(low, high); if (ckpts[mid].fromBlock > blockNumber) { high = mid; } else { low = mid + 1; } } return high == 0 ? 0 : ckpts[high - 1].votes; } /** * @dev Delegate votes from the sender to `delegatee`. */ function delegate(address delegatee) public virtual override { _delegate(_msgSender(), delegatee); } /** * @dev Delegates votes from signer to `delegatee` */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) public virtual override { require(block.timestamp <= expiry, "ERC20Votes: signature expired"); address signer = ECDSA.recover( _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))), v, r, s ); require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce"); _delegate(signer, delegatee); } /** * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1). */ function _maxSupply() internal view virtual returns (uint224) { return type(uint224).max; } /** * @dev Snapshots the totalSupply after it has been increased. */ function _mint(address account, uint256 amount) internal virtual override { super._mint(account, amount); require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes"); _writeCheckpoint(_totalSupplyCheckpoints, _add, amount); } /** * @dev Snapshots the totalSupply after it has been decreased. */ function _burn(address account, uint256 amount) internal virtual override { super._burn(account, amount); _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount); } /** * @dev Move voting power when tokens are transferred. * * Emits a {DelegateVotesChanged} event. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._afterTokenTransfer(from, to, amount); _moveVotingPower(delegates(from), delegates(to), amount); } /** * @dev Change delegation for `delegator` to `delegatee`. * * Emits events {DelegateChanged} and {DelegateVotesChanged}. */ function _delegate(address delegator, address delegatee) internal virtual { address currentDelegate = delegates(delegator); uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveVotingPower(currentDelegate, delegatee, delegatorBalance); } function _moveVotingPower( address src, address dst, uint256 amount ) private { if (src != dst && amount > 0) { if (src != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount); emit DelegateVotesChanged(src, oldWeight, newWeight); } if (dst != address(0)) { (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount); emit DelegateVotesChanged(dst, oldWeight, newWeight); } } } function _writeCheckpoint( Checkpoint[] storage ckpts, function(uint256, uint256) view returns (uint256) op, uint256 delta ) private returns (uint256 oldWeight, uint256 newWeight) { uint256 pos = ckpts.length; oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes; newWeight = op(oldWeight, delta); if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) { ckpts[pos - 1].votes = SafeCast.toUint224(newWeight); } else { ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)})); } } function _add(uint256 a, uint256 b) private pure returns (uint256) { return a + b; } function _subtract(uint256 a, uint256 b) private pure returns (uint256) { return a - b; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @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; address private immutable _CACHED_THIS; 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); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @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 { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. 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. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @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) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // 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 (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): 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. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @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) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @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)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. 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; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Arrays.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev Collection of functions related to array types. */ library Arrays { /** * @dev Searches a sorted `array` and returns the first index that contains * a value greater or equal to `element`. If no such index exists (i.e. all * values in the array are strictly less than `element`), the array length is * returned. Time complexity O(log n). * * `array` is expected to be sorted in ascending order, and to contain no * repeated elements. */ function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) { if (array.length == 0) { return 0; } uint256 low = 0; uint256 high = array.length; while (low < high) { uint256 mid = Math.average(low, high); // Note that mid will always be strictly less than high (i.e. it will be a valid array index) // because Math.average rounds down (it does integer division with truncation). if (array[mid] > element) { high = mid; } else { low = mid + 1; } } // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound. if (low > 0 && array[low - 1] == element) { return low - 1; } else { return low; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a >= b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a / b + (a % b == 0 ? 0 : 1); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol) pragma solidity ^0.8.0; /** * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts. * * _Available since v4.5._ */ interface IVotes { /** * @dev Emitted when an account changes their delegate. */ event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /** * @dev Emitted when a token transfer or delegate change results in changes to a delegate's number of votes. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @dev Returns the current amount of votes that `account` has. */ function getVotes(address account) external view returns (uint256); /** * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`). */ function getPastVotes(address account, uint256 blockNumber) external view returns (uint256); /** * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`). * * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes. * Votes that have not been delegated are still part of total supply, even though they would not participate in a * vote. */ function getPastTotalSupply(uint256 blockNumber) external view returns (uint256); /** * @dev Returns the delegate that `account` has chosen. */ function delegates(address account) external view returns (address); /** * @dev Delegates votes from the sender to `delegatee`. */ function delegate(address delegatee) external; /** * @dev Delegates votes from signer to `delegatee`. */ function delegateBySig( address delegatee, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol) pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
{ "viaIR": true, "optimizer": { "enabled": true, "runs": 99999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_admin","type":"address"},{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentEpoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"supplyMinted","type":"uint256"}],"name":"EpochAdvanced","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Snapshot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_CLIFF","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_DURATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EPOCH_INFLATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_EPOCHS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"advanceEpoch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"snapshotId","type":"uint256"}],"name":"balanceOfAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentEpochTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"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":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[],"name":"previousEpochTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"snapshotId","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101806040523462000083576200002062000019620000db565b9062000193565b604051613bb7908162000f5d823960805181613153015260a0518161320e015260c05181613124015260e051816131a2015261010051816131c80152610120518161317f0152610140518161188c0152610160518181816108f80152610d1b0152f35b600080fd5b50634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b03821117620000bb57604052565b620000c562000088565b604052565b60405190620000d9826200009f565b565b6040805191908262004b5438819003908190601f8201601f191684016001600160401b0381118582101762000133575b855283398101031262000083578151916001600160a01b038316830362000083576020015190565b6200013d62000088565b6200010b565b6040519062000152826200009f565b60048252565b6040519062000167826200009f565b60018252565b604051906200017c826200009f565b6008825267496e66696e69747960c01b6020830152565b91906200019f6200016d565b92620001aa6200016d565b620001b462000143565b90602095631253919560e21b87840152620001ce62000158565b9287840192603160f81b845280519060018060401b0382116200039e575b6200020482620001fe600354620003ae565b620003eb565b8990601f8311600114620002fd576200026e959383620002df99989694620000d99c9d946200025194600092620002f1575b50508160011b916000199060031b1c1916176003556200049d565b815191012091519020908060e05281610100524660a052620005a1565b6080523060c05260008051602062004b14833981519152610120527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c961014052620002b842600e55565b4261016052600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b03166200066d565b01519050388062000236565b6003600052601f19831691907fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b9260005b81811062000386575084620000d99c9d9462000251946200026e9a9894620002df9d9c9a98600195106200036c575b505050811b016003556200049d565b015160001960f88460031b161c191690553880806200035d565b92938d6001819287860151815501950193016200032e565b620003a862000088565b620001ec565b90600182811c92168015620003e0575b6020831014620003ca57565b634e487b7160e01b600052602260045260246000fd5b91607f1691620003be565b601f8111620003f8575050565b6000906003825260208220906020601f850160051c8301941062000439575b601f0160051c01915b8281106200042d57505050565b81815560010162000420565b909250829062000417565b601f811162000451575050565b6000906004825260208220906020601f850160051c8301941062000492575b601f0160051c01915b8281106200048657505050565b81815560010162000479565b909250829062000470565b80519091906001600160401b03811162000591575b620004ca81620004c4600454620003ae565b62000444565b602080601f8311600114620005095750819293600092620004fd575b50508160011b916000199060031b1c191617600455565b015190503880620004e6565b6004600052601f198316949091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b926000905b878210620005785750508360019596106200055e575b505050811b01600455565b015160001960f88460031b161c1916905538808062000553565b806001859682949686015181550195019301906200053d565b6200059b62000088565b620004b2565b9060405190602082019260008051602062004b148339815191528452604083015260608201524660808201523060a082015260a0815260c0810181811060018060401b03821117620005f7575b60405251902090565b6200060162000088565b620005ee565b156200060f57565b60405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b6064820152608490fd5b6001600160a01b038116919082156200082457816200074b9184620007699560005260066020526040600020600060205260406000205460095480620006b38462000e14565b1062000801575b5050506002546009549081620006cf62000dd2565b106200076d575b5050620006ef620006ea8460025462000880565b600255565b6001600160a01b03821660009081526020819052604090206200071484825462000880565b90556040518381526000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a362000e4e565b60025462000763906001600160e01b03101562000607565b620009ea565b5050565b620007a4620007d992620007bf60075491620007a4680100000000000000009384811015620007f1575b60018101600755620008bc565b90919082549060031b600019811b9283911b16911916179055565b60085490811015620007e1575b60018101600855620008ee565b3880620006d6565b620007eb62000088565b620007cc565b620007fb62000088565b62000797565b82620008146001926200081b9562000da7565b0162000da7565b388080620006ba565b60405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606490fd5b50634e487b7160e01b600052601160045260246000fd5b811981116200088d570190565b6200089762000869565b0190565b60018110620008ac575b6000190190565b620008b662000869565b620008a5565b600754811015620008d857600760005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b600854811015620008d857600860005260206000200190600090565b600c54811015620008d857600c60005260206000200190600090565b8054821015620008d85760005260206000200190600090565b62000966600c5468010000000000000000811015620009a4575b60018101600c556200090a565b6200098e57815160209283015190921b63ffffffff191663ffffffff92909216919091179055565b634e487b7160e01b600052600060045260246000fd5b620009ae62000088565b62000959565b8054620009669168010000000000000000821015620009da575b60018201815562000926565b620009e462000088565b620009ce565b600c549091811591821562000acf5762000a1160005b6001600160e01b0316948562000880565b92158062000aaf575b1562000a5d57620000d99062000a4562000a3f62000a388662000cd7565b926200089b565b6200090a565b509063ffffffff82549181199060201b169116179055565b50620000d962000a6d4362000d41565b62000aa962000a7c8562000cd7565b62000a996040519362000a8f856200009f565b63ffffffff168452565b6001600160e01b03166020830152565b6200093f565b5063ffffffff62000ac462000a3f836200089b565b505416431462000a1a565b62000a1162000ae262000a3f836200089b565b505460201c62000a00565b90918154918215928360001462000be05760005b6001600160e01b03169480861062000bd0575b850393158062000b9c575b1562000b4b5762000a45620000d99262000b4462000b3d8762000cd7565b936200089b565b9062000926565b50620000d99062000b5c4362000d41565b9062000b9662000b6c8662000cd7565b62000b8662000b7a620000ca565b63ffffffff9095168552565b6001600160e01b03166020840152565b620009b4565b5062000bc262000bb762000bb0836200089b565b8462000926565b505463ffffffff1690565b63ffffffff16431462000b1f565b62000bda62000869565b62000b14565b62000bf662000bef826200089b565b8362000926565b505460201c62000b01565b90918154918215928360001462000cb95762000c2a60005b6001600160e01b0316958662000880565b93158062000c99575b1562000c515762000a45620000d99262000b4462000b3d8762000cd7565b50620000d99062000c624362000d41565b9062000b9662000c728662000cd7565b63ffffffff6040519462000c86866200009f565b1684526001600160e01b03166020840152565b5063ffffffff62000cae62000bb0836200089b565b505416431462000c33565b62000c2a62000ccc62000bb0836200089b565b505460201c62000c19565b6001600160e01b039081811162000cec571690565b60405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608490fd5b63ffffffff9081811162000d53571690565b60405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b6064820152608490fd5b90620007a4620000d99280549068010000000000000000821015620009da5760018201815562000926565b6007548062000de15750600090565b80600162000dfa921062000e04575b60001901620008bc565b90549060031b1c90565b62000e0e62000869565b62000df0565b8054908162000e24575050600090565b81600162000dfa931062000e3e575b600019019062000926565b62000e4862000869565b62000e33565b600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e3546001600160a01b03918216600090815260408120548316939290911690818414158062000f52575b62000ea9575b50505050565b82908262000f11575b5050508162000ec4575b808062000ea3565b6001600160a01b0382166000908152600b6020526040902060008051602062004b348339815191529162000ef89162000c01565b60408051928352602083019190915290a2388062000ebc565b60008051602062004b34833981519152916040828562000f389452600b6020522062000aed565b60408051928352602083019190915290a238818162000eb2565b5082151562000e9d56fe60806040526004361015610013575b600080fd5b60003560e01c806306fdde03146102da578063095ea7b3146102d157806318160ddd146102c857806323b872dd146102bf5780632cb69587146101f0578063313ce567146102b65780633644e515146102ad57806339509351146102a45780633a46b1a81461029b5780633cf80e6c1461029257806342966c68146102895780634ee2cd7e14610280578063587cde1e146102775780635c19a95c1461026e5780636e229a26146102655780636fcfff451461025c57806370a0823114610253578063766718081461024a57806379cc6790146102415780637ecebe00146102385780638b49a2901461022f5780638e539e8c146102265780638f2839701461021d57806395d89b4114610214578063981b24d01461020b5780639ab24eb014610202578063a457c2d7146101f9578063a70b9f0c146101f0578063a9059cbb146101e7578063b99fa5f3146101de578063c3cda520146101d5578063c8b72f8f146101cc578063d505accf146101c3578063dd62ed3e146101ba578063f1127ed8146101b15763f851a440146101a957600080fd5b61000e611b08565b5061000e611a1a565b5061000e611984565b5061000e6117df565b5061000e6117a4565b5061000e611604565b5061000e6115a7565b5061000e611562565b5061000e6105e0565b5061000e61144a565b5061000e611383565b5061000e61132c565b5061000e61124a565b5061000e61110a565b5061000e61101c565b5061000e610fd7565b5061000e610f71565b5061000e610e55565b5061000e610e18565b5061000e610db2565b5061000e610d3e565b5061000e610ce4565b5061000e610ca3565b5061000e610c3c565b5061000e610bb3565b5061000e610a2f565b5061000e61086c565b5061000e61071f565b5061000e61069a565b5061000e610658565b5061000e61061d565b5061000e610589565b5061000e61054c565b5061000e6104fc565b5061000e610359565b919091602080825283519081818401526000945b828610610343575050601f817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0926040959611610336575b0116010190565b600085828601015261032f565b85810182015184870160400152948101946102f7565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104b35760405190806003549060019180831c928082169283156104a9575b602092838610851461047c57858852602088019490811561044257506001146103e9575b6103e5876103d981890382611bd0565b604051918291826102e3565b0390f35b600360005294509192917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b83861061043157505050910190506103d9826103e538806103c9565b805485870152948201948101610415565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685525050500191506103d99050826103e538806103c9565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526022600452fd5b93607f16936103a5565b80fd5b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416105376104b6565b6024359033611f5c565b602060405160018152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600254604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416105c46104b6565b6105cc6104d9565b604435916105db83338361211b565b611dcd565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405162ed4e008152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405160128152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061069261310d565b604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416106d56104b6565b3360005260016020526107186024356107128360406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54611cab565b9033611f5c565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576107576104b6565b73ffffffffffffffffffffffffffffffffffffffff6024359161077b4384106124b1565b16600052600b60205260406000208054916000905b8382106107f0575050816107cb575050602060005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60405191168152f35b6107e36107eb916107dd60209461246c565b9061234b565b505460201c90565b6107a5565b909192600190610806818518831c828616611cab565b918363ffffffff610817858961234b565b505416111561082d575050915b90929192610790565b919093507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe811161085f575b01610824565b610867611c11565b610859565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576108bf73ffffffffffffffffffffffffffffffffffffffff600f541633146133e7565b600d5460048110156109d1576109837facfa06cebbab8226f9a388bff9f5fcf4569298028d939f4765958dc57dbb330b9161092461091c7f0000000000000000000000000000000000000000000000000000000000000000611c41565b42101561344c565b61097561097061095661094d600e5461094761093f82611c41565b4210156134b1565b4261249a565b62ed4e00900490565b61095f84612450565b90818111156109c857508093611cab565b600d55565b61097e42600e55565b613516565b6109ab816109a6600f5473ffffffffffffffffffffffffffffffffffffffff1690565b6139b2565b600d5460408051918252602082019290925290819081015b0390a1005b90508093611cab565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6e6f2065706f636873206c6566740000000000000000000000000000000000006044820152fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004353315610b2f57610b2d90610a7533613554565b80610aa03373ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54610aad82821015613af6565b03610ad83373ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55610aed610ae88260025461249a565b600255565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a3610b28813361384f565b61293d565b005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff610c026104b6565b16600081815260068352610c1b60408220602435612407565b929015610c2c575050604051908152f35b6040925081528083522054610692565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff80610c8c6104b6565b16600052600a825260406000205416604051908152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610b2d610cde6104b6565b3361257b565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610d8b6104b6565b16600052600b6020526020610da4604060002054613352565b63ffffffff60405191168152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610dff6104b6565b1660005260006020526020604060002054604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600d54604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610e8d6104b6565b602435610e9b81338461211b565b73ffffffffffffffffffffffffffffffffffffffff8216918215610b2f5781816000610b2d95610ecd610b2895613554565b83610ef88473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54610f0582821015613af6565b03610f308473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55610f40610ae88560025461249a565b6040518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a361384f565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610fbe6104b6565b1660005260056020526020604060002054604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206040516acecb8f27f4200f3a0000008152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043561105a4382106124b1565b600c549060005b82811061109157828061107b575060405160008152602090f35b6107eb6107e361108c60209361246c565b612277565b90916001906110a6818418831c828516611cab565b918463ffffffff6110b685612277565b50541611156110cb575050905b919091611061565b919092507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81116110fd575b016110c3565b611105611c11565b6110f7565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576111426104b6565b600f549073ffffffffffffffffffffffffffffffffffffffff61116881841633146133e7565b811680156111ec577fffffffffffffffffffffffff0000000000000000000000000000000000000000929092168217600f556040805173ffffffffffffffffffffffffffffffffffffffff93841681529190921660208201527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f91819081016109c3565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f206164647265737300000000000000000000000000000000000000006044820152fd5b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104b35760405190806004549060019180831c92808216928315611322575b602092838610851461047c57858852602088019490811561044257506001146112c9576103e5876103d981890382611bd0565b600460005294509192917f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83861061131157505050910190506103d9826103e538806103c9565b8054858701529482019481016112f5565b93607f1693611296565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611367600435612363565b901561137857602090604051908152f35b506020600254610692565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff6113d06104b6565b16600052600b602052604060002054600081156000146113f857505060405160008152602090f35b6020917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60406114349320916001811061143d575b019061234b565b5054811c6107a5565b611445611c11565b61142d565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576114826104b6565b602435903360005260016020526114bd8160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54918083106114de576114d292039033611f5c565b60405160018152602090f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761054161159d6104b6565b6024359033611dcd565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600e54604051908152f35b6064359060ff8216820361000e57565b6084359060ff8216820361000e57565b503461000e5760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761163c6104b6565b6044359060243561164b6115e4565b928042116117465761170761174191610b2d95604051906116ef826116c36020820195898b8860609194939273ffffffffffffffffffffffffffffffffffffffff60808301967fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845216602083015260408201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101845283611bd0565b61170260a4359360843593519020613234565b612dce565b9161173b8373ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090815491600183019055565b14612516565b61257b565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152fd5b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405160048152f35b503461000e5760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576118176104b6565b61181f6104d9565b604435906064359261182f6115f4565b9380421161192657611901611921916116c3610b2d976118ee61187b8773ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090815491600183019055565b9360405193849160208301968c8c8c7f00000000000000000000000000000000000000000000000000000000000000008b929160a094919796959260c0850198855273ffffffffffffffffffffffffffffffffffffffff8092166020860152166040840152606083015260808201520152565b61170260c4359360a43593519020613234565b73ffffffffffffffffffffffffffffffffffffffff808416911614612c3a565b611f5c565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020611a116119c16104b6565b73ffffffffffffffffffffffffffffffffffffffff6119de6104d9565b91166000526001835260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611a526104b6565b6024359063ffffffff90818316830361000e576103e59273ffffffffffffffffffffffffffffffffffffffff611aaa9260006020604051611a9281611b8b565b828152015216600052600b602052604060002061234b565b509060405191611ab983611b8b565b54908116825260201c60208201526040519182918291909160207bffffffffffffffffffffffffffffffffffffffffffffffffffffffff81604084019563ffffffff8151168552015116910152565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff600f5416604051908152f35b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117611ba757604052565b611baf611b5b565b604052565b60c0810190811067ffffffffffffffff821117611ba757604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611ba757604052565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b62ed4e00907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff12b1ff8111611c71570190565b611c79611c11565b0190565b6001907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe8111611c71570190565b81198111611c71570190565b15611cbe57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b15611d4957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b919073ffffffffffffffffffffffffffffffffffffffff928381168015611ed857611ed694831690611e00821515611cb7565b611e0a848461360a565b84611e358473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54611e4282821015611d42565b03611e6d8473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55611e988473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b611ea3868254611cab565b90556040518581527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a36138e6565b565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff918281169283156120985782169384156120145780611ffe7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594611fd961200f9573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b556040519081529081906020820190565b0390a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff821660005260016020526121698160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8403612199575b50505050565b8084106121b4576121ab930391611f5c565b38808080612193565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b1561221957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152fd5b600c548110156122ae57600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190600090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6008548110156122ae5760086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30190600090565b6007548110156122ae5760076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880190600090565b80548210156122ae5760005260206000200190600090565b80156123a9576123809061237b600954821115612212565b612c9f565b60075481036123925750600090600090565b61239b906122dd565b90549060031b1c9060019190565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a2069642069732030000000000000000000006044820152fd5b80156123a9576124259061241f600954821115612212565b82612d3b565b81548103612437575050600090600090565b600161239b920161234b565b60405190611ed682611b8b565b8060041061245f575b60040390565b612467611c11565b612459565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9060018110611c71570190565b8181106124a5570390565b6124ad611c11565b0390565b156124b857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152fd5b1561251d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152fd5b611ed69173ffffffffffffffffffffffffffffffffffffffff809216600092818452600a602052806040852054168092856020527f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f604087205496600a6020526040812094871694857fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055604051a45b919073ffffffffffffffffffffffffffffffffffffffff80821693168381141580612862575b6126405750505050565b806126c0575b5082612653575b80612193565b7fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916126a26126a79273ffffffffffffffffffffffffffffffffffffffff16600052600b602052604060002090565b612a54565b60408051928352602083019190915290a238808061264d565b80600052600b6020527fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7246040600020805480159182600014612829577bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b1691612728888461249a565b9315806127fb575b1561279a5761274e612784926107dd612748876132a5565b9361246c565b509063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000083549260201b169116179055565b604080519182526020820192909252a238612646565b506127f6906127a843613352565b906127f16127b5866132a5565b6127cc6127c0612443565b63ffffffff9095168552565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020840152565b61290d565b612784565b5061281c61281161280b8361246c565b8461234b565b505463ffffffff1690565b63ffffffff164314612730565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6128586128528461246c565b8361234b565b505460201c61271c565b50821515612636565b61288f600c5468010000000000000000811015612900575b60018101600c55612277565b6128d157815160209283015190921b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b612908611b5b565b612883565b805461288f9168010000000000000000821015612930575b60018201815561234b565b612938611b5b565b612925565b600c5490918115918215612a21577bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b1693808510612a14575b84039215806129f7575b1561299d57611ed69061274e61108c612997866132a5565b9261246c565b50611ed66129aa43613352565b6129f26129b6856132a5565b6129cd6129c1612443565b63ffffffff9094168452565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020830152565b61286b565b50612a0761281161108c8361246c565b63ffffffff16431461297f565b612a1c611c11565b612975565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612a4a61108c8361246c565b505460201c61296b565b909181549182159283600014612b2057612a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b169586611cab565b931580612b04575b15612aaf5761274e611ed6926107dd612748876132a5565b50611ed690612abd43613352565b906127f1612aca866132a5565b63ffffffff60405194612adc86611b8b565b1684527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020840152565b5063ffffffff612b1661280b8361246c565b5054164314612a97565b612a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612b52612b4c8461246c565b8561234b565b505460201c612a87565b600c5490918115918215612c0457612b957bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b169485611cab565b921580612be8575b15612bb557611ed69061274e61108c612997866132a5565b50611ed6612bc243613352565b6129f2612bce856132a5565b6129cd60405193612bde85611b8b565b63ffffffff168452565b5063ffffffff612bfa61108c8361246c565b5054164314612b9d565b612b957bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612c3061108c8461246c565b505460201c612b8d565b15612c4157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152fd5b600754908115612d34576000915b808310612cf857508115159081612cd1575b5015612cce57612cce9061246c565b90565b9050612cf1612ce7612ce28461246c565b612314565b90549060031b1c90565b1438612cbf565b612d0981841860011c828516611cab565b9082612d17612ce784612314565b1115612d235750612cad565b9250612d2e90611c7d565b91612cad565b5050600090565b8054918215612dc6576000925b808410612d8557508215159182612d6a575b505015612cce57612cce9061246c565b612d7d919250612ce7906107dd8561246c565b143880612d5a565b612d9681851860011c828616611cab565b908183612da6612ce7838861234b565b1115612db3575050612d48565b909450612dc09150611c7d565b92612d48565b505050600090565b91612cce9391612ddd9361304a565b919091612e1e565b60051115612def57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612e2781612de5565b80612e2f5750565b612e3881612de5565b60018103612e9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b612ea881612de5565b60028103612f0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b612f1881612de5565b60038103612fa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b80612fb1600492612de5565b14612fb857565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b506040513d6000823e3d90fd5b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116131015760ff16601b811415806130f6575b6130ea579160809493916020936040519384528484015260408301526060820152600093849182805260015afa156130dd575b815173ffffffffffffffffffffffffffffffffffffffff8116156130d7579190565b50600190565b6130e561303d565b6130b5565b50505050600090600490565b50601c811415613082565b50505050600090600390565b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001630148061320b575b15613175577f000000000000000000000000000000000000000000000000000000000000000090565b60405160208101907f000000000000000000000000000000000000000000000000000000000000000082527f000000000000000000000000000000000000000000000000000000000000000060408201527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a082015260a0815261320581611bb4565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000000461461314c565b61323c61310d565b906040519060208201927f1901000000000000000000000000000000000000000000000000000000000000845260228301526042820152604281526080810181811067ffffffffffffffff821117613298575b60405251902090565b6132a0611b5b565b61328f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff908181116132ce571690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f32342062697473000000000000000000000000000000000000000000000000006064820152fd5b63ffffffff90818111613363571690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201527f32206269747300000000000000000000000000000000000000000000000000006064820152fd5b156133ee57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f6f6e6c792061646d696e000000000000000000000000000000000000000000006044820152fd5b1561345357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f636c696666206e6f7420706173736564000000000000000000000000000000006044820152fd5b156134b857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6e6f7420726561647920746f20616476616e63650000000000000000000000006044820152fd5b75013ce9a36f23c0fc90eebd44c99eaa68fb9493e380a28111600116613547575b6acecb8f27f4200f3a0000000290565b61354f611c11565b613537565b73ffffffffffffffffffffffffffffffffffffffff81166135f9575060008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546009547f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89190806135ca8461380c565b106135db575b505050611ed661369f565b826135eb6001926135f195613763565b01613763565b3880806135d0565b6136029061364a565b611ed661369f565b9073ffffffffffffffffffffffffffffffffffffffff8083166136325750613602915061364a565b811661364257506136029061364a565b61364a611ed6925b73ffffffffffffffffffffffffffffffffffffffff16600052600660205260406000206000602052604060002054600954806136858461380c565b1061368f57505050565b826135eb600192611ed695613763565b60025460095490816136af6137bd565b106136b8575050565b6137316007546136e1680100000000000000009182811015613756575b60018101600755612314565b9481549560031b957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9687811b9283911b1691191617905560085490811015613749575b600181016008556122dd565b909283549160031b90811b9283911b16911916179055565b613751611b5b565b613725565b61375e611b5b565b6136d5565b805461378591680100000000000000008210156129305760018201815561234b565b819291549060031b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811b9283911b16911916179055565b600754806137cb5750600090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff816001612ce793106137ff575b01612314565b613807611c11565b6137f9565b8054908161381b575050600090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826001612ce7941061143d57019061234b565b90611ed69173ffffffffffffffffffffffffffffffffffffffff809116600052600a602052806040600020541690600080526040600020541690612610565b600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e35473ffffffffffffffffffffffffffffffffffffffff91821660009081526040902054611ed693929081169116612610565b90611ed6929173ffffffffffffffffffffffffffffffffffffffff809116600052600a60205280806040600020541692166000526040600020541690612610565b1561392e57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201527f766572666c6f77696e6720766f746573000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff8216918215613a98578181613a94946139e3613a659461364a565b6139eb61369f565b6139fa610ae884600254611cab565b613a248273ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b613a2f848254611cab565b90556040518381526000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a361388e565b613a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6002541115613927565b612b5c565b5050565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b15613afd57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220723ba58af44e0c8cb43185c6e3c8bc7c011b06669ccbf98c30480ae3ccec7c1b64736f6c634300080e00338b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724000000000000000000000000b81819ef1e84f04b6eb7ad210677936688ba31230000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Deployed Bytecode
0x60806040526004361015610013575b600080fd5b60003560e01c806306fdde03146102da578063095ea7b3146102d157806318160ddd146102c857806323b872dd146102bf5780632cb69587146101f0578063313ce567146102b65780633644e515146102ad57806339509351146102a45780633a46b1a81461029b5780633cf80e6c1461029257806342966c68146102895780634ee2cd7e14610280578063587cde1e146102775780635c19a95c1461026e5780636e229a26146102655780636fcfff451461025c57806370a0823114610253578063766718081461024a57806379cc6790146102415780637ecebe00146102385780638b49a2901461022f5780638e539e8c146102265780638f2839701461021d57806395d89b4114610214578063981b24d01461020b5780639ab24eb014610202578063a457c2d7146101f9578063a70b9f0c146101f0578063a9059cbb146101e7578063b99fa5f3146101de578063c3cda520146101d5578063c8b72f8f146101cc578063d505accf146101c3578063dd62ed3e146101ba578063f1127ed8146101b15763f851a440146101a957600080fd5b61000e611b08565b5061000e611a1a565b5061000e611984565b5061000e6117df565b5061000e6117a4565b5061000e611604565b5061000e6115a7565b5061000e611562565b5061000e6105e0565b5061000e61144a565b5061000e611383565b5061000e61132c565b5061000e61124a565b5061000e61110a565b5061000e61101c565b5061000e610fd7565b5061000e610f71565b5061000e610e55565b5061000e610e18565b5061000e610db2565b5061000e610d3e565b5061000e610ce4565b5061000e610ca3565b5061000e610c3c565b5061000e610bb3565b5061000e610a2f565b5061000e61086c565b5061000e61071f565b5061000e61069a565b5061000e610658565b5061000e61061d565b5061000e610589565b5061000e61054c565b5061000e6104fc565b5061000e610359565b919091602080825283519081818401526000945b828610610343575050601f817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0926040959611610336575b0116010190565b600085828601015261032f565b85810182015184870160400152948101946102f7565b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104b35760405190806003549060019180831c928082169283156104a9575b602092838610851461047c57858852602088019490811561044257506001146103e9575b6103e5876103d981890382611bd0565b604051918291826102e3565b0390f35b600360005294509192917fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b83861061043157505050910190506103d9826103e538806103c9565b805485870152948201948101610415565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685525050500191506103d99050826103e538806103c9565b6024827f4e487b710000000000000000000000000000000000000000000000000000000081526022600452fd5b93607f16936103a5565b80fd5b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361000e57565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416105376104b6565b6024359033611f5c565b602060405160018152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600254604051908152f35b503461000e5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416105c46104b6565b6105cc6104d9565b604435916105db83338361211b565b611dcd565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405162ed4e008152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405160128152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602061069261310d565b604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576105416106d56104b6565b3360005260016020526107186024356107128360406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54611cab565b9033611f5c565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576107576104b6565b73ffffffffffffffffffffffffffffffffffffffff6024359161077b4384106124b1565b16600052600b60205260406000208054916000905b8382106107f0575050816107cb575050602060005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60405191168152f35b6107e36107eb916107dd60209461246c565b9061234b565b505460201c90565b6107a5565b909192600190610806818518831c828616611cab565b918363ffffffff610817858961234b565b505416111561082d575050915b90929192610790565b919093507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe811161085f575b01610824565b610867611c11565b610859565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576108bf73ffffffffffffffffffffffffffffffffffffffff600f541633146133e7565b600d5460048110156109d1576109837facfa06cebbab8226f9a388bff9f5fcf4569298028d939f4765958dc57dbb330b9161092461091c7f00000000000000000000000000000000000000000000000000000000633adc93611c41565b42101561344c565b61097561097061095661094d600e5461094761093f82611c41565b4210156134b1565b4261249a565b62ed4e00900490565b61095f84612450565b90818111156109c857508093611cab565b600d55565b61097e42600e55565b613516565b6109ab816109a6600f5473ffffffffffffffffffffffffffffffffffffffff1690565b6139b2565b600d5460408051918252602082019290925290819081015b0390a1005b90508093611cab565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f6e6f2065706f636873206c6566740000000000000000000000000000000000006044820152fd5b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576004353315610b2f57610b2d90610a7533613554565b80610aa03373ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54610aad82821015613af6565b03610ad83373ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55610aed610ae88260025461249a565b600255565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a3610b28813361384f565b61293d565b005b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff610c026104b6565b16600081815260068352610c1b60408220602435612407565b929015610c2c575050604051908152f35b6040925081528083522054610692565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff80610c8c6104b6565b16600052600a825260406000205416604051908152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610b2d610cde6104b6565b3361257b565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206040517f00000000000000000000000000000000000000000000000000000000633adc938152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610d8b6104b6565b16600052600b6020526020610da4604060002054613352565b63ffffffff60405191168152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610dff6104b6565b1660005260006020526020604060002054604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600d54604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57610e8d6104b6565b602435610e9b81338461211b565b73ffffffffffffffffffffffffffffffffffffffff8216918215610b2f5781816000610b2d95610ecd610b2895613554565b83610ef88473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54610f0582821015613af6565b03610f308473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55610f40610ae88560025461249a565b6040518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a361384f565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff610fbe6104b6565b1660005260056020526020604060002054604051908152f35b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760206040516acecb8f27f4200f3a0000008152f35b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5760043561105a4382106124b1565b600c549060005b82811061109157828061107b575060405160008152602090f35b6107eb6107e361108c60209361246c565b612277565b90916001906110a6818418831c828516611cab565b918463ffffffff6110b685612277565b50541611156110cb575050905b919091611061565b919092507ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe81116110fd575b016110c3565b611105611c11565b6110f7565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576111426104b6565b600f549073ffffffffffffffffffffffffffffffffffffffff61116881841633146133e7565b811680156111ec577fffffffffffffffffffffffff0000000000000000000000000000000000000000929092168217600f556040805173ffffffffffffffffffffffffffffffffffffffff93841681529190921660208201527f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f91819081016109c3565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600c60248201527f7a65726f206164647265737300000000000000000000000000000000000000006044820152fd5b503461000e576000807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126104b35760405190806004549060019180831c92808216928315611322575b602092838610851461047c57858852602088019490811561044257506001146112c9576103e5876103d981890382611bd0565b600460005294509192917f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b83861061131157505050910190506103d9826103e538806103c9565b8054858701529482019481016112f5565b93607f1693611296565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611367600435612363565b901561137857602090604051908152f35b506020600254610692565b503461000e5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5773ffffffffffffffffffffffffffffffffffffffff6113d06104b6565b16600052600b602052604060002054600081156000146113f857505060405160008152602090f35b6020917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60406114349320916001811061143d575b019061234b565b5054811c6107a5565b611445611c11565b61142d565b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576114826104b6565b602435903360005260016020526114bd8160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54918083106114de576114d292039033611f5c565b60405160018152602090f35b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761054161159d6104b6565b6024359033611dcd565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020600e54604051908152f35b6064359060ff8216820361000e57565b6084359060ff8216820361000e57565b503461000e5760c07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e5761163c6104b6565b6044359060243561164b6115e4565b928042116117465761170761174191610b2d95604051906116ef826116c36020820195898b8860609194939273ffffffffffffffffffffffffffffffffffffffff60808301967fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf845216602083015260408201520152565b037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08101845283611bd0565b61170260a4359360843593519020613234565b612dce565b9161173b8373ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090815491600183019055565b14612516565b61257b565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230566f7465733a207369676e617475726520657870697265640000006044820152fd5b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602060405160048152f35b503461000e5760e07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576118176104b6565b61181f6104d9565b604435906064359261182f6115f4565b9380421161192657611901611921916116c3610b2d976118ee61187b8773ffffffffffffffffffffffffffffffffffffffff166000526005602052604060002090815491600183019055565b9360405193849160208301968c8c8c7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98b929160a094919796959260c0850198855273ffffffffffffffffffffffffffffffffffffffff8092166020860152166040840152606083015260808201520152565b61170260c4359360a43593519020613234565b73ffffffffffffffffffffffffffffffffffffffff808416911614612c3a565b611f5c565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e650000006044820152fd5b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e576020611a116119c16104b6565b73ffffffffffffffffffffffffffffffffffffffff6119de6104d9565b91166000526001835260406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54604051908152f35b503461000e5760407ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57611a526104b6565b6024359063ffffffff90818316830361000e576103e59273ffffffffffffffffffffffffffffffffffffffff611aaa9260006020604051611a9281611b8b565b828152015216600052600b602052604060002061234b565b509060405191611ab983611b8b565b54908116825260201c60208201526040519182918291909160207bffffffffffffffffffffffffffffffffffffffffffffffffffffffff81604084019563ffffffff8151168552015116910152565b503461000e5760007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261000e57602073ffffffffffffffffffffffffffffffffffffffff600f5416604051908152f35b507f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040810190811067ffffffffffffffff821117611ba757604052565b611baf611b5b565b604052565b60c0810190811067ffffffffffffffff821117611ba757604052565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611ba757604052565b507f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b62ed4e00907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff12b1ff8111611c71570190565b611c79611c11565b0190565b6001907ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe8111611c71570190565b81198111611c71570190565b15611cbe57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b15611d4957565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b919073ffffffffffffffffffffffffffffffffffffffff928381168015611ed857611ed694831690611e00821515611cb7565b611e0a848461360a565b84611e358473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b54611e4282821015611d42565b03611e6d8473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b55611e988473ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b611ea3868254611cab565b90556040518581527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a36138e6565b565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff918281169283156120985782169384156120145780611ffe7f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594611fd961200f9573ffffffffffffffffffffffffffffffffffffffff166000526001602052604060002090565b9073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b556040519081529081906020820190565b0390a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff821660005260016020526121698160406000209073ffffffffffffffffffffffffffffffffffffffff16600052602052604060002090565b54927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8403612199575b50505050565b8084106121b4576121ab930391611f5c565b38808080612193565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b1561221957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f4552433230536e617073686f743a206e6f6e6578697374656e742069640000006044820152fd5b600c548110156122ae57600c6000527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70190600090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6008548110156122ae5760086000527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30190600090565b6007548110156122ae5760076000527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880190600090565b80548210156122ae5760005260206000200190600090565b80156123a9576123809061237b600954821115612212565b612c9f565b60075481036123925750600090600090565b61239b906122dd565b90549060031b1c9060019190565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4552433230536e617073686f743a2069642069732030000000000000000000006044820152fd5b80156123a9576124259061241f600954821115612212565b82612d3b565b81548103612437575050600090600090565b600161239b920161234b565b60405190611ed682611b8b565b8060041061245f575b60040390565b612467611c11565b612459565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9060018110611c71570190565b8181106124a5570390565b6124ad611c11565b0390565b156124b857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e6564006044820152fd5b1561251d57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e6365000000000000006044820152fd5b611ed69173ffffffffffffffffffffffffffffffffffffffff809216600092818452600a602052806040852054168092856020527f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f604087205496600a6020526040812094871694857fffffffffffffffffffffffff0000000000000000000000000000000000000000825416179055604051a45b919073ffffffffffffffffffffffffffffffffffffffff80821693168381141580612862575b6126405750505050565b806126c0575b5082612653575b80612193565b7fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724916126a26126a79273ffffffffffffffffffffffffffffffffffffffff16600052600b602052604060002090565b612a54565b60408051928352602083019190915290a238808061264d565b80600052600b6020527fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7246040600020805480159182600014612829577bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b1691612728888461249a565b9315806127fb575b1561279a5761274e612784926107dd612748876132a5565b9361246c565b509063ffffffff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000083549260201b169116179055565b604080519182526020820192909252a238612646565b506127f6906127a843613352565b906127f16127b5866132a5565b6127cc6127c0612443565b63ffffffff9095168552565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020840152565b61290d565b612784565b5061281c61281161280b8361246c565b8461234b565b505463ffffffff1690565b63ffffffff164314612730565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6128586128528461246c565b8361234b565b505460201c61271c565b50821515612636565b61288f600c5468010000000000000000811015612900575b60018101600c55612277565b6128d157815160209283015190921b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000001663ffffffff92909216919091179055565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b612908611b5b565b612883565b805461288f9168010000000000000000821015612930575b60018201815561234b565b612938611b5b565b612925565b600c5490918115918215612a21577bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b1693808510612a14575b84039215806129f7575b1561299d57611ed69061274e61108c612997866132a5565b9261246c565b50611ed66129aa43613352565b6129f26129b6856132a5565b6129cd6129c1612443565b63ffffffff9094168452565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020830152565b61286b565b50612a0761281161108c8361246c565b63ffffffff16431461297f565b612a1c611c11565b612975565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612a4a61108c8361246c565b505460201c61296b565b909181549182159283600014612b2057612a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b169586611cab565b931580612b04575b15612aaf5761274e611ed6926107dd612748876132a5565b50611ed690612abd43613352565b906127f1612aca866132a5565b63ffffffff60405194612adc86611b8b565b1684527bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166020840152565b5063ffffffff612b1661280b8361246c565b5054164314612a97565b612a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612b52612b4c8461246c565b8561234b565b505460201c612a87565b600c5490918115918215612c0457612b957bffffffffffffffffffffffffffffffffffffffffffffffffffffffff60005b169485611cab565b921580612be8575b15612bb557611ed69061274e61108c612997866132a5565b50611ed6612bc243613352565b6129f2612bce856132a5565b6129cd60405193612bde85611b8b565b63ffffffff168452565b5063ffffffff612bfa61108c8361246c565b5054164314612b9d565b612b957bffffffffffffffffffffffffffffffffffffffffffffffffffffffff612c3061108c8461246c565b505460201c612b8d565b15612c4157565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e617475726500006044820152fd5b600754908115612d34576000915b808310612cf857508115159081612cd1575b5015612cce57612cce9061246c565b90565b9050612cf1612ce7612ce28461246c565b612314565b90549060031b1c90565b1438612cbf565b612d0981841860011c828516611cab565b9082612d17612ce784612314565b1115612d235750612cad565b9250612d2e90611c7d565b91612cad565b5050600090565b8054918215612dc6576000925b808410612d8557508215159182612d6a575b505015612cce57612cce9061246c565b612d7d919250612ce7906107dd8561246c565b143880612d5a565b612d9681851860011c828616611cab565b908183612da6612ce7838861234b565b1115612db3575050612d48565b909450612dc09150611c7d565b92612d48565b505050600090565b91612cce9391612ddd9361304a565b919091612e1e565b60051115612def57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b612e2781612de5565b80612e2f5750565b612e3881612de5565b60018103612e9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b612ea881612de5565b60028103612f0f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b612f1881612de5565b60038103612fa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b80612fb1600492612de5565b14612fb857565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608490fd5b506040513d6000823e3d90fd5b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116131015760ff16601b811415806130f6575b6130ea579160809493916020936040519384528484015260408301526060820152600093849182805260015afa156130dd575b815173ffffffffffffffffffffffffffffffffffffffff8116156130d7579190565b50600190565b6130e561303d565b6130b5565b50505050600090600490565b50601c811415613082565b50505050600090600390565b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000bada557cdfa4f5a45bf7fed3cbb40db567f9e9ad1630148061320b575b15613175577f1bf847280590b693157a53d2a8c6371e211ddc9ee197c6ab3fcb94eb2627ba8790565b60405160208101907f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f82527f5f5ae7b1447083d2714e37be74e6563b9b945ac4ef27fecc7b643ab0d3f1177260408201527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260a0815261320581611bb4565b51902090565b507f0000000000000000000000000000000000000000000000000000000000000001461461314c565b61323c61310d565b906040519060208201927f1901000000000000000000000000000000000000000000000000000000000000845260228301526042820152604281526080810181811067ffffffffffffffff821117613298575b60405251902090565b6132a0611b5b565b61328f565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff908181116132ce571690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203260448201527f32342062697473000000000000000000000000000000000000000000000000006064820152fd5b63ffffffff90818111613363571690565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201527f32206269747300000000000000000000000000000000000000000000000000006064820152fd5b156133ee57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f6f6e6c792061646d696e000000000000000000000000000000000000000000006044820152fd5b1561345357565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f636c696666206e6f7420706173736564000000000000000000000000000000006044820152fd5b156134b857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f6e6f7420726561647920746f20616476616e63650000000000000000000000006044820152fd5b75013ce9a36f23c0fc90eebd44c99eaa68fb9493e380a28111600116613547575b6acecb8f27f4200f3a0000000290565b61354f611c11565b613537565b73ffffffffffffffffffffffffffffffffffffffff81166135f9575060008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546009547f54cdd369e4e8a8515e52ca72ec816c2101831ad1f18bf44102ed171459c9b4f89190806135ca8461380c565b106135db575b505050611ed661369f565b826135eb6001926135f195613763565b01613763565b3880806135d0565b6136029061364a565b611ed661369f565b9073ffffffffffffffffffffffffffffffffffffffff8083166136325750613602915061364a565b811661364257506136029061364a565b61364a611ed6925b73ffffffffffffffffffffffffffffffffffffffff16600052600660205260406000206000602052604060002054600954806136858461380c565b1061368f57505050565b826135eb600192611ed695613763565b60025460095490816136af6137bd565b106136b8575050565b6137316007546136e1680100000000000000009182811015613756575b60018101600755612314565b9481549560031b957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9687811b9283911b1691191617905560085490811015613749575b600181016008556122dd565b909283549160031b90811b9283911b16911916179055565b613751611b5b565b613725565b61375e611b5b565b6136d5565b805461378591680100000000000000008210156129305760018201815561234b565b819291549060031b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811b9283911b16911916179055565b600754806137cb5750600090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff816001612ce793106137ff575b01612314565b613807611c11565b6137f9565b8054908161381b575050600090565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826001612ce7941061143d57019061234b565b90611ed69173ffffffffffffffffffffffffffffffffffffffff809116600052600a602052806040600020541690600080526040600020541690612610565b600a6020527f13da86008ba1c6922daee3e07db95305ef49ebced9f5467a0b8613fcc6b343e35473ffffffffffffffffffffffffffffffffffffffff91821660009081526040902054611ed693929081169116612610565b90611ed6929173ffffffffffffffffffffffffffffffffffffffff809116600052600a60205280806040600020541692166000526040600020541690612610565b1561392e57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201527f766572666c6f77696e6720766f746573000000000000000000000000000000006064820152fd5b9073ffffffffffffffffffffffffffffffffffffffff8216918215613a98578181613a94946139e3613a659461364a565b6139eb61369f565b6139fa610ae884600254611cab565b613a248273ffffffffffffffffffffffffffffffffffffffff166000526000602052604060002090565b613a2f848254611cab565b90556040518381526000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602090a361388e565b613a8f7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6002541115613927565b612b5c565b5050565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b15613afd57565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220723ba58af44e0c8cb43185c6e3c8bc7c011b06669ccbf98c30480ae3ccec7c1b64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b81819ef1e84f04b6eb7ad210677936688ba31230000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
-----Decoded View---------------
Arg [0] : _admin (address): 0xB81819ef1e84f04B6eb7ad210677936688Ba3123
Arg [1] : supply (uint256): 1000000000000000000000000000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000b81819ef1e84f04b6eb7ad210677936688ba3123
Arg [1] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.