ERC-20
Overview
Max Total Supply
271,716,986.13 CRA
Holders
18,831 ( -0.005%)
Market
Price
$0.00 @ 0.000019 AVAX (+11.53%)
Onchain Market Cap
$187,392.34
Circulating Supply Market Cap
$245,507.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
206 CRAValue
$0.14 ( ~0.00390914317344733 AVAX) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
CRA
Compiler Version
v0.8.3+commit.8d00100c
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2021-11-03 */ pragma solidity 0.8.3; // SPDX-License-Identifier: MIT /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @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); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _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 Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * 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] */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { // 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 recover(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 recover(hash, r, vs); } else { revert("ECDSA: invalid signature length"); } } /** * @dev Overload of {ECDSA-recover} 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.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return recover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. require( uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0, "ECDSA: invalid signature 's' value" ); require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value"); // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); require(signer != address(0), "ECDSA: invalid signature"); return signer; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 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); } } /** * @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; } } /** * @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(); } } /** * @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, so we distribute. return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 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); } } /** * @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); } } /** * @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. * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this * will significantly increase the base gas cost of transfers. * * _Available since v4.2._ */ abstract contract ERC20Votes is 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 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 an account's voting power. */ event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance); /** * @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 returns (address) { return _delegates[account]; } /** * @dev Gets the current votes balance for `account` */ function getVotes(address account) public view 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 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 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, 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 `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 { return _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 { 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"); return _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; } } /** * @dev Extension of ERC20 to support Compound's voting and delegation. This version exactly matches Compound's * interface, with the drawback of only supporting supply up to (2^96^ - 1). * * NOTE: You should use this contract if you need exact compatibility with COMP (for example in order to use your token * with Governor Alpha or Bravo) and if you are sure the supply cap of 2^96^ is enough for you. Otherwise, use the * {ERC20Votes} variant of this module. * * This extensions 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 {getCurrentVotes} and {getPriorVotes}. * * 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. * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this * will significantly increase the base gas cost of transfers. * * _Available since v4.2._ */ abstract contract ERC20VotesComp is ERC20Votes { /** * @dev Comp version of the {getVotes} accessor, with `uint96` return type. */ function getCurrentVotes(address account) external view returns (uint96) { return SafeCast.toUint96(getVotes(account)); } /** * @dev Comp version of the {getPastVotes} accessor, with `uint96` return type. */ function getPriorVotes(address account, uint256 blockNumber) external view returns (uint96) { return SafeCast.toUint96(getPastVotes(account, blockNumber)); } /** * @dev Maximum token supply. Reduced to `type(uint96).max` (2^96^ - 1) to fit COMP interface. */ function _maxSupply() internal view virtual override returns (uint224) { return type(uint96).max; } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } contract CRA is ERC20VotesComp, Ownable, Pausable { uint256 private constant MAX_SUPPLY = 1000_000_000 * 10 ** 18; // 1B constructor () ERC20("CRA", "CRA") ERC20Permit("CRA") { } function mint(address _to, uint256 _amount) external onlyOwner() { _mint(_to, _amount); require(totalSupply() <= MAX_SUPPLY, "MAX"); } function burn(uint256 amount) external { _burn(msg.sender, amount); } function pause() onlyOwner() external { _pause(); } function unpause() onlyOwner() external { _unpause(); } function _beforeTokenTransfer( address from, address to, uint256 amount ) whenNotPaused() internal override { super._beforeTokenTransfer(from, to, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"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":"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":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"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"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610120908152503480156200003a57600080fd5b506040518060400160405280600381526020017f4352410000000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f43524100000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435241000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c92919062000311565b5080600490805190602001906200014592919062000311565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260c081815250508160e081815250504660a08181525050620001b08184846200020760201b60201c565b60808181525050806101008181525050505050505050620001e6620001da6200024360201b60201c565b6200024b60201b60201c565b6000600960146101000a81548160ff021916908315150217905550620004fe565b6000838383463060405160200162000224959493929190620003f4565b6040516020818303038152906040528051906020012090509392505050565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200031f9062000499565b90600052602060002090601f0160209004810192826200034357600085556200038f565b82601f106200035e57805160ff19168380011785556200038f565b828001600101855582156200038f579182015b828111156200038e57825182559160200191906001019062000371565b5b5090506200039e9190620003a2565b5090565b5b80821115620003bd576000816000905550600101620003a3565b5090565b620003cc8162000451565b82525050565b620003dd8162000465565b82525050565b620003ee816200048f565b82525050565b600060a0820190506200040b6000830188620003d2565b6200041a6020830187620003d2565b620004296040830186620003d2565b620004386060830185620003e3565b620004476080830184620003c1565b9695505050505050565b60006200045e826200046f565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006002820490506001821680620004b257607f821691505b60208210811415620004c957620004c8620004cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160c05160e05161010051610120516145a06200054e600039600061126b01526000611ac601526000611b0801526000611ae701526000611a7301526000611a9b01526145a06000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf146105f5578063dd62ed3e14610611578063f1127ed814610641578063f2fde38b14610671576101f0565b8063a457c2d714610549578063a9059cbb14610579578063b4b5ea57146105a9578063c3cda520146105d9576101f0565b80638da5cb5b116100de5780638da5cb5b146104ad5780638e539e8c146104cb57806395d89b41146104fb5780639ab24eb014610519576101f0565b8063715018a614610439578063782d6fe1146104435780637ecebe00146104735780638456cb59146104a3576101f0565b80633f4ba83a116101875780635c19a95c116101565780635c19a95c1461039f5780635c975abb146103bb5780636fcfff45146103d957806370a0823114610409576101f0565b80633f4ba83a1461032d57806340c10f191461033757806342966c6814610353578063587cde1e1461036f576101f0565b8063313ce567116101c3578063313ce567146102915780633644e515146102af57806339509351146102cd5780633a46b1a8146102fd576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461024357806323b872dd14610261575b600080fd5b6101fd61068d565b60405161020a919061371a565b60405180910390f35b61022d60048036038101906102289190612f50565b61071f565b60405161023a91906135a6565b60405180910390f35b61024b61073d565b6040516102589190613ab7565b60405180910390f35b61027b60048036038101906102769190612e63565b610747565b60405161028891906135a6565b60405180910390f35b61029961083f565b6040516102a69190613b16565b60405180910390f35b6102b7610848565b6040516102c491906135c1565b60405180910390f35b6102e760048036038101906102e29190612f50565b610857565b6040516102f491906135a6565b60405180910390f35b61031760048036038101906103129190612f50565b610903565b6040516103249190613ab7565b60405180910390f35b610335610997565b005b610351600480360381019061034c9190612f50565b610a1d565b005b61036d60048036038101906103689190613051565b610afd565b005b61038960048036038101906103849190612dfe565b610b0a565b604051610396919061358b565b60405180910390f35b6103b960048036038101906103b49190612dfe565b610b73565b005b6103c3610b87565b6040516103d091906135a6565b60405180910390f35b6103f360048036038101906103ee9190612dfe565b610b9e565b6040516104009190613afb565b60405180910390f35b610423600480360381019061041e9190612dfe565b610bf2565b6040516104309190613ab7565b60405180910390f35b610441610c3a565b005b61045d60048036038101906104589190612f50565b610cc2565b60405161046a9190613b31565b60405180910390f35b61048d60048036038101906104889190612dfe565b610cde565b60405161049a9190613ab7565b60405180910390f35b6104ab610d2e565b005b6104b5610db4565b6040516104c2919061358b565b60405180910390f35b6104e560048036038101906104e09190613051565b610dde565b6040516104f29190613ab7565b60405180910390f35b610503610e34565b604051610510919061371a565b60405180910390f35b610533600480360381019061052e9190612dfe565b610ec6565b6040516105409190613ab7565b60405180910390f35b610563600480360381019061055e9190612f50565b610ffd565b60405161057091906135a6565b60405180910390f35b610593600480360381019061058e9190612f50565b6110e8565b6040516105a091906135a6565b60405180910390f35b6105c360048036038101906105be9190612dfe565b611106565b6040516105d09190613b31565b60405180910390f35b6105f360048036038101906105ee9190612f8c565b611120565b005b61060f600480360381019061060a9190612eb2565b611224565b005b61062b60048036038101906106269190612e27565b611366565b6040516106389190613ab7565b60405180910390f35b61065b60048036038101906106569190613015565b6113ed565b6040516106689190613a9c565b60405180910390f35b61068b60048036038101906106869190612dfe565b611523565b005b60606003805461069c90613d10565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890613d10565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061073361072c61161b565b8484611623565b6001905092915050565b6000600254905090565b60006107548484846117ee565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061079f61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561081f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108169061393c565b60405180910390fd5b6108338561082b61161b565b858403611623565b60019150509392505050565b60006012905090565b6000610852611a6f565b905090565b60006108f961086461161b565b84846001600061087261161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108f49190613b73565b611623565b6001905092915050565b6000438210610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061379c565b60405180910390fd5b61098f600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611b32565b905092915050565b61099f61161b565b73ffffffffffffffffffffffffffffffffffffffff166109bd610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061397c565b60405180910390fd5b610a1b611c8a565b565b610a2561161b565b73ffffffffffffffffffffffffffffffffffffffff16610a43610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a909061397c565b60405180910390fd5b610aa38282611d2c565b6b033b2e3c9fd0803ce8000000610ab861073d565b1115610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906139bc565b60405180910390fd5b5050565b610b073382611db9565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b84610b7e61161b565b82611dd7565b50565b6000600960149054906101000a900460ff16905090565b6000610beb600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611ef1565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4261161b565b73ffffffffffffffffffffffffffffffffffffffff16610c60610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad9061397c565b60405180910390fd5b610cc06000611f44565b565b6000610cd6610cd18484610903565b61200a565b905092915050565b6000610d27600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612065565b9050919050565b610d3661161b565b73ffffffffffffffffffffffffffffffffffffffff16610d54610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061397c565b60405180910390fd5b610db2612073565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e199061379c565b60405180910390fd5b610e2d600883611b32565b9050919050565b606060048054610e4390613d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6f90613d10565b8015610ebc5780601f10610e9157610100808354040283529160200191610ebc565b820191906000526020600020905b815481529060010190602001808311610e9f57829003601f168201915b5050505050905090565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610fd457600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610f629190613bfa565b81548110610f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610fd7565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b6000806001600061100c61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613a5c565b60405180910390fd5b6110dd6110d461161b565b85858403611623565b600191505092915050565b60006110fc6110f561161b565b84846117ee565b6001905092915050565b600061111961111483610ec6565b61200a565b9050919050565b83421115611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906137dc565b60405180910390fd5b60006111c56111bd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016111a2949392919061363d565b60405160208183030381529060405280519060200120612116565b858585612130565b90506111d0816122bb565b8614611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061381c565b60405180910390fd5b61121b8188611dd7565b50505050505050565b83421115611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e9061387c565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008888886112968c6122bb565b896040516020016112ac969594939291906135dc565b60405160208183030381529060405280519060200120905060006112cf82612116565b905060006112df82878787612130565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113469061391c565b60405180910390fd5b61135a8a8a8a611623565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113f5612d57565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b61152b61161b565b73ffffffffffffffffffffffffffffffffffffffff16611549610db4565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115969061397c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061383c565b60405180910390fd5b61161881611f44565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061385c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117e19190613ab7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906139fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061375c565b60405180910390fd5b6118d9838383612319565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561195f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119569061389c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f29190613b73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a569190613ab7565b60405180910390a3611a69848484612371565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611ac1577f00000000000000000000000000000000000000000000000000000000000000009050611b2f565b611b2c7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061239c565b90505b90565b6000808380549050905060005b81811015611bd7576000611b5382846123d6565b905084868281548110611b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff161115611bc157809250611bd1565b600181611bce9190613b73565b91505b50611b3f565b60008214611c5f5784600183611bed9190613bfa565b81548110611c24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611c62565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b611c92610b87565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906137bc565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d1561161b565b604051611d22919061358b565b60405180910390a1565b611d36828261243d565b611d3e61259d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611d6461073d565b1115611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c9061395c565b60405180910390fd5b611db360086125b3836125c9565b50505050565b611dc382826128b3565b611dd16008612a8a836125c9565b50505050565b6000611de283610b0a565b90506000611def84610bf2565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611eeb828483612aa0565b50505050565b600063ffffffff8016821115611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390613a1c565b60405180910390fd5b819050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006bffffffffffffffffffffffff801682111561205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061377c565b60405180910390fd5b819050919050565b600081600001549050919050565b61207b610b87565b156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b2906138dc565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ff61161b565b60405161210c919061358b565b60405180910390a1565b6000612129612123611a6f565b83612c99565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f906138bc565b60405180910390fd5b601b8460ff1614806121ad5750601c8460ff16145b6121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e3906138fc565b60405180910390fd5b60006001868686866040516000815260200160405260405161221194939291906136d5565b6020604051602081039080840390855afa158015612233573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061373c565b60405180910390fd5b80915050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061230881612065565b915061231381612ccc565b50919050565b612321610b87565b15612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906138dc565b60405180910390fd5b61236c838383612ce2565b505050565b61237c838383612ce7565b61239761238884610b0a565b61239184610b0a565b83612aa0565b505050565b600083838346306040516020016123b7959493929190613682565b6040516020818303038152906040528051906020012090509392505050565b6000600280836123e69190613d4c565b6002856123f39190613d4c565b6123fd9190613b73565b6124079190613bc9565b6002836124149190613bc9565b6002856124219190613bc9565b61242b9190613b73565b6124359190613b73565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613a7c565b60405180910390fd5b6124b960008383612319565b80600260008282546124cb9190613b73565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125209190613b73565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125859190613ab7565b60405180910390a361259960008383612371565b5050565b60006bffffffffffffffffffffffff8016905090565b600081836125c19190613b73565b905092915050565b6000806000858054905090506000811461265d57856001826125eb9190613bfa565b81548110612622577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612660565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061268e83858763ffffffff16565b9150600081118015612707575043866001836126aa9190613bfa565b815481106126e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156127ba5761271582612cec565b866001836127239190613bfa565b8154811061275a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506128aa565b8560405180604001604052806127cf43611ef1565b63ffffffff1681526020016127e385612cec565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a906139dc565b60405180910390fd5b61292f82600083612319565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906137fc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a0c9190613bfa565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a719190613ab7565b60405180910390a3612a8583600084612371565b505050565b60008183612a989190613bfa565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612adc5750600081115b15612c9457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bba57600080612b63600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a8a856125c9565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612baf929190613ad2565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9357600080612c3c600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125b3856125c9565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612c88929190613ad2565b60405180910390a250505b5b505050565b60008282604051602001612cae929190613554565b60405160208183030381529060405280519060200120905092915050565b6001816000016000828254019250508190555050565b505050565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d469061399c565b60405180910390fd5b819050919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081359050612da4816144f7565b92915050565b600081359050612db98161450e565b92915050565b600081359050612dce81614525565b92915050565b600081359050612de38161453c565b92915050565b600081359050612df881614553565b92915050565b600060208284031215612e1057600080fd5b6000612e1e84828501612d95565b91505092915050565b60008060408385031215612e3a57600080fd5b6000612e4885828601612d95565b9250506020612e5985828601612d95565b9150509250929050565b600080600060608486031215612e7857600080fd5b6000612e8686828701612d95565b9350506020612e9786828701612d95565b9250506040612ea886828701612dbf565b9150509250925092565b600080600080600080600060e0888a031215612ecd57600080fd5b6000612edb8a828b01612d95565b9750506020612eec8a828b01612d95565b9650506040612efd8a828b01612dbf565b9550506060612f0e8a828b01612dbf565b9450506080612f1f8a828b01612de9565b93505060a0612f308a828b01612daa565b92505060c0612f418a828b01612daa565b91505092959891949750929550565b60008060408385031215612f6357600080fd5b6000612f7185828601612d95565b9250506020612f8285828601612dbf565b9150509250929050565b60008060008060008060c08789031215612fa557600080fd5b6000612fb389828a01612d95565b9650506020612fc489828a01612dbf565b9550506040612fd589828a01612dbf565b9450506060612fe689828a01612de9565b9350506080612ff789828a01612daa565b92505060a061300889828a01612daa565b9150509295509295509295565b6000806040838503121561302857600080fd5b600061303685828601612d95565b925050602061304785828601612dd4565b9150509250929050565b60006020828403121561306357600080fd5b600061307184828501612dbf565b91505092915050565b61308381613c2e565b82525050565b61309281613c40565b82525050565b6130a181613c4c565b82525050565b6130b86130b382613c4c565b613d42565b82525050565b60006130c982613b4c565b6130d38185613b57565b93506130e3818560208601613cdd565b6130ec81613e0a565b840191505092915050565b6000613104601883613b57565b915061310f82613e1b565b602082019050919050565b6000613127602383613b57565b915061313282613e44565b604082019050919050565b600061314a602683613b57565b915061315582613e93565b604082019050919050565b600061316d601f83613b57565b915061317882613ee2565b602082019050919050565b6000613190601483613b57565b915061319b82613f0b565b602082019050919050565b60006131b3601d83613b57565b91506131be82613f34565b602082019050919050565b60006131d6602283613b57565b91506131e182613f5d565b604082019050919050565b60006131f9601983613b57565b915061320482613fac565b602082019050919050565b600061321c602683613b57565b915061322782613fd5565b604082019050919050565b600061323f602283613b57565b915061324a82614024565b604082019050919050565b6000613262600283613b68565b915061326d82614073565b600282019050919050565b6000613285601d83613b57565b91506132908261409c565b602082019050919050565b60006132a8602683613b57565b91506132b3826140c5565b604082019050919050565b60006132cb602283613b57565b91506132d682614114565b604082019050919050565b60006132ee601083613b57565b91506132f982614163565b602082019050919050565b6000613311602283613b57565b915061331c8261418c565b604082019050919050565b6000613334601e83613b57565b915061333f826141db565b602082019050919050565b6000613357602883613b57565b915061336282614204565b604082019050919050565b600061337a603083613b57565b915061338582614253565b604082019050919050565b600061339d602083613b57565b91506133a8826142a2565b602082019050919050565b60006133c0602783613b57565b91506133cb826142cb565b604082019050919050565b60006133e3600383613b57565b91506133ee8261431a565b602082019050919050565b6000613406602183613b57565b915061341182614343565b604082019050919050565b6000613429602583613b57565b915061343482614392565b604082019050919050565b600061344c602683613b57565b9150613457826143e1565b604082019050919050565b600061346f602483613b57565b915061347a82614430565b604082019050919050565b6000613492602583613b57565b915061349d8261447f565b604082019050919050565b60006134b5601f83613b57565b91506134c0826144ce565b602082019050919050565b6040820160008201516134e16000850182613518565b5060208201516134f460208501826134fa565b50505050565b61350381613c76565b82525050565b61351281613c9e565b82525050565b61352181613ca8565b82525050565b61353081613ca8565b82525050565b61353f81613cb8565b82525050565b61354e81613cc5565b82525050565b600061355f82613255565b915061356b82856130a7565b60208201915061357b82846130a7565b6020820191508190509392505050565b60006020820190506135a0600083018461307a565b92915050565b60006020820190506135bb6000830184613089565b92915050565b60006020820190506135d66000830184613098565b92915050565b600060c0820190506135f16000830189613098565b6135fe602083018861307a565b61360b604083018761307a565b6136186060830186613509565b6136256080830185613509565b61363260a0830184613509565b979650505050505050565b60006080820190506136526000830187613098565b61365f602083018661307a565b61366c6040830185613509565b6136796060830184613509565b95945050505050565b600060a0820190506136976000830188613098565b6136a46020830187613098565b6136b16040830186613098565b6136be6060830185613509565b6136cb608083018461307a565b9695505050505050565b60006080820190506136ea6000830187613098565b6136f76020830186613536565b6137046040830185613098565b6137116060830184613098565b95945050505050565b6000602082019050818103600083015261373481846130be565b905092915050565b60006020820190508181036000830152613755816130f7565b9050919050565b600060208201905081810360008301526137758161311a565b9050919050565b600060208201905081810360008301526137958161313d565b9050919050565b600060208201905081810360008301526137b581613160565b9050919050565b600060208201905081810360008301526137d581613183565b9050919050565b600060208201905081810360008301526137f5816131a6565b9050919050565b60006020820190508181036000830152613815816131c9565b9050919050565b60006020820190508181036000830152613835816131ec565b9050919050565b600060208201905081810360008301526138558161320f565b9050919050565b6000602082019050818103600083015261387581613232565b9050919050565b6000602082019050818103600083015261389581613278565b9050919050565b600060208201905081810360008301526138b58161329b565b9050919050565b600060208201905081810360008301526138d5816132be565b9050919050565b600060208201905081810360008301526138f5816132e1565b9050919050565b6000602082019050818103600083015261391581613304565b9050919050565b6000602082019050818103600083015261393581613327565b9050919050565b600060208201905081810360008301526139558161334a565b9050919050565b600060208201905081810360008301526139758161336d565b9050919050565b6000602082019050818103600083015261399581613390565b9050919050565b600060208201905081810360008301526139b5816133b3565b9050919050565b600060208201905081810360008301526139d5816133d6565b9050919050565b600060208201905081810360008301526139f5816133f9565b9050919050565b60006020820190508181036000830152613a158161341c565b9050919050565b60006020820190508181036000830152613a358161343f565b9050919050565b60006020820190508181036000830152613a5581613462565b9050919050565b60006020820190508181036000830152613a7581613485565b9050919050565b60006020820190508181036000830152613a95816134a8565b9050919050565b6000604082019050613ab160008301846134cb565b92915050565b6000602082019050613acc6000830184613509565b92915050565b6000604082019050613ae76000830185613509565b613af46020830184613509565b9392505050565b6000602082019050613b106000830184613527565b92915050565b6000602082019050613b2b6000830184613536565b92915050565b6000602082019050613b466000830184613545565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613b7e82613c9e565b9150613b8983613c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbe57613bbd613d7d565b5b828201905092915050565b6000613bd482613c9e565b9150613bdf83613c9e565b925082613bef57613bee613dac565b5b828204905092915050565b6000613c0582613c9e565b9150613c1083613c9e565b925082821015613c2357613c22613d7d565b5b828203905092915050565b6000613c3982613c56565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b60005b83811015613cfb578082015181840152602081019050613ce0565b83811115613d0a576000848401525b50505050565b60006002820490506001821680613d2857607f821691505b60208210811415613d3c57613d3b613ddb565b5b50919050565b6000819050919050565b6000613d5782613c9e565b9150613d6283613c9e565b925082613d7257613d71613dac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203960008201527f3620626974730000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f4d41580000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61450081613c2e565b811461450b57600080fd5b50565b61451781613c4c565b811461452257600080fd5b50565b61452e81613c9e565b811461453957600080fd5b50565b61454581613ca8565b811461455057600080fd5b50565b61455c81613cb8565b811461456757600080fd5b5056fea2646970667358221220df2167962fb166e58a222e093c55fd60994af41800444d819495873ad531c48864736f6c63430008030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063a457c2d7116100a2578063d505accf11610071578063d505accf146105f5578063dd62ed3e14610611578063f1127ed814610641578063f2fde38b14610671576101f0565b8063a457c2d714610549578063a9059cbb14610579578063b4b5ea57146105a9578063c3cda520146105d9576101f0565b80638da5cb5b116100de5780638da5cb5b146104ad5780638e539e8c146104cb57806395d89b41146104fb5780639ab24eb014610519576101f0565b8063715018a614610439578063782d6fe1146104435780637ecebe00146104735780638456cb59146104a3576101f0565b80633f4ba83a116101875780635c19a95c116101565780635c19a95c1461039f5780635c975abb146103bb5780636fcfff45146103d957806370a0823114610409576101f0565b80633f4ba83a1461032d57806340c10f191461033757806342966c6814610353578063587cde1e1461036f576101f0565b8063313ce567116101c3578063313ce567146102915780633644e515146102af57806339509351146102cd5780633a46b1a8146102fd576101f0565b806306fdde03146101f5578063095ea7b31461021357806318160ddd1461024357806323b872dd14610261575b600080fd5b6101fd61068d565b60405161020a919061371a565b60405180910390f35b61022d60048036038101906102289190612f50565b61071f565b60405161023a91906135a6565b60405180910390f35b61024b61073d565b6040516102589190613ab7565b60405180910390f35b61027b60048036038101906102769190612e63565b610747565b60405161028891906135a6565b60405180910390f35b61029961083f565b6040516102a69190613b16565b60405180910390f35b6102b7610848565b6040516102c491906135c1565b60405180910390f35b6102e760048036038101906102e29190612f50565b610857565b6040516102f491906135a6565b60405180910390f35b61031760048036038101906103129190612f50565b610903565b6040516103249190613ab7565b60405180910390f35b610335610997565b005b610351600480360381019061034c9190612f50565b610a1d565b005b61036d60048036038101906103689190613051565b610afd565b005b61038960048036038101906103849190612dfe565b610b0a565b604051610396919061358b565b60405180910390f35b6103b960048036038101906103b49190612dfe565b610b73565b005b6103c3610b87565b6040516103d091906135a6565b60405180910390f35b6103f360048036038101906103ee9190612dfe565b610b9e565b6040516104009190613afb565b60405180910390f35b610423600480360381019061041e9190612dfe565b610bf2565b6040516104309190613ab7565b60405180910390f35b610441610c3a565b005b61045d60048036038101906104589190612f50565b610cc2565b60405161046a9190613b31565b60405180910390f35b61048d60048036038101906104889190612dfe565b610cde565b60405161049a9190613ab7565b60405180910390f35b6104ab610d2e565b005b6104b5610db4565b6040516104c2919061358b565b60405180910390f35b6104e560048036038101906104e09190613051565b610dde565b6040516104f29190613ab7565b60405180910390f35b610503610e34565b604051610510919061371a565b60405180910390f35b610533600480360381019061052e9190612dfe565b610ec6565b6040516105409190613ab7565b60405180910390f35b610563600480360381019061055e9190612f50565b610ffd565b60405161057091906135a6565b60405180910390f35b610593600480360381019061058e9190612f50565b6110e8565b6040516105a091906135a6565b60405180910390f35b6105c360048036038101906105be9190612dfe565b611106565b6040516105d09190613b31565b60405180910390f35b6105f360048036038101906105ee9190612f8c565b611120565b005b61060f600480360381019061060a9190612eb2565b611224565b005b61062b60048036038101906106269190612e27565b611366565b6040516106389190613ab7565b60405180910390f35b61065b60048036038101906106569190613015565b6113ed565b6040516106689190613a9c565b60405180910390f35b61068b60048036038101906106869190612dfe565b611523565b005b60606003805461069c90613d10565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890613d10565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061073361072c61161b565b8484611623565b6001905092915050565b6000600254905090565b60006107548484846117ee565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061079f61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561081f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108169061393c565b60405180910390fd5b6108338561082b61161b565b858403611623565b60019150509392505050565b60006012905090565b6000610852611a6f565b905090565b60006108f961086461161b565b84846001600061087261161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108f49190613b73565b611623565b6001905092915050565b6000438210610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e9061379c565b60405180910390fd5b61098f600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611b32565b905092915050565b61099f61161b565b73ffffffffffffffffffffffffffffffffffffffff166109bd610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a9061397c565b60405180910390fd5b610a1b611c8a565b565b610a2561161b565b73ffffffffffffffffffffffffffffffffffffffff16610a43610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a909061397c565b60405180910390fd5b610aa38282611d2c565b6b033b2e3c9fd0803ce8000000610ab861073d565b1115610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af0906139bc565b60405180910390fd5b5050565b610b073382611db9565b50565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610b84610b7e61161b565b82611dd7565b50565b6000600960149054906101000a900460ff16905090565b6000610beb600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050611ef1565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4261161b565b73ffffffffffffffffffffffffffffffffffffffff16610c60610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad9061397c565b60405180910390fd5b610cc06000611f44565b565b6000610cd6610cd18484610903565b61200a565b905092915050565b6000610d27600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612065565b9050919050565b610d3661161b565b73ffffffffffffffffffffffffffffffffffffffff16610d54610db4565b73ffffffffffffffffffffffffffffffffffffffff1614610daa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da19061397c565b60405180910390fd5b610db2612073565b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610e22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e199061379c565b60405180910390fd5b610e2d600883611b32565b9050919050565b606060048054610e4390613d10565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6f90613d10565b8015610ebc5780601f10610e9157610100808354040283529160200191610ebc565b820191906000526020600020905b815481529060010190602001808311610e9f57829003601f168201915b5050505050905090565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610fd457600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610f629190613bfa565b81548110610f99577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610fd7565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b6000806001600061100c61161b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156110c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c090613a5c565b60405180910390fd5b6110dd6110d461161b565b85858403611623565b600191505092915050565b60006110fc6110f561161b565b84846117ee565b6001905092915050565b600061111961111483610ec6565b61200a565b9050919050565b83421115611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a906137dc565b60405180910390fd5b60006111c56111bd7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8989896040516020016111a2949392919061363d565b60405160208183030381529060405280519060200120612116565b858585612130565b90506111d0816122bb565b8614611211576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112089061381c565b60405180910390fd5b61121b8188611dd7565b50505050505050565b83421115611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e9061387c565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886112968c6122bb565b896040516020016112ac969594939291906135dc565b60405160208183030381529060405280519060200120905060006112cf82612116565b905060006112df82878787612130565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113469061391c565b60405180910390fd5b61135a8a8a8a611623565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113f5612d57565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110611472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b61152b61161b565b73ffffffffffffffffffffffffffffffffffffffff16611549610db4565b73ffffffffffffffffffffffffffffffffffffffff161461159f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115969061397c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561160f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116069061383c565b60405180910390fd5b61161881611f44565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90613a3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa9061385c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117e19190613ab7565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561185e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611855906139fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061375c565b60405180910390fd5b6118d9838383612319565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561195f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119569061389c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119f29190613b73565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a569190613ab7565b60405180910390a3611a69848484612371565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000a86a461415611ac1577fb6ae9b3934c865743f4d9816294950513a9f3173914c6723f213c588d54f7ddc9050611b2f565b611b2c7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7fd67290a6b9a0c32eaccaa34e093debf8e3566867438bb86c16e90b43dcce7a9b7fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc661239c565b90505b90565b6000808380549050905060005b81811015611bd7576000611b5382846123d6565b905084868281548110611b8f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff161115611bc157809250611bd1565b600181611bce9190613b73565b91505b50611b3f565b60008214611c5f5784600183611bed9190613bfa565b81548110611c24577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611c62565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b611c92610b87565b611cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc8906137bc565b60405180910390fd5b6000600960146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d1561161b565b604051611d22919061358b565b60405180910390a1565b611d36828261243d565b611d3e61259d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611d6461073d565b1115611da5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9c9061395c565b60405180910390fd5b611db360086125b3836125c9565b50505050565b611dc382826128b3565b611dd16008612a8a836125c9565b50505050565b6000611de283610b0a565b90506000611def84610bf2565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611eeb828483612aa0565b50505050565b600063ffffffff8016821115611f3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3390613a1c565b60405180910390fd5b819050919050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006bffffffffffffffffffffffff801682111561205d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120549061377c565b60405180910390fd5b819050919050565b600081600001549050919050565b61207b610b87565b156120bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b2906138dc565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ff61161b565b60405161210c919061358b565b60405180910390a1565b6000612129612123611a6f565b83612c99565b9050919050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08260001c1115612198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218f906138bc565b60405180910390fd5b601b8460ff1614806121ad5750601c8460ff16145b6121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e3906138fc565b60405180910390fd5b60006001868686866040516000815260200160405260405161221194939291906136d5565b6020604051602081039080840390855afa158015612233573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a69061373c565b60405180910390fd5b80915050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905061230881612065565b915061231381612ccc565b50919050565b612321610b87565b15612361576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612358906138dc565b60405180910390fd5b61236c838383612ce2565b505050565b61237c838383612ce7565b61239761238884610b0a565b61239184610b0a565b83612aa0565b505050565b600083838346306040516020016123b7959493929190613682565b6040516020818303038152906040528051906020012090509392505050565b6000600280836123e69190613d4c565b6002856123f39190613d4c565b6123fd9190613b73565b6124079190613bc9565b6002836124149190613bc9565b6002856124219190613bc9565b61242b9190613b73565b6124359190613b73565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613a7c565b60405180910390fd5b6124b960008383612319565b80600260008282546124cb9190613b73565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125209190613b73565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516125859190613ab7565b60405180910390a361259960008383612371565b5050565b60006bffffffffffffffffffffffff8016905090565b600081836125c19190613b73565b905092915050565b6000806000858054905090506000811461265d57856001826125eb9190613bfa565b81548110612622577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16612660565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16925061268e83858763ffffffff16565b9150600081118015612707575043866001836126aa9190613bfa565b815481106126e1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156127ba5761271582612cec565b866001836127239190613bfa565b8154811061275a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1602179055506128aa565b8560405180604001604052806127cf43611ef1565b63ffffffff1681526020016127e385612cec565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a906139dc565b60405180910390fd5b61292f82600083612319565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906137fc565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612a0c9190613bfa565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a719190613ab7565b60405180910390a3612a8583600084612371565b505050565b60008183612a989190613bfa565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612adc5750600081115b15612c9457600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bba57600080612b63600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612a8a856125c9565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612baf929190613ad2565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c9357600080612c3c600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206125b3856125c9565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051612c88929190613ad2565b60405180910390a250505b5b505050565b60008282604051602001612cae929190613554565b60405160208183030381529060405280519060200120905092915050565b6001816000016000828254019250508190555050565b505050565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115612d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d469061399c565b60405180910390fd5b819050919050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081359050612da4816144f7565b92915050565b600081359050612db98161450e565b92915050565b600081359050612dce81614525565b92915050565b600081359050612de38161453c565b92915050565b600081359050612df881614553565b92915050565b600060208284031215612e1057600080fd5b6000612e1e84828501612d95565b91505092915050565b60008060408385031215612e3a57600080fd5b6000612e4885828601612d95565b9250506020612e5985828601612d95565b9150509250929050565b600080600060608486031215612e7857600080fd5b6000612e8686828701612d95565b9350506020612e9786828701612d95565b9250506040612ea886828701612dbf565b9150509250925092565b600080600080600080600060e0888a031215612ecd57600080fd5b6000612edb8a828b01612d95565b9750506020612eec8a828b01612d95565b9650506040612efd8a828b01612dbf565b9550506060612f0e8a828b01612dbf565b9450506080612f1f8a828b01612de9565b93505060a0612f308a828b01612daa565b92505060c0612f418a828b01612daa565b91505092959891949750929550565b60008060408385031215612f6357600080fd5b6000612f7185828601612d95565b9250506020612f8285828601612dbf565b9150509250929050565b60008060008060008060c08789031215612fa557600080fd5b6000612fb389828a01612d95565b9650506020612fc489828a01612dbf565b9550506040612fd589828a01612dbf565b9450506060612fe689828a01612de9565b9350506080612ff789828a01612daa565b92505060a061300889828a01612daa565b9150509295509295509295565b6000806040838503121561302857600080fd5b600061303685828601612d95565b925050602061304785828601612dd4565b9150509250929050565b60006020828403121561306357600080fd5b600061307184828501612dbf565b91505092915050565b61308381613c2e565b82525050565b61309281613c40565b82525050565b6130a181613c4c565b82525050565b6130b86130b382613c4c565b613d42565b82525050565b60006130c982613b4c565b6130d38185613b57565b93506130e3818560208601613cdd565b6130ec81613e0a565b840191505092915050565b6000613104601883613b57565b915061310f82613e1b565b602082019050919050565b6000613127602383613b57565b915061313282613e44565b604082019050919050565b600061314a602683613b57565b915061315582613e93565b604082019050919050565b600061316d601f83613b57565b915061317882613ee2565b602082019050919050565b6000613190601483613b57565b915061319b82613f0b565b602082019050919050565b60006131b3601d83613b57565b91506131be82613f34565b602082019050919050565b60006131d6602283613b57565b91506131e182613f5d565b604082019050919050565b60006131f9601983613b57565b915061320482613fac565b602082019050919050565b600061321c602683613b57565b915061322782613fd5565b604082019050919050565b600061323f602283613b57565b915061324a82614024565b604082019050919050565b6000613262600283613b68565b915061326d82614073565b600282019050919050565b6000613285601d83613b57565b91506132908261409c565b602082019050919050565b60006132a8602683613b57565b91506132b3826140c5565b604082019050919050565b60006132cb602283613b57565b91506132d682614114565b604082019050919050565b60006132ee601083613b57565b91506132f982614163565b602082019050919050565b6000613311602283613b57565b915061331c8261418c565b604082019050919050565b6000613334601e83613b57565b915061333f826141db565b602082019050919050565b6000613357602883613b57565b915061336282614204565b604082019050919050565b600061337a603083613b57565b915061338582614253565b604082019050919050565b600061339d602083613b57565b91506133a8826142a2565b602082019050919050565b60006133c0602783613b57565b91506133cb826142cb565b604082019050919050565b60006133e3600383613b57565b91506133ee8261431a565b602082019050919050565b6000613406602183613b57565b915061341182614343565b604082019050919050565b6000613429602583613b57565b915061343482614392565b604082019050919050565b600061344c602683613b57565b9150613457826143e1565b604082019050919050565b600061346f602483613b57565b915061347a82614430565b604082019050919050565b6000613492602583613b57565b915061349d8261447f565b604082019050919050565b60006134b5601f83613b57565b91506134c0826144ce565b602082019050919050565b6040820160008201516134e16000850182613518565b5060208201516134f460208501826134fa565b50505050565b61350381613c76565b82525050565b61351281613c9e565b82525050565b61352181613ca8565b82525050565b61353081613ca8565b82525050565b61353f81613cb8565b82525050565b61354e81613cc5565b82525050565b600061355f82613255565b915061356b82856130a7565b60208201915061357b82846130a7565b6020820191508190509392505050565b60006020820190506135a0600083018461307a565b92915050565b60006020820190506135bb6000830184613089565b92915050565b60006020820190506135d66000830184613098565b92915050565b600060c0820190506135f16000830189613098565b6135fe602083018861307a565b61360b604083018761307a565b6136186060830186613509565b6136256080830185613509565b61363260a0830184613509565b979650505050505050565b60006080820190506136526000830187613098565b61365f602083018661307a565b61366c6040830185613509565b6136796060830184613509565b95945050505050565b600060a0820190506136976000830188613098565b6136a46020830187613098565b6136b16040830186613098565b6136be6060830185613509565b6136cb608083018461307a565b9695505050505050565b60006080820190506136ea6000830187613098565b6136f76020830186613536565b6137046040830185613098565b6137116060830184613098565b95945050505050565b6000602082019050818103600083015261373481846130be565b905092915050565b60006020820190508181036000830152613755816130f7565b9050919050565b600060208201905081810360008301526137758161311a565b9050919050565b600060208201905081810360008301526137958161313d565b9050919050565b600060208201905081810360008301526137b581613160565b9050919050565b600060208201905081810360008301526137d581613183565b9050919050565b600060208201905081810360008301526137f5816131a6565b9050919050565b60006020820190508181036000830152613815816131c9565b9050919050565b60006020820190508181036000830152613835816131ec565b9050919050565b600060208201905081810360008301526138558161320f565b9050919050565b6000602082019050818103600083015261387581613232565b9050919050565b6000602082019050818103600083015261389581613278565b9050919050565b600060208201905081810360008301526138b58161329b565b9050919050565b600060208201905081810360008301526138d5816132be565b9050919050565b600060208201905081810360008301526138f5816132e1565b9050919050565b6000602082019050818103600083015261391581613304565b9050919050565b6000602082019050818103600083015261393581613327565b9050919050565b600060208201905081810360008301526139558161334a565b9050919050565b600060208201905081810360008301526139758161336d565b9050919050565b6000602082019050818103600083015261399581613390565b9050919050565b600060208201905081810360008301526139b5816133b3565b9050919050565b600060208201905081810360008301526139d5816133d6565b9050919050565b600060208201905081810360008301526139f5816133f9565b9050919050565b60006020820190508181036000830152613a158161341c565b9050919050565b60006020820190508181036000830152613a358161343f565b9050919050565b60006020820190508181036000830152613a5581613462565b9050919050565b60006020820190508181036000830152613a7581613485565b9050919050565b60006020820190508181036000830152613a95816134a8565b9050919050565b6000604082019050613ab160008301846134cb565b92915050565b6000602082019050613acc6000830184613509565b92915050565b6000604082019050613ae76000830185613509565b613af46020830184613509565b9392505050565b6000602082019050613b106000830184613527565b92915050565b6000602082019050613b2b6000830184613536565b92915050565b6000602082019050613b466000830184613545565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000613b7e82613c9e565b9150613b8983613c9e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bbe57613bbd613d7d565b5b828201905092915050565b6000613bd482613c9e565b9150613bdf83613c9e565b925082613bef57613bee613dac565b5b828204905092915050565b6000613c0582613c9e565b9150613c1083613c9e565b925082821015613c2357613c22613d7d565b5b828203905092915050565b6000613c3982613c56565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b60005b83811015613cfb578082015181840152602081019050613ce0565b83811115613d0a576000848401525b50505050565b60006002820490506001821680613d2857607f821691505b60208210811415613d3c57613d3b613ddb565b5b50919050565b6000819050919050565b6000613d5782613c9e565b9150613d6283613c9e565b925082613d7257613d71613dac565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203960008201527f3620626974730000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f4d41580000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61450081613c2e565b811461450b57600080fd5b50565b61451781613c4c565b811461452257600080fd5b50565b61452e81613c9e565b811461453957600080fd5b50565b61454581613ca8565b811461455057600080fd5b50565b61455c81613cb8565b811461456757600080fd5b5056fea2646970667358221220df2167962fb166e58a222e093c55fd60994af41800444d819495873ad531c48864736f6c63430008030033
Deployed Bytecode Sourcemap
57778:815:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10462:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12629:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11582:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13280:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11424:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34246:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14181:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46950:251;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58310:69;;;:::i;:::-;;57981:157;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58146:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46350:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49375:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56592:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46106:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11753:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2375:94;;;:::i;:::-;;55188:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33988:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58237:65;;;:::i;:::-;;1724:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47490:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10681:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46553:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14899:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12093:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54942:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49569:589;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33277:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12331:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45876:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2624:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10462:100;10516:13;10549:5;10542:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10462:100;:::o;12629:169::-;12712:4;12729:39;12738:12;:10;:12::i;:::-;12752:7;12761:6;12729:8;:39::i;:::-;12786:4;12779:11;;12629:169;;;;:::o;11582:108::-;11643:7;11670:12;;11663:19;;11582:108;:::o;13280:492::-;13420:4;13437:36;13447:6;13455:9;13466:6;13437:9;:36::i;:::-;13486:24;13513:11;:19;13525:6;13513:19;;;;;;;;;;;;;;;:33;13533:12;:10;:12::i;:::-;13513:33;;;;;;;;;;;;;;;;13486:60;;13585:6;13565:16;:26;;13557:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13672:57;13681:6;13689:12;:10;:12::i;:::-;13722:6;13703:16;:25;13672:8;:57::i;:::-;13760:4;13753:11;;;13280:492;;;;;:::o;11424:93::-;11482:5;11507:2;11500:9;;11424:93;:::o;34246:115::-;34306:7;34333:20;:18;:20::i;:::-;34326:27;;34246:115;:::o;14181:215::-;14269:4;14286:80;14295:12;:10;:12::i;:::-;14309:7;14355:10;14318:11;:25;14330:12;:10;:12::i;:::-;14318:25;;;;;;;;;;;;;;;:34;14344:7;14318:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14286:8;:80::i;:::-;14384:4;14377:11;;14181:215;;;;:::o;46950:251::-;47031:7;47073:12;47059:11;:26;47051:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47139:54;47158:12;:21;47171:7;47158:21;;;;;;;;;;;;;;;47181:11;47139:18;:54::i;:::-;47132:61;;46950:251;;;;:::o;58310:69::-;1955:12;:10;:12::i;:::-;1944:23;;:7;:5;:7::i;:::-;:23;;;1936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58361:10:::1;:8;:10::i;:::-;58310:69::o:0;57981:157::-;1955:12;:10;:12::i;:::-;1944:23;;:7;:5;:7::i;:::-;:23;;;1936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58057:19:::1;58063:3;58068:7;58057:5;:19::i;:::-;57873:23;58095:13;:11;:13::i;:::-;:27;;58087:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;57981:157:::0;;:::o;58146:83::-;58196:25;58202:10;58214:6;58196:5;:25::i;:::-;58146:83;:::o;46350:119::-;46415:7;46442:10;:19;46453:7;46442:19;;;;;;;;;;;;;;;;;;;;;;;;;46435:26;;46350:119;;;:::o;49375:112::-;49445:34;49455:12;:10;:12::i;:::-;49469:9;49445;:34::i;:::-;49375:112;:::o;56592:86::-;56639:4;56663:7;;;;;;;;;;;56656:14;;56592:86;:::o;46106:151::-;46176:6;46202:47;46220:12;:21;46233:7;46220:21;;;;;;;;;;;;;;;:28;;;;46202:17;:47::i;:::-;46195:54;;46106:151;;;:::o;11753:127::-;11827:7;11854:9;:18;11864:7;11854:18;;;;;;;;;;;;;;;;11847:25;;11753:127;;;:::o;2375:94::-;1955:12;:10;:12::i;:::-;1944:23;;:7;:5;:7::i;:::-;:23;;;1936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2440:21:::1;2458:1;2440:9;:21::i;:::-;2375:94::o:0;55188:171::-;55272:6;55298:53;55316:34;55329:7;55338:11;55316:12;:34::i;:::-;55298:17;:53::i;:::-;55291:60;;55188:171;;;;:::o;33988:128::-;34057:7;34084:24;:7;:14;34092:5;34084:14;;;;;;;;;;;;;;;:22;:24::i;:::-;34077:31;;33988:128;;;:::o;58237:65::-;1955:12;:10;:12::i;:::-;1944:23;;:7;:5;:7::i;:::-;:23;;;1936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58286:8:::1;:6;:8::i;:::-;58237:65::o:0;1724:87::-;1770:7;1797:6;;;;;;;;;;;1790:13;;1724:87;:::o;47490:242::-;47560:7;47602:12;47588:11;:26;47580:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;47668:56;47687:23;47712:11;47668:18;:56::i;:::-;47661:63;;47490:242;;;:::o;10681:104::-;10737:13;10770:7;10763:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10681:104;:::o;46553:195::-;46609:7;46629:11;46643:12;:21;46656:7;46643:21;;;;;;;;;;;;;;;:28;;;;46629:42;;46696:1;46689:3;:8;:51;;46704:12;:21;46717:7;46704:21;;;;;;;;;;;;;;;46732:1;46726:3;:7;;;;:::i;:::-;46704:30;;;;;;;;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;46689:51;;;46700:1;46689:51;46682:58;;;;;46553:195;;;:::o;14899:413::-;14992:4;15009:24;15036:11;:25;15048:12;:10;:12::i;:::-;15036:25;;;;;;;;;;;;;;;:34;15062:7;15036:34;;;;;;;;;;;;;;;;15009:61;;15109:15;15089:16;:35;;15081:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15202:67;15211:12;:10;:12::i;:::-;15225:7;15253:15;15234:16;:34;15202:8;:67::i;:::-;15300:4;15293:11;;;14899:413;;;;:::o;12093:175::-;12179:4;12196:42;12206:12;:10;:12::i;:::-;12220:9;12231:6;12196:9;:42::i;:::-;12256:4;12249:11;;12093:175;;;;:::o;54942:135::-;55007:6;55033:36;55051:17;55060:7;55051:8;:17::i;:::-;55033;:36::i;:::-;55026:43;;54942:135;;;:::o;49569:589::-;49787:6;49768:15;:25;;49760:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;49838:14;49855:174;49883:87;45127:71;49943:9;49954:5;49961:6;49910:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49900:69;;;;;;49883:16;:87::i;:::-;49985:1;50001;50017;49855:13;:174::i;:::-;49838:191;;50057:17;50067:6;50057:9;:17::i;:::-;50048:5;:26;50040:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;50122:28;50132:6;50140:9;50122;:28::i;:::-;50115:35;49569:589;;;;;;:::o;33277:645::-;33521:8;33502:15;:27;;33494:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;33576:18;33618:16;33636:5;33643:7;33652:5;33659:16;33669:5;33659:9;:16::i;:::-;33677:8;33607:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33597:90;;;;;;33576:111;;33700:12;33715:28;33732:10;33715:16;:28::i;:::-;33700:43;;33756:14;33773:28;33787:4;33793:1;33796;33799;33773:13;:28::i;:::-;33756:45;;33830:5;33820:15;;:6;:15;;;33812:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33883:31;33892:5;33899:7;33908:5;33883:8;:31::i;:::-;33277:645;;;;;;;;;;:::o;12331:151::-;12420:7;12447:11;:18;12459:5;12447:18;;;;;;;;;;;;;;;:27;12466:7;12447:27;;;;;;;;;;;;;;;;12440:34;;12331:151;;;;:::o;45876:150::-;45955:17;;:::i;:::-;45992:12;:21;46005:7;45992:21;;;;;;;;;;;;;;;46014:3;45992:26;;;;;;;;;;;;;;;;;;;;;;;;;45985:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45876:150;;;;:::o;2624:192::-;1955:12;:10;:12::i;:::-;1944:23;;:7;:5;:7::i;:::-;:23;;;1936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2733:1:::1;2713:22;;:8;:22;;;;2705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2789:19;2799:8;2789:9;:19::i;:::-;2624:192:::0;:::o;600:98::-;653:7;680:10;673:17;;600:98;:::o;18583:380::-;18736:1;18719:19;;:5;:19;;;;18711:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18817:1;18798:21;;:7;:21;;;;18790:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18901:6;18871:11;:18;18883:5;18871:18;;;;;;;;;;;;;;;:27;18890:7;18871:27;;;;;;;;;;;;;;;:36;;;;18939:7;18923:32;;18932:5;18923:32;;;18948:6;18923:32;;;;;;:::i;:::-;;;;;;;;18583:380;;;:::o;15802:733::-;15960:1;15942:20;;:6;:20;;;;15934:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16044:1;16023:23;;:9;:23;;;;16015:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16099:47;16120:6;16128:9;16139:6;16099:20;:47::i;:::-;16159:21;16183:9;:17;16193:6;16183:17;;;;;;;;;;;;;;;;16159:41;;16236:6;16219:13;:23;;16211:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16357:6;16341:13;:22;16321:9;:17;16331:6;16321:17;;;;;;;;;;;;;;;:42;;;;16409:6;16385:9;:20;16395:9;16385:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16450:9;16433:35;;16442:6;16433:35;;;16461:6;16433:35;;;;;;:::i;:::-;;;;;;;;16481:46;16501:6;16509:9;16520:6;16481:19;:46::i;:::-;15802:733;;;;:::o;29321:281::-;29374:7;29415:16;29398:13;:33;29394:201;;;29455:24;29448:31;;;;29394:201;29519:64;29541:10;29553:12;29567:15;29519:21;:64::i;:::-;29512:71;;29321:281;;:::o;47821:1468::-;47920:7;48925:12;48940:5;:12;;;;48925:27;;48963:11;48989:236;49002:4;48996:3;:10;48989:236;;;49023:11;49037:23;49050:3;49055:4;49037:12;:23::i;:::-;49023:37;;49102:11;49079:5;49085:3;49079:10;;;;;;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;:34;;;49075:139;;;49141:3;49134:10;;49075:139;;;49197:1;49191:3;:7;;;;:::i;:::-;49185:13;;49075:139;48989:236;;;;49252:1;49244:4;:9;:37;;49260:5;49273:1;49266:4;:8;;;;:::i;:::-;49260:15;;;;;;;;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;49244:37;;;49256:1;49244:37;49237:44;;;;;;47821:1468;;;;:::o;57651:120::-;57195:8;:6;:8::i;:::-;57187:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;57720:5:::1;57710:7;;:15;;;;;;;;;;;;;;;;;;57741:22;57750:12;:10;:12::i;:::-;57741:22;;;;;;:::i;:::-;;;;;;;;57651:120::o:0;50464:290::-;50549:28;50561:7;50570:6;50549:11;:28::i;:::-;50613:12;:10;:12::i;:::-;50596:29;;:13;:11;:13::i;:::-;:29;;50588:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;50691:55;50708:23;50733:4;50739:6;50691:16;:55::i;:::-;;;50464:290;;:::o;50848:194::-;50933:28;50945:7;50954:6;50933:11;:28::i;:::-;50974:60;50991:23;51016:9;51027:6;50974:16;:60::i;:::-;;;50848:194;;:::o;51608:388::-;51693:23;51719:20;51729:9;51719;:20::i;:::-;51693:46;;51750:24;51777:20;51787:9;51777;:20::i;:::-;51750:47;;51832:9;51808:10;:21;51819:9;51808:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;51903:9;51859:54;;51886:15;51859:54;;51875:9;51859:54;;;;;;;;;;;;51926:62;51943:15;51960:9;51971:16;51926;:62::i;:::-;51608:388;;;;:::o;38916:190::-;38972:6;39008:16;38999:25;;:5;:25;;38991:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39092:5;39078:20;;38916:190;;;:::o;2824:173::-;2880:16;2899:6;;;;;;;;;;;2880:25;;2925:8;2916:6;;:17;;;;;;;;;;;;;;;;;;2980:8;2949:40;;2970:8;2949:40;;;;;;;;;;;;2824:173;;:::o;37938:190::-;37994:6;38030:16;38021:25;;:5;:25;;38013:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;38114:5;38100:20;;37938:190;;;:::o;31424:114::-;31489:7;31516;:14;;;31509:21;;31424:114;;;:::o;57392:118::-;56918:8;:6;:8::i;:::-;56917:9;56909:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57462:4:::1;57452:7;;:14;;;;;;;;;;;;;;;;;;57482:20;57489:12;:10;:12::i;:::-;57482:20;;;;;;:::i;:::-;;;;;;;;57392:118::o:0;30515:167::-;30592:7;30619:55;30641:20;:18;:20::i;:::-;30663:10;30619:21;:55::i;:::-;30612:62;;30515:167;;;:::o;23718:1512::-;23846:7;24785:66;24779:1;24771:10;;:80;;24749:164;;;;;;;;;;;;:::i;:::-;;;;;;;;;24937:2;24932:1;:7;;;:18;;;;24948:2;24943:1;:7;;;24932:18;24924:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;25087:14;25104:24;25114:4;25120:1;25123;25126;25104:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25087:41;;25165:1;25147:20;;:6;:20;;;;25139:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25216:6;25209:13;;;23718:1512;;;;;;:::o;34499:207::-;34559:15;34587:30;34620:7;:14;34628:5;34620:14;;;;;;;;;;;;;;;34587:47;;34655:15;:5;:13;:15::i;:::-;34645:25;;34681:17;:5;:15;:17::i;:::-;34499:207;;;;:::o;58387:203::-;56918:8;:6;:8::i;:::-;56917:9;56909:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;58538:44:::1;58565:4;58571:2;58575:6;58538:26;:44::i;:::-;58387:203:::0;;;:::o;51182:262::-;51324:43;51350:4;51356:2;51360:6;51324:25;:43::i;:::-;51380:56;51397:15;51407:4;51397:9;:15::i;:::-;51414:13;51424:2;51414:9;:13::i;:::-;51429:6;51380:16;:56::i;:::-;51182:262;;;:::o;29610:263::-;29754:7;29802:8;29812;29822:11;29835:13;29858:4;29791:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29781:84;;;;;;29774:91;;29610:263;;;;;:::o;35289:198::-;35351:7;35477:1;35471;35467;:5;;;;:::i;:::-;35461:1;35457;:5;;;;:::i;:::-;35456:17;;;;:::i;:::-;35455:23;;;;:::i;:::-;35449:1;35445;:5;;;;:::i;:::-;35439:1;35435;:5;;;;:::i;:::-;35434:17;;;;:::i;:::-;:45;;;;:::i;:::-;35427:52;;35289:198;;;;:::o;16822:399::-;16925:1;16906:21;;:7;:21;;;;16898:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16976:49;17005:1;17009:7;17018:6;16976:20;:49::i;:::-;17054:6;17038:12;;:22;;;;;;;:::i;:::-;;;;;;;;17093:6;17071:9;:18;17081:7;17071:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;17136:7;17115:37;;17132:1;17115:37;;;17145:6;17115:37;;;;;;:::i;:::-;;;;;;;;17165:48;17193:1;17197:7;17206:6;17165:19;:48::i;:::-;16822:399;;:::o;55485:113::-;55547:7;55574:16;55567:23;;;;55485:113;:::o;53308:98::-;53366:7;53397:1;53393;:5;;;;:::i;:::-;53386:12;;53308:98;;;;:::o;52655:645::-;52829:17;52848;52878:11;52892:5;:12;;;;52878:26;;52934:1;52927:3;:8;:35;;52942:5;52954:1;52948:3;:7;;;;:::i;:::-;52942:14;;;;;;;;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;52927:35;;;52938:1;52927:35;52915:47;;;;52985:20;52988:9;52999:5;52985:2;:20;;:::i;:::-;52973:32;;53028:1;53022:3;:7;:51;;;;;53061:12;53033:5;53045:1;53039:3;:7;;;;:::i;:::-;53033:14;;;;;;;;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;:40;;;53022:51;53018:275;;;53113:29;53132:9;53113:18;:29::i;:::-;53090:5;53102:1;53096:3;:7;;;;:::i;:::-;53090:14;;;;;;;;;;;;;;;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;53018:275;;;53175:5;53186:94;;;;;;;;53209:31;53227:12;53209:17;:31::i;:::-;53186:94;;;;;;53249:29;53268:9;53249:18;:29::i;:::-;53186:94;;;;;53175:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53018:275;52655:645;;;;;;;:::o;17554:591::-;17657:1;17638:21;;:7;:21;;;;17630:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17710:49;17731:7;17748:1;17752:6;17710:20;:49::i;:::-;17772:22;17797:9;:18;17807:7;17797:18;;;;;;;;;;;;;;;;17772:43;;17852:6;17834:14;:24;;17826:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17971:6;17954:14;:23;17933:9;:18;17943:7;17933:18;;;;;;;;;;;;;;;:44;;;;18015:6;17999:12;;:22;;;;;;;:::i;:::-;;;;;;;;18065:1;18039:37;;18048:7;18039:37;;;18069:6;18039:37;;;;;;:::i;:::-;;;;;;;;18089:48;18109:7;18126:1;18130:6;18089:19;:48::i;:::-;17554:591;;;:::o;53414:103::-;53477:7;53508:1;53504;:5;;;;:::i;:::-;53497:12;;53414:103;;;;:::o;52004:643::-;52136:3;52129:10;;:3;:10;;;;:24;;;;;52152:1;52143:6;:10;52129:24;52125:515;;;52189:1;52174:17;;:3;:17;;;52170:224;;52213:17;52232;52253:54;52270:12;:17;52283:3;52270:17;;;;;;;;;;;;;;;52289:9;52300:6;52253:16;:54::i;:::-;52212:95;;;;52352:3;52331:47;;;52357:9;52368;52331:47;;;;;;;:::i;:::-;;;;;;;;52170:224;;;52429:1;52414:17;;:3;:17;;;52410:219;;52453:17;52472;52493:49;52510:12;:17;52523:3;52510:17;;;;;;;;;;;;;;;52529:4;52535:6;52493:16;:49::i;:::-;52452:90;;;;52587:3;52566:47;;;52592:9;52603;52566:47;;;;;;;:::i;:::-;;;;;;;;52410:219;;;52125:515;52004:643;;;:::o;26149:196::-;26242:7;26308:15;26325:10;26279:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26269:68;;;;;;26262:75;;26149:196;;;;:::o;31546:127::-;31653:1;31635:7;:14;;;:19;;;;;;;;;;;31546:127;:::o;19563:125::-;;;;:::o;20292:124::-;;;;:::o;36946:195::-;37003:7;37040:17;37031:26;;:5;:26;;37023:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;37127:5;37112:21;;36946:195;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:139::-;;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;349:87;;;;:::o;442:137::-;;525:6;512:20;503:29;;541:32;567:5;541:32;:::i;:::-;493:86;;;;:::o;585:135::-;;667:6;654:20;645:29;;683:31;708:5;683:31;:::i;:::-;635:85;;;;:::o;726:262::-;;834:2;822:9;813:7;809:23;805:32;802:2;;;850:1;847;840:12;802:2;893:1;918:53;963:7;954:6;943:9;939:22;918:53;:::i;:::-;908:63;;864:117;792:196;;;;:::o;994:407::-;;;1119:2;1107:9;1098:7;1094:23;1090:32;1087:2;;;1135:1;1132;1125:12;1087:2;1178:1;1203:53;1248:7;1239:6;1228:9;1224:22;1203:53;:::i;:::-;1193:63;;1149:117;1305:2;1331:53;1376:7;1367:6;1356:9;1352:22;1331:53;:::i;:::-;1321:63;;1276:118;1077:324;;;;;:::o;1407:552::-;;;;1549:2;1537:9;1528:7;1524:23;1520:32;1517:2;;;1565:1;1562;1555:12;1517:2;1608:1;1633:53;1678:7;1669:6;1658:9;1654:22;1633:53;:::i;:::-;1623:63;;1579:117;1735:2;1761:53;1806:7;1797:6;1786:9;1782:22;1761:53;:::i;:::-;1751:63;;1706:118;1863:2;1889:53;1934:7;1925:6;1914:9;1910:22;1889:53;:::i;:::-;1879:63;;1834:118;1507:452;;;;;:::o;1965:1132::-;;;;;;;;2173:3;2161:9;2152:7;2148:23;2144:33;2141:2;;;2190:1;2187;2180:12;2141:2;2233:1;2258:53;2303:7;2294:6;2283:9;2279:22;2258:53;:::i;:::-;2248:63;;2204:117;2360:2;2386:53;2431:7;2422:6;2411:9;2407:22;2386:53;:::i;:::-;2376:63;;2331:118;2488:2;2514:53;2559:7;2550:6;2539:9;2535:22;2514:53;:::i;:::-;2504:63;;2459:118;2616:2;2642:53;2687:7;2678:6;2667:9;2663:22;2642:53;:::i;:::-;2632:63;;2587:118;2744:3;2771:51;2814:7;2805:6;2794:9;2790:22;2771:51;:::i;:::-;2761:61;;2715:117;2871:3;2898:53;2943:7;2934:6;2923:9;2919:22;2898:53;:::i;:::-;2888:63;;2842:119;3000:3;3027:53;3072:7;3063:6;3052:9;3048:22;3027:53;:::i;:::-;3017:63;;2971:119;2131:966;;;;;;;;;;:::o;3103:407::-;;;3228:2;3216:9;3207:7;3203:23;3199:32;3196:2;;;3244:1;3241;3234:12;3196:2;3287:1;3312:53;3357:7;3348:6;3337:9;3333:22;3312:53;:::i;:::-;3302:63;;3258:117;3414:2;3440:53;3485:7;3476:6;3465:9;3461:22;3440:53;:::i;:::-;3430:63;;3385:118;3186:324;;;;;:::o;3516:986::-;;;;;;;3707:3;3695:9;3686:7;3682:23;3678:33;3675:2;;;3724:1;3721;3714:12;3675:2;3767:1;3792:53;3837:7;3828:6;3817:9;3813:22;3792:53;:::i;:::-;3782:63;;3738:117;3894:2;3920:53;3965:7;3956:6;3945:9;3941:22;3920:53;:::i;:::-;3910:63;;3865:118;4022:2;4048:53;4093:7;4084:6;4073:9;4069:22;4048:53;:::i;:::-;4038:63;;3993:118;4150:2;4176:51;4219:7;4210:6;4199:9;4195:22;4176:51;:::i;:::-;4166:61;;4121:116;4276:3;4303:53;4348:7;4339:6;4328:9;4324:22;4303:53;:::i;:::-;4293:63;;4247:119;4405:3;4432:53;4477:7;4468:6;4457:9;4453:22;4432:53;:::i;:::-;4422:63;;4376:119;3665:837;;;;;;;;:::o;4508:405::-;;;4632:2;4620:9;4611:7;4607:23;4603:32;4600:2;;;4648:1;4645;4638:12;4600:2;4691:1;4716:53;4761:7;4752:6;4741:9;4737:22;4716:53;:::i;:::-;4706:63;;4662:117;4818:2;4844:52;4888:7;4879:6;4868:9;4864:22;4844:52;:::i;:::-;4834:62;;4789:117;4590:323;;;;;:::o;4919:262::-;;5027:2;5015:9;5006:7;5002:23;4998:32;4995:2;;;5043:1;5040;5033:12;4995:2;5086:1;5111:53;5156:7;5147:6;5136:9;5132:22;5111:53;:::i;:::-;5101:63;;5057:117;4985:196;;;;:::o;5187:118::-;5274:24;5292:5;5274:24;:::i;:::-;5269:3;5262:37;5252:53;;:::o;5311:109::-;5392:21;5407:5;5392:21;:::i;:::-;5387:3;5380:34;5370:50;;:::o;5426:118::-;5513:24;5531:5;5513:24;:::i;:::-;5508:3;5501:37;5491:53;;:::o;5550:157::-;5655:45;5675:24;5693:5;5675:24;:::i;:::-;5655:45;:::i;:::-;5650:3;5643:58;5633:74;;:::o;5713:364::-;;5829:39;5862:5;5829:39;:::i;:::-;5884:71;5948:6;5943:3;5884:71;:::i;:::-;5877:78;;5964:52;6009:6;6004:3;5997:4;5990:5;5986:16;5964:52;:::i;:::-;6041:29;6063:6;6041:29;:::i;:::-;6036:3;6032:39;6025:46;;5805:272;;;;;:::o;6083:366::-;;6246:67;6310:2;6305:3;6246:67;:::i;:::-;6239:74;;6322:93;6411:3;6322:93;:::i;:::-;6440:2;6435:3;6431:12;6424:19;;6229:220;;;:::o;6455:366::-;;6618:67;6682:2;6677:3;6618:67;:::i;:::-;6611:74;;6694:93;6783:3;6694:93;:::i;:::-;6812:2;6807:3;6803:12;6796:19;;6601:220;;;:::o;6827:366::-;;6990:67;7054:2;7049:3;6990:67;:::i;:::-;6983:74;;7066:93;7155:3;7066:93;:::i;:::-;7184:2;7179:3;7175:12;7168:19;;6973:220;;;:::o;7199:366::-;;7362:67;7426:2;7421:3;7362:67;:::i;:::-;7355:74;;7438:93;7527:3;7438:93;:::i;:::-;7556:2;7551:3;7547:12;7540:19;;7345:220;;;:::o;7571:366::-;;7734:67;7798:2;7793:3;7734:67;:::i;:::-;7727:74;;7810:93;7899:3;7810:93;:::i;:::-;7928:2;7923:3;7919:12;7912:19;;7717:220;;;:::o;7943:366::-;;8106:67;8170:2;8165:3;8106:67;:::i;:::-;8099:74;;8182:93;8271:3;8182:93;:::i;:::-;8300:2;8295:3;8291:12;8284:19;;8089:220;;;:::o;8315:366::-;;8478:67;8542:2;8537:3;8478:67;:::i;:::-;8471:74;;8554:93;8643:3;8554:93;:::i;:::-;8672:2;8667:3;8663:12;8656:19;;8461:220;;;:::o;8687:366::-;;8850:67;8914:2;8909:3;8850:67;:::i;:::-;8843:74;;8926:93;9015:3;8926:93;:::i;:::-;9044:2;9039:3;9035:12;9028:19;;8833:220;;;:::o;9059:366::-;;9222:67;9286:2;9281:3;9222:67;:::i;:::-;9215:74;;9298:93;9387:3;9298:93;:::i;:::-;9416:2;9411:3;9407:12;9400:19;;9205:220;;;:::o;9431:366::-;;9594:67;9658:2;9653:3;9594:67;:::i;:::-;9587:74;;9670:93;9759:3;9670:93;:::i;:::-;9788:2;9783:3;9779:12;9772:19;;9577:220;;;:::o;9803:400::-;;9984:84;10066:1;10061:3;9984:84;:::i;:::-;9977:91;;10077:93;10166:3;10077:93;:::i;:::-;10195:1;10190:3;10186:11;10179:18;;9967:236;;;:::o;10209:366::-;;10372:67;10436:2;10431:3;10372:67;:::i;:::-;10365:74;;10448:93;10537:3;10448:93;:::i;:::-;10566:2;10561:3;10557:12;10550:19;;10355:220;;;:::o;10581:366::-;;10744:67;10808:2;10803:3;10744:67;:::i;:::-;10737:74;;10820:93;10909:3;10820:93;:::i;:::-;10938:2;10933:3;10929:12;10922:19;;10727:220;;;:::o;10953:366::-;;11116:67;11180:2;11175:3;11116:67;:::i;:::-;11109:74;;11192:93;11281:3;11192:93;:::i;:::-;11310:2;11305:3;11301:12;11294:19;;11099:220;;;:::o;11325:366::-;;11488:67;11552:2;11547:3;11488:67;:::i;:::-;11481:74;;11564:93;11653:3;11564:93;:::i;:::-;11682:2;11677:3;11673:12;11666:19;;11471:220;;;:::o;11697:366::-;;11860:67;11924:2;11919:3;11860:67;:::i;:::-;11853:74;;11936:93;12025:3;11936:93;:::i;:::-;12054:2;12049:3;12045:12;12038:19;;11843:220;;;:::o;12069:366::-;;12232:67;12296:2;12291:3;12232:67;:::i;:::-;12225:74;;12308:93;12397:3;12308:93;:::i;:::-;12426:2;12421:3;12417:12;12410:19;;12215:220;;;:::o;12441:366::-;;12604:67;12668:2;12663:3;12604:67;:::i;:::-;12597:74;;12680:93;12769:3;12680:93;:::i;:::-;12798:2;12793:3;12789:12;12782:19;;12587:220;;;:::o;12813:366::-;;12976:67;13040:2;13035:3;12976:67;:::i;:::-;12969:74;;13052:93;13141:3;13052:93;:::i;:::-;13170:2;13165:3;13161:12;13154:19;;12959:220;;;:::o;13185:366::-;;13348:67;13412:2;13407:3;13348:67;:::i;:::-;13341:74;;13424:93;13513:3;13424:93;:::i;:::-;13542:2;13537:3;13533:12;13526:19;;13331:220;;;:::o;13557:366::-;;13720:67;13784:2;13779:3;13720:67;:::i;:::-;13713:74;;13796:93;13885:3;13796:93;:::i;:::-;13914:2;13909:3;13905:12;13898:19;;13703:220;;;:::o;13929:365::-;;14092:66;14156:1;14151:3;14092:66;:::i;:::-;14085:73;;14167:93;14256:3;14167:93;:::i;:::-;14285:2;14280:3;14276:12;14269:19;;14075:219;;;:::o;14300:366::-;;14463:67;14527:2;14522:3;14463:67;:::i;:::-;14456:74;;14539:93;14628:3;14539:93;:::i;:::-;14657:2;14652:3;14648:12;14641:19;;14446:220;;;:::o;14672:366::-;;14835:67;14899:2;14894:3;14835:67;:::i;:::-;14828:74;;14911:93;15000:3;14911:93;:::i;:::-;15029:2;15024:3;15020:12;15013:19;;14818:220;;;:::o;15044:366::-;;15207:67;15271:2;15266:3;15207:67;:::i;:::-;15200:74;;15283:93;15372:3;15283:93;:::i;:::-;15401:2;15396:3;15392:12;15385:19;;15190:220;;;:::o;15416:366::-;;15579:67;15643:2;15638:3;15579:67;:::i;:::-;15572:74;;15655:93;15744:3;15655:93;:::i;:::-;15773:2;15768:3;15764:12;15757:19;;15562:220;;;:::o;15788:366::-;;15951:67;16015:2;16010:3;15951:67;:::i;:::-;15944:74;;16027:93;16116:3;16027:93;:::i;:::-;16145:2;16140:3;16136:12;16129:19;;15934:220;;;:::o;16160:366::-;;16323:67;16387:2;16382:3;16323:67;:::i;:::-;16316:74;;16399:93;16488:3;16399:93;:::i;:::-;16517:2;16512:3;16508:12;16501:19;;16306:220;;;:::o;16600:517::-;16753:4;16748:3;16744:14;16845:4;16838:5;16834:16;16828:23;16864:61;16919:4;16914:3;16910:14;16896:12;16864:61;:::i;:::-;16768:167;17018:4;17011:5;17007:16;17001:23;17037:63;17094:4;17089:3;17085:14;17071:12;17037:63;:::i;:::-;16945:165;16722:395;;;:::o;17123:108::-;17200:24;17218:5;17200:24;:::i;:::-;17195:3;17188:37;17178:53;;:::o;17237:118::-;17324:24;17342:5;17324:24;:::i;:::-;17319:3;17312:37;17302:53;;:::o;17361:105::-;17436:23;17453:5;17436:23;:::i;:::-;17431:3;17424:36;17414:52;;:::o;17472:115::-;17557:23;17574:5;17557:23;:::i;:::-;17552:3;17545:36;17535:52;;:::o;17593:112::-;17676:22;17692:5;17676:22;:::i;:::-;17671:3;17664:35;17654:51;;:::o;17711:115::-;17796:23;17813:5;17796:23;:::i;:::-;17791:3;17784:36;17774:52;;:::o;17832:663::-;;18095:148;18239:3;18095:148;:::i;:::-;18088:155;;18253:75;18324:3;18315:6;18253:75;:::i;:::-;18353:2;18348:3;18344:12;18337:19;;18366:75;18437:3;18428:6;18366:75;:::i;:::-;18466:2;18461:3;18457:12;18450:19;;18486:3;18479:10;;18077:418;;;;;:::o;18501:222::-;;18632:2;18621:9;18617:18;18609:26;;18645:71;18713:1;18702:9;18698:17;18689:6;18645:71;:::i;:::-;18599:124;;;;:::o;18729:210::-;;18854:2;18843:9;18839:18;18831:26;;18867:65;18929:1;18918:9;18914:17;18905:6;18867:65;:::i;:::-;18821:118;;;;:::o;18945:222::-;;19076:2;19065:9;19061:18;19053:26;;19089:71;19157:1;19146:9;19142:17;19133:6;19089:71;:::i;:::-;19043:124;;;;:::o;19173:775::-;;19444:3;19433:9;19429:19;19421:27;;19458:71;19526:1;19515:9;19511:17;19502:6;19458:71;:::i;:::-;19539:72;19607:2;19596:9;19592:18;19583:6;19539:72;:::i;:::-;19621;19689:2;19678:9;19674:18;19665:6;19621:72;:::i;:::-;19703;19771:2;19760:9;19756:18;19747:6;19703:72;:::i;:::-;19785:73;19853:3;19842:9;19838:19;19829:6;19785:73;:::i;:::-;19868;19936:3;19925:9;19921:19;19912:6;19868:73;:::i;:::-;19411:537;;;;;;;;;:::o;19954:553::-;;20169:3;20158:9;20154:19;20146:27;;20183:71;20251:1;20240:9;20236:17;20227:6;20183:71;:::i;:::-;20264:72;20332:2;20321:9;20317:18;20308:6;20264:72;:::i;:::-;20346;20414:2;20403:9;20399:18;20390:6;20346:72;:::i;:::-;20428;20496:2;20485:9;20481:18;20472:6;20428:72;:::i;:::-;20136:371;;;;;;;:::o;20513:664::-;;20756:3;20745:9;20741:19;20733:27;;20770:71;20838:1;20827:9;20823:17;20814:6;20770:71;:::i;:::-;20851:72;20919:2;20908:9;20904:18;20895:6;20851:72;:::i;:::-;20933;21001:2;20990:9;20986:18;20977:6;20933:72;:::i;:::-;21015;21083:2;21072:9;21068:18;21059:6;21015:72;:::i;:::-;21097:73;21165:3;21154:9;21150:19;21141:6;21097:73;:::i;:::-;20723:454;;;;;;;;:::o;21183:545::-;;21394:3;21383:9;21379:19;21371:27;;21408:71;21476:1;21465:9;21461:17;21452:6;21408:71;:::i;:::-;21489:68;21553:2;21542:9;21538:18;21529:6;21489:68;:::i;:::-;21567:72;21635:2;21624:9;21620:18;21611:6;21567:72;:::i;:::-;21649;21717:2;21706:9;21702:18;21693:6;21649:72;:::i;:::-;21361:367;;;;;;;:::o;21734:313::-;;21885:2;21874:9;21870:18;21862:26;;21934:9;21928:4;21924:20;21920:1;21909:9;21905:17;21898:47;21962:78;22035:4;22026:6;21962:78;:::i;:::-;21954:86;;21852:195;;;;:::o;22053:419::-;;22257:2;22246:9;22242:18;22234:26;;22306:9;22300:4;22296:20;22292:1;22281:9;22277:17;22270:47;22334:131;22460:4;22334:131;:::i;:::-;22326:139;;22224:248;;;:::o;22478:419::-;;22682:2;22671:9;22667:18;22659:26;;22731:9;22725:4;22721:20;22717:1;22706:9;22702:17;22695:47;22759:131;22885:4;22759:131;:::i;:::-;22751:139;;22649:248;;;:::o;22903:419::-;;23107:2;23096:9;23092:18;23084:26;;23156:9;23150:4;23146:20;23142:1;23131:9;23127:17;23120:47;23184:131;23310:4;23184:131;:::i;:::-;23176:139;;23074:248;;;:::o;23328:419::-;;23532:2;23521:9;23517:18;23509:26;;23581:9;23575:4;23571:20;23567:1;23556:9;23552:17;23545:47;23609:131;23735:4;23609:131;:::i;:::-;23601:139;;23499:248;;;:::o;23753:419::-;;23957:2;23946:9;23942:18;23934:26;;24006:9;24000:4;23996:20;23992:1;23981:9;23977:17;23970:47;24034:131;24160:4;24034:131;:::i;:::-;24026:139;;23924:248;;;:::o;24178:419::-;;24382:2;24371:9;24367:18;24359:26;;24431:9;24425:4;24421:20;24417:1;24406:9;24402:17;24395:47;24459:131;24585:4;24459:131;:::i;:::-;24451:139;;24349:248;;;:::o;24603:419::-;;24807:2;24796:9;24792:18;24784:26;;24856:9;24850:4;24846:20;24842:1;24831:9;24827:17;24820:47;24884:131;25010:4;24884:131;:::i;:::-;24876:139;;24774:248;;;:::o;25028:419::-;;25232:2;25221:9;25217:18;25209:26;;25281:9;25275:4;25271:20;25267:1;25256:9;25252:17;25245:47;25309:131;25435:4;25309:131;:::i;:::-;25301:139;;25199:248;;;:::o;25453:419::-;;25657:2;25646:9;25642:18;25634:26;;25706:9;25700:4;25696:20;25692:1;25681:9;25677:17;25670:47;25734:131;25860:4;25734:131;:::i;:::-;25726:139;;25624:248;;;:::o;25878:419::-;;26082:2;26071:9;26067:18;26059:26;;26131:9;26125:4;26121:20;26117:1;26106:9;26102:17;26095:47;26159:131;26285:4;26159:131;:::i;:::-;26151:139;;26049:248;;;:::o;26303:419::-;;26507:2;26496:9;26492:18;26484:26;;26556:9;26550:4;26546:20;26542:1;26531:9;26527:17;26520:47;26584:131;26710:4;26584:131;:::i;:::-;26576:139;;26474:248;;;:::o;26728:419::-;;26932:2;26921:9;26917:18;26909:26;;26981:9;26975:4;26971:20;26967:1;26956:9;26952:17;26945:47;27009:131;27135:4;27009:131;:::i;:::-;27001:139;;26899:248;;;:::o;27153:419::-;;27357:2;27346:9;27342:18;27334:26;;27406:9;27400:4;27396:20;27392:1;27381:9;27377:17;27370:47;27434:131;27560:4;27434:131;:::i;:::-;27426:139;;27324:248;;;:::o;27578:419::-;;27782:2;27771:9;27767:18;27759:26;;27831:9;27825:4;27821:20;27817:1;27806:9;27802:17;27795:47;27859:131;27985:4;27859:131;:::i;:::-;27851:139;;27749:248;;;:::o;28003:419::-;;28207:2;28196:9;28192:18;28184:26;;28256:9;28250:4;28246:20;28242:1;28231:9;28227:17;28220:47;28284:131;28410:4;28284:131;:::i;:::-;28276:139;;28174:248;;;:::o;28428:419::-;;28632:2;28621:9;28617:18;28609:26;;28681:9;28675:4;28671:20;28667:1;28656:9;28652:17;28645:47;28709:131;28835:4;28709:131;:::i;:::-;28701:139;;28599:248;;;:::o;28853:419::-;;29057:2;29046:9;29042:18;29034:26;;29106:9;29100:4;29096:20;29092:1;29081:9;29077:17;29070:47;29134:131;29260:4;29134:131;:::i;:::-;29126:139;;29024:248;;;:::o;29278:419::-;;29482:2;29471:9;29467:18;29459:26;;29531:9;29525:4;29521:20;29517:1;29506:9;29502:17;29495:47;29559:131;29685:4;29559:131;:::i;:::-;29551:139;;29449:248;;;:::o;29703:419::-;;29907:2;29896:9;29892:18;29884:26;;29956:9;29950:4;29946:20;29942:1;29931:9;29927:17;29920:47;29984:131;30110:4;29984:131;:::i;:::-;29976:139;;29874:248;;;:::o;30128:419::-;;30332:2;30321:9;30317:18;30309:26;;30381:9;30375:4;30371:20;30367:1;30356:9;30352:17;30345:47;30409:131;30535:4;30409:131;:::i;:::-;30401:139;;30299:248;;;:::o;30553:419::-;;30757:2;30746:9;30742:18;30734:26;;30806:9;30800:4;30796:20;30792:1;30781:9;30777:17;30770:47;30834:131;30960:4;30834:131;:::i;:::-;30826:139;;30724:248;;;:::o;30978:419::-;;31182:2;31171:9;31167:18;31159:26;;31231:9;31225:4;31221:20;31217:1;31206:9;31202:17;31195:47;31259:131;31385:4;31259:131;:::i;:::-;31251:139;;31149:248;;;:::o;31403:419::-;;31607:2;31596:9;31592:18;31584:26;;31656:9;31650:4;31646:20;31642:1;31631:9;31627:17;31620:47;31684:131;31810:4;31684:131;:::i;:::-;31676:139;;31574:248;;;:::o;31828:419::-;;32032:2;32021:9;32017:18;32009:26;;32081:9;32075:4;32071:20;32067:1;32056:9;32052:17;32045:47;32109:131;32235:4;32109:131;:::i;:::-;32101:139;;31999:248;;;:::o;32253:419::-;;32457:2;32446:9;32442:18;32434:26;;32506:9;32500:4;32496:20;32492:1;32481:9;32477:17;32470:47;32534:131;32660:4;32534:131;:::i;:::-;32526:139;;32424:248;;;:::o;32678:419::-;;32882:2;32871:9;32867:18;32859:26;;32931:9;32925:4;32921:20;32917:1;32906:9;32902:17;32895:47;32959:131;33085:4;32959:131;:::i;:::-;32951:139;;32849:248;;;:::o;33103:419::-;;33307:2;33296:9;33292:18;33284:26;;33356:9;33350:4;33346:20;33342:1;33331:9;33327:17;33320:47;33384:131;33510:4;33384:131;:::i;:::-;33376:139;;33274:248;;;:::o;33528:334::-;;33715:2;33704:9;33700:18;33692:26;;33728:127;33852:1;33841:9;33837:17;33828:6;33728:127;:::i;:::-;33682:180;;;;:::o;33868:222::-;;33999:2;33988:9;33984:18;33976:26;;34012:71;34080:1;34069:9;34065:17;34056:6;34012:71;:::i;:::-;33966:124;;;;:::o;34096:332::-;;34255:2;34244:9;34240:18;34232:26;;34268:71;34336:1;34325:9;34321:17;34312:6;34268:71;:::i;:::-;34349:72;34417:2;34406:9;34402:18;34393:6;34349:72;:::i;:::-;34222:206;;;;;:::o;34434:218::-;;34563:2;34552:9;34548:18;34540:26;;34576:69;34642:1;34631:9;34627:17;34618:6;34576:69;:::i;:::-;34530:122;;;;:::o;34658:214::-;;34785:2;34774:9;34770:18;34762:26;;34798:67;34862:1;34851:9;34847:17;34838:6;34798:67;:::i;:::-;34752:120;;;;:::o;34878:218::-;;35007:2;34996:9;34992:18;34984:26;;35020:69;35086:1;35075:9;35071:17;35062:6;35020:69;:::i;:::-;34974:122;;;;:::o;35102:99::-;;35188:5;35182:12;35172:22;;35161:40;;;:::o;35207:169::-;;35325:6;35320:3;35313:19;35365:4;35360:3;35356:14;35341:29;;35303:73;;;;:::o;35382:148::-;;35521:3;35506:18;;35496:34;;;;:::o;35536:305::-;;35595:20;35613:1;35595:20;:::i;:::-;35590:25;;35629:20;35647:1;35629:20;:::i;:::-;35624:25;;35783:1;35715:66;35711:74;35708:1;35705:81;35702:2;;;35789:18;;:::i;:::-;35702:2;35833:1;35830;35826:9;35819:16;;35580:261;;;;:::o;35847:185::-;;35904:20;35922:1;35904:20;:::i;:::-;35899:25;;35938:20;35956:1;35938:20;:::i;:::-;35933:25;;35977:1;35967:2;;35982:18;;:::i;:::-;35967:2;36024:1;36021;36017:9;36012:14;;35889:143;;;;:::o;36038:191::-;;36098:20;36116:1;36098:20;:::i;:::-;36093:25;;36132:20;36150:1;36132:20;:::i;:::-;36127:25;;36171:1;36168;36165:8;36162:2;;;36176:18;;:::i;:::-;36162:2;36221:1;36218;36214:9;36206:17;;36083:146;;;;:::o;36235:96::-;;36301:24;36319:5;36301:24;:::i;:::-;36290:35;;36280:51;;;:::o;36337:90::-;;36414:5;36407:13;36400:21;36389:32;;36379:48;;;:::o;36433:77::-;;36499:5;36488:16;;36478:32;;;:::o;36516:126::-;;36593:42;36586:5;36582:54;36571:65;;36561:81;;;:::o;36648:142::-;;36725:58;36718:5;36714:70;36703:81;;36693:97;;;:::o;36796:77::-;;36862:5;36851:16;;36841:32;;;:::o;36879:93::-;;36955:10;36948:5;36944:22;36933:33;;36923:49;;;:::o;36978:86::-;;37053:4;37046:5;37042:16;37031:27;;37021:43;;;:::o;37070:109::-;;37146:26;37139:5;37135:38;37124:49;;37114:65;;;:::o;37185:307::-;37253:1;37263:113;37277:6;37274:1;37271:13;37263:113;;;37362:1;37357:3;37353:11;37347:18;37343:1;37338:3;37334:11;37327:39;37299:2;37296:1;37292:10;37287:15;;37263:113;;;37394:6;37391:1;37388:13;37385:2;;;37474:1;37465:6;37460:3;37456:16;37449:27;37385:2;37234:258;;;;:::o;37498:320::-;;37579:1;37573:4;37569:12;37559:22;;37626:1;37620:4;37616:12;37647:18;37637:2;;37703:4;37695:6;37691:17;37681:27;;37637:2;37765;37757:6;37754:14;37734:18;37731:38;37728:2;;;37784:18;;:::i;:::-;37728:2;37549:269;;;;:::o;37824:79::-;;37892:5;37881:16;;37871:32;;;:::o;37909:176::-;;37958:20;37976:1;37958:20;:::i;:::-;37953:25;;37992:20;38010:1;37992:20;:::i;:::-;37987:25;;38031:1;38021:2;;38036:18;;:::i;:::-;38021:2;38077:1;38074;38070:9;38065:14;;37943:142;;;;:::o;38091:180::-;38139:77;38136:1;38129:88;38236:4;38233:1;38226:15;38260:4;38257:1;38250:15;38277:180;38325:77;38322:1;38315:88;38422:4;38419:1;38412:15;38446:4;38443:1;38436:15;38463:180;38511:77;38508:1;38501:88;38608:4;38605:1;38598:15;38632:4;38629:1;38622:15;38649:102;;38741:2;38737:7;38732:2;38725:5;38721:14;38717:28;38707:38;;38697:54;;;:::o;38757:174::-;38897:26;38893:1;38885:6;38881:14;38874:50;38863:68;:::o;38937:222::-;39077:34;39073:1;39065:6;39061:14;39054:58;39146:5;39141:2;39133:6;39129:15;39122:30;39043:116;:::o;39165:225::-;39305:34;39301:1;39293:6;39289:14;39282:58;39374:8;39369:2;39361:6;39357:15;39350:33;39271:119;:::o;39396:181::-;39536:33;39532:1;39524:6;39520:14;39513:57;39502:75;:::o;39583:170::-;39723:22;39719:1;39711:6;39707:14;39700:46;39689:64;:::o;39759:179::-;39899:31;39895:1;39887:6;39883:14;39876:55;39865:73;:::o;39944:221::-;40084:34;40080:1;40072:6;40068:14;40061:58;40153:4;40148:2;40140:6;40136:15;40129:29;40050:115;:::o;40171:175::-;40311:27;40307:1;40299:6;40295:14;40288:51;40277:69;:::o;40352:225::-;40492:34;40488:1;40480:6;40476:14;40469:58;40561:8;40556:2;40548:6;40544:15;40537:33;40458:119;:::o;40583:221::-;40723:34;40719:1;40711:6;40707:14;40700:58;40792:4;40787:2;40779:6;40775:15;40768:29;40689:115;:::o;40810:214::-;40950:66;40946:1;40938:6;40934:14;40927:90;40916:108;:::o;41030:179::-;41170:31;41166:1;41158:6;41154:14;41147:55;41136:73;:::o;41215:225::-;41355:34;41351:1;41343:6;41339:14;41332:58;41424:8;41419:2;41411:6;41407:15;41400:33;41321:119;:::o;41446:221::-;41586:34;41582:1;41574:6;41570:14;41563:58;41655:4;41650:2;41642:6;41638:15;41631:29;41552:115;:::o;41673:166::-;41813:18;41809:1;41801:6;41797:14;41790:42;41779:60;:::o;41845:221::-;41985:34;41981:1;41973:6;41969:14;41962:58;42054:4;42049:2;42041:6;42037:15;42030:29;41951:115;:::o;42072:180::-;42212:32;42208:1;42200:6;42196:14;42189:56;42178:74;:::o;42258:227::-;42398:34;42394:1;42386:6;42382:14;42375:58;42467:10;42462:2;42454:6;42450:15;42443:35;42364:121;:::o;42491:235::-;42631:34;42627:1;42619:6;42615:14;42608:58;42700:18;42695:2;42687:6;42683:15;42676:43;42597:129;:::o;42732:182::-;42872:34;42868:1;42860:6;42856:14;42849:58;42838:76;:::o;42920:226::-;43060:34;43056:1;43048:6;43044:14;43037:58;43129:9;43124:2;43116:6;43112:15;43105:34;43026:120;:::o;43152:153::-;43292:5;43288:1;43280:6;43276:14;43269:29;43258:47;:::o;43311:220::-;43451:34;43447:1;43439:6;43435:14;43428:58;43520:3;43515:2;43507:6;43503:15;43496:28;43417:114;:::o;43537:224::-;43677:34;43673:1;43665:6;43661:14;43654:58;43746:7;43741:2;43733:6;43729:15;43722:32;43643:118;:::o;43767:225::-;43907:34;43903:1;43895:6;43891:14;43884:58;43976:8;43971:2;43963:6;43959:15;43952:33;43873:119;:::o;43998:223::-;44138:34;44134:1;44126:6;44122:14;44115:58;44207:6;44202:2;44194:6;44190:15;44183:31;44104:117;:::o;44227:224::-;44367:34;44363:1;44355:6;44351:14;44344:58;44436:7;44431:2;44423:6;44419:15;44412:32;44333:118;:::o;44457:181::-;44597:33;44593:1;44585:6;44581:14;44574:57;44563:75;:::o;44644:122::-;44717:24;44735:5;44717:24;:::i;:::-;44710:5;44707:35;44697:2;;44756:1;44753;44746:12;44697:2;44687:79;:::o;44772:122::-;44845:24;44863:5;44845:24;:::i;:::-;44838:5;44835:35;44825:2;;44884:1;44881;44874:12;44825:2;44815:79;:::o;44900:122::-;44973:24;44991:5;44973:24;:::i;:::-;44966:5;44963:35;44953:2;;45012:1;45009;45002:12;44953:2;44943:79;:::o;45028:120::-;45100:23;45117:5;45100:23;:::i;:::-;45093:5;45090:34;45080:2;;45138:1;45135;45128:12;45080:2;45070:78;:::o;45154:118::-;45225:22;45241:5;45225:22;:::i;:::-;45218:5;45215:33;45205:2;;45262:1;45259;45252:12;45205:2;45195:77;:::o
Swarm Source
ipfs://df2167962fb166e58a222e093c55fd60994af41800444d819495873ad531c488
[ 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.