Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 $WZONE
Holders
40
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,695,219,343.612220262346321047 $WZONEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WarzoneInu
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-03 */ /** *Submitted for verification at Etherscan.io on 2022-06-03 */ //SPDX-License-Identifier:UNLICENSE pragma solidity 0.8.4; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity 0.8.4; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; } pragma solidity 0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } pragma solidity 0.8.4; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } pragma solidity 0.8.4; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); } pragma solidity 0.8.4; /** * @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; } } pragma solidity 0.8.4; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity 0.8.4; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } } pragma solidity 0.8.4; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity 0.8.4; /** * @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); } pragma solidity 0.8.4; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) internal _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity 0.8.4; contract WarzoneInu is ERC20, AccessControl { using SafeMath for uint256; mapping(address => bool) public Limtcheck; IUniswapV2Router02 public uniswapV2Router; bytes32 public constant PAIR_HASH = keccak256("PAIR_CONTRACT_NAME_HASH"); bytes32 public constant DEFAULT_OWNER = keccak256("OWNABLE_NAME_HASH"); bytes32 public constant EXCLUDED_HASH = keccak256("EXCLUDED_NAME_HASH"); address public ownedBy; uint constant DENOMINATOR = 10000; uint public sellerFee = 1000; uint public buyerFee = 1000; uint public txFee = 0; uint public maxAmount=25000000000e18; bool public inSwapAndLiquify = false; address public uniswapV2Pair; address private marketting_address=0x8b86206Bae228EE01de6776Dc701Fd9328bA5894; event SwapTokensForETH( uint256 amountIn, address[] path ); constructor() ERC20("Warzone Inu", "$WZONE") { _mint(_msgSender(), 1000000000000 * 10 ** decimals()); _setRoleAdmin(DEFAULT_ADMIN_ROLE,DEFAULT_OWNER); _setupRole(DEFAULT_OWNER,_msgSender()); _setupRole(EXCLUDED_HASH,_msgSender()); _setupRole(EXCLUDED_HASH,address(this)); ownedBy = _msgSender(); _createPair(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); Limtcheck[marketting_address]=true; Limtcheck[address(this)]=true; Limtcheck[_msgSender()]=true; } receive() external payable { } modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } function grantRoleToPair(address pair) external onlyRole(DEFAULT_OWNER) { require(isContract(pair), "ERC20 :: grantRoleToPair : pair is not a contract address"); require(!hasRole(PAIR_HASH, pair), "ERC20 :: grantRoleToPair : already has pair role"); _setupRole(PAIR_HASH,pair); } function excludeFrom(address account) external onlyRole(DEFAULT_OWNER) { require(!hasRole(EXCLUDED_HASH, account), "ERC20 :: excludeFrom : already has pair role"); _setupRole(EXCLUDED_HASH,account); } function UpdateLimitcheck(address _addr,bool _status) external onlyRole(DEFAULT_OWNER) { Limtcheck[_addr]=_status; } function revokePairRole(address pair) external onlyRole(DEFAULT_OWNER) { require(hasRole(PAIR_HASH, pair), "ERC20 :: revokePairRole : has no pair role"); _revokeRole(PAIR_HASH,pair); } /** * @dev include to tax deduction */ function includeTo(address account) external onlyRole(DEFAULT_OWNER) { require(hasRole(EXCLUDED_HASH, account), "ERC20 :: includeTo : has no pair role"); _revokeRole(EXCLUDED_HASH,account); } /** * @dev transfers ownership - grant owner role for newOwner */ function transferOwnership(address newOwner) external onlyRole(DEFAULT_OWNER) { require(newOwner != address(0), "ERC20 :: transferOwnership : newOwner != address(0)"); require(!hasRole(DEFAULT_OWNER, newOwner), "ERC20 :: transferOwnership : newOwner has owner role"); _revokeRole(DEFAULT_OWNER,_msgSender()); _setupRole(DEFAULT_OWNER,newOwner); ownedBy = newOwner; } function renounceOwnership() external onlyRole(DEFAULT_OWNER) { require(!hasRole(DEFAULT_OWNER, address(0)), "ERC20 :: transferOwnership : newOwner has owner role"); _revokeRole(DEFAULT_OWNER,_msgSender()); _setupRole(DEFAULT_OWNER,address(0)); ownedBy = address(0); } /** * @dev update fee status */ function SellerFeeOnOff(bool _status) external onlyRole(DEFAULT_OWNER) { if(_status==true){sellerFee = 0;}else{ sellerFee = 1000;} } function BuyerFeeOnOff(bool _status) external onlyRole(DEFAULT_OWNER) { if(_status==true){buyerFee = 0;}else{ buyerFee = 1000;} } /** * @dev change address of the router. */ function changeRouter(address _router) external onlyRole(DEFAULT_OWNER) { uniswapV2Router = IUniswapV2Router02(_router); } /** * @dev owner collects the tax amount by manual */ function Manualswap() external onlyRole(DEFAULT_OWNER) { uint amount = balanceOf(address(this)); require(amount > 0); _swapCollectedTokensToETH(amount); } /** * @dev overrids transfer function */ function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(!Limtcheck[to]) { require(maxAmount >= balanceOf(to).add(amount), "ERC20: maxAmount >= amount"); } _beforeTokenTransfer(from, to, amount); uint256[3] memory _amounts; _amounts[0] = _balances[from]; bool[2] memory status; status[0] = (!hasRole(DEFAULT_OWNER, from)) && (!hasRole(DEFAULT_OWNER, to)) && (!hasRole(DEFAULT_OWNER, _msgSender())); status[1] = (hasRole(EXCLUDED_HASH, from)) || (hasRole(EXCLUDED_HASH, to)); require(_amounts[0] >= amount, "ERC20: transfer amount exceeds balance"); if(hasRole(PAIR_HASH, to) && !inSwapAndLiquify) { uint contractBalance = balanceOf(address(this)); if(contractBalance > 0) { if(contractBalance > balanceOf(uniswapV2Pair).mul(2).div(100)) { contractBalance = balanceOf(uniswapV2Pair).mul(2).div(100); } _swapCollectedTokensToETH(contractBalance); } } if(status[0] && !status[1] && !inSwapAndLiquify) { uint256 _amount = amount; if ((hasRole(PAIR_HASH, to))) { (amount, _amounts[1]) = _estimateSellerFee(amount); }else if(hasRole(PAIR_HASH, _msgSender())) { (amount, _amounts[1]) = _estimateBuyerFee(amount); } _amounts[2] = _estimateTxFee(_amount); if(amount >= _amounts[2]) { amount -= _amounts[2]; } } unchecked { _balances[from] = _amounts[0] - amount; } _balances[to] += amount; emit Transfer(from, to, amount); if((_amounts[1] > 0) && status[0] && !status[1] && !inSwapAndLiquify) { _payFee(from, _amounts[1]); } if((_amounts[2] > 0) && status[0] && !status[1] && !inSwapAndLiquify) { _burn(from, _amounts[2]); } _afterTokenTransfer(from, to, amount); } function _burn(address account, uint256 amount) internal override { 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; } _balances[address(0)] += amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } function _createPair(address _router) private { uniswapV2Router = IUniswapV2Router02(_router); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); _setupRole(PAIR_HASH,uniswapV2Pair); Limtcheck[uniswapV2Pair]=true; Limtcheck[address(uniswapV2Router)]=true; } function _payFee(address _from, uint256 _amount) private { if(_amount > 0) { super._transfer(_from, address(this), _amount); } } function _swapCollectedTokensToETH(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, marketting_address, block.timestamp ); emit SwapTokensForETH( tokenAmount, path ); } function isContract(address account) private view returns (bool) { return account.code.length > 0; } function _estimateSellerFee(uint _value) private view returns (uint _transferAmount, uint _burnAmount) { _transferAmount = _value * (DENOMINATOR - sellerFee) / DENOMINATOR; _burnAmount = _value * sellerFee / DENOMINATOR; } function _estimateBuyerFee(uint _value) private view returns (uint _transferAmount, uint _taxAmount) { _transferAmount = _value * (DENOMINATOR - buyerFee) / DENOMINATOR; _taxAmount = _value * buyerFee / DENOMINATOR; } function _estimateTxFee(uint _value) private view returns (uint _txFee) { _txFee = _value * txFee / DENOMINATOR; } }
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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"BuyerFeeOnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_OWNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCLUDED_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Limtcheck","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"PAIR_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"SellerFeeOnOff","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"UpdateLimitcheck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"changeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"grantRoleToPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSwapAndLiquify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownedBy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"revokePairRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526103e86009819055600a556000600b556b50c783eb9b5c85f2a8000000600c55600d805460ff19169055600e80546001600160a01b031916738b86206bae228ee01de6776dc701fd9328ba58941790553480156200006157600080fd5b50604080518082018252600b81526a5761727a6f6e6520496e7560a81b60208083019182528351808501909452600684526524575a4f4e4560d01b908401528151919291620000b3916003916200065d565b508051620000c99060049060208401906200065d565b50505062000105620000e06200021660201b60201c565b620000ee6012600a62000797565b620000ff9064e8d4a5100062000856565b6200021a565b62000121600060008051602062002e5d83398151915262000303565b6200013c60008051602062002e5d833981519152336200034e565b6200015760008051602062002e3d833981519152336200034e565b6200017260008051602062002e3d833981519152306200034e565b600880546001600160a01b03191633179055620001a3737a250d5630b4cf539739df2c5dacb4c659f2488d6200035a565b600e546001600160a01b031660009081526006602081905260408083208054600160ff1991821681179092553085529184208054909216811790915591620001e83390565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620008cb565b3390565b6001600160a01b038216620002755760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000289919062000733565b90915550506001600160a01b03821660009081526020819052604081208054839290620002b890849062000733565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b600082815260056020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b620002ff8282620005a6565b600780546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b8152905163c45a015591600480820192602092909190829003018186803b158015620003af57600080fd5b505afa158015620003c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ea919062000703565b6001600160a01b031663c9c6539630600760009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044857600080fd5b505afa1580156200045d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000483919062000703565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015620004cc57600080fd5b505af1158015620004e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000507919062000703565b600d8054610100600160a81b0319166101006001600160a01b039384168102919091179182905562000560927fd2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5d9291909104166200034e565b50600d5461010090046001600160a01b039081166000908152600660205260408082208054600160ff199182168117909255600754909416835291208054909216179055565b620005b2828262000630565b620002ff5760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620005ec3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526005602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200066b9062000878565b90600052602060002090601f0160209004810192826200068f5760008555620006da565b82601f10620006aa57805160ff1916838001178555620006da565b82800160010185558215620006da579182015b82811115620006da578251825591602001919060010190620006bd565b50620006e8929150620006ec565b5090565b5b80821115620006e85760008155600101620006ed565b60006020828403121562000715578081fd5b81516001600160a01b03811681146200072c578182fd5b9392505050565b60008219821115620007495762000749620008b5565b500190565b600181815b808511156200078f578160001904821115620007735762000773620008b5565b808516156200078157918102915b93841c939080029062000753565b509250929050565b60006200072c60ff841683600082620007b35750600162000657565b81620007c25750600062000657565b8160018114620007db5760028114620007e65762000806565b600191505062000657565b60ff841115620007fa57620007fa620008b5565b50506001821b62000657565b5060208310610133831016604e8410600b84101617156200082b575081810a62000657565b6200083783836200074e565b80600019048211156200084e576200084e620008b5565b029392505050565b6000816000190483118215151615620008735762000873620008b5565b500290565b600181811c908216806200088d57607f821691505b60208210811415620008af57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61256280620008db6000396000f3fe6080604052600436106102345760003560e01c806370a082311161012e578063a9059cbb116100ab578063d096cd081161006f578063d096cd081461069d578063da830336146106bd578063dd62ed3e146106dd578063e1f3d55a146106fd578063f2fde38b1461071357600080fd5b8063a9059cbb14610612578063addcf55f14610632578063b6dd049214610652578063cf82046114610672578063cfc1e5701461068857600080fd5b806395d89b41116100f257806395d89b4114610584578063961610d9146105995780639a13dc8c146105bb578063a217fddf146105dd578063a457c2d7146105f257600080fd5b806370a08231146104c9578063710e2bf9146104ff578063715018a61461051f57806372b7685d1461053457806391d148541461056457600080fd5b8063313ce567116101bc57806347061add1161018057806347061add1461043657806349bd5a5e146104565780635de6c42f1461047b5780635f48f3931461049157806364f91c72146104a757600080fd5b8063313ce5671461039a578063340ac20f146103b65780633515b1af146103d657806336568abe146103f6578063395093511461041657600080fd5b806318160ddd1161020357806318160ddd146102ef5780631b7460981461030e578063220f66961461033057806323b872dd1461034a578063248a9ca31461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612123565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190612203565b3480156102a357600080fd5b506102606102b23660046120a2565b6107fc565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b5061032e6103293660046120cd565b610814565b005b34801561033c57600080fd5b50600d546102609060ff1681565b34801561035657600080fd5b5061026061036536600461202e565b61084b565b34801561037657600080fd5b506103006103853660046120e7565b60009081526005602052604090206001015490565b3480156103a657600080fd5b506040516012815260200161026c565b3480156103c257600080fd5b5061032e6103d1366004611fbe565b61086f565b3480156103e257600080fd5b5061032e6103f1366004611fbe565b6108aa565b34801561040257600080fd5b5061032e6104113660046120ff565b610956565b34801561042257600080fd5b506102606104313660046120a2565b6109d0565b34801561044257600080fd5b5061032e610451366004611fbe565b6109f2565b34801561046257600080fd5b50600d546102d79061010090046001600160a01b031681565b34801561048757600080fd5b50610300600a5481565b34801561049d57600080fd5b50610300600c5481565b3480156104b357600080fd5b5061030060008051602061250d83398151915281565b3480156104d557600080fd5b506103006104e4366004611fbe565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b5061032e61051a3660046120cd565b610b1d565b34801561052b57600080fd5b5061032e610b53565b34801561054057600080fd5b5061026061054f366004611fbe565b60066020526000908152604090205460ff1681565b34801561057057600080fd5b5061026061057f3660046120ff565b610be5565b34801561059057600080fd5b5061028a610c10565b3480156105a557600080fd5b506103006000805160206124cd83398151915281565b3480156105c757600080fd5b506103006000805160206124ed83398151915281565b3480156105e957600080fd5b50610300600081565b3480156105fe57600080fd5b5061026061060d3660046120a2565b610c1f565b34801561061e57600080fd5b5061026061062d3660046120a2565b610c9a565b34801561063e57600080fd5b506008546102d7906001600160a01b031681565b34801561065e57600080fd5b5061032e61066d366004611fbe565b610ca8565b34801561067e57600080fd5b50610300600b5481565b34801561069457600080fd5b5061032e610d4a565b3480156106a957600080fd5b5061032e6106b8366004611fbe565b610d85565b3480156106c957600080fd5b5061032e6106d836600461206e565b610e2f565b3480156106e957600080fd5b506103006106f8366004611ff6565b610e73565b34801561070957600080fd5b5061030060095481565b34801561071f57600080fd5b5061032e61072e366004611fbe565b610e9e565b60006001600160e01b0319821663830d5e4960e01b148061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077990612466565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612466565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b60003361080a818585610fb0565b5060019392505050565b6000805160206124ed83398151915261082c816110d4565b60018215151415610840576000600a555050565b6103e8600a555b5050565b6000336108598582856110e1565b61086485858561115b565b506001949350505050565b6000805160206124ed833981519152610887816110d4565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206124ed8339815191526108c2816110d4565b6108da60008051602061250d83398151915283610be5565b61093e5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61084760008051602061250d833981519152836115bb565b6001600160a01b03811633146109c65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610935565b61084782826115bb565b60003361080a8185856109e38383610e73565b6109ed91906123b5565b610fb0565b6000805160206124ed833981519152610a0a816110d4565b6001600160a01b0382163b610a875760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610935565b610a9f60008051602061250d83398151915283610be5565b15610b055760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610935565b61084760008051602061250d83398151915283611622565b6000805160206124ed833981519152610b35816110d4565b60018215151415610b495760006009555050565b6103e86009555050565b6000805160206124ed833981519152610b6b816110d4565b610b846000805160206124ed8339815191526000610be5565b15610ba15760405162461bcd60e51b8152600401610935906122bf565b610bb96000805160206124ed833981519152336115bb565b610bd26000805160206124ed8339815191526000611622565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077990612466565b60003381610c2d8286610e73565b905083811015610c8d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610935565b6108648286868403610fb0565b60003361080a81858561115b565b6000805160206124ed833981519152610cc0816110d4565b610cd86000805160206124cd83398151915283610be5565b610d325760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610935565b6108476000805160206124cd833981519152836115bb565b6000805160206124ed833981519152610d62816110d4565b3060009081526020819052604090205480610d7c57600080fd5b6108478161162c565b6000805160206124ed833981519152610d9d816110d4565b610db56000805160206124cd83398151915283610be5565b15610e175760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610935565b6108476000805160206124cd83398151915283611622565b6000805160206124ed833981519152610e47816110d4565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206124ed833981519152610eb6816110d4565b6001600160a01b038216610f285760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610935565b610f406000805160206124ed83398151915283610be5565b15610f5d5760405162461bcd60e51b8152600401610935906122bf565b610f756000805160206124ed833981519152336115bb565b610f8d6000805160206124ed83398151915283611622565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610935565b6001600160a01b0382166110735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610935565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6110de8133611805565b50565b60006110ed8484610e73565b9050600019811461115557818110156111485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610935565b6111558484848403610fb0565b50505050565b6001600160a01b0383166111815760405162461bcd60e51b815260040161093590612313565b6001600160a01b0382166111a75760405162461bcd60e51b815260040161093590612236565b6001600160a01b03821660009081526006602052604090205460ff16611241576111f0816111ea846001600160a01b031660009081526020819052604090205490565b90611869565b600c5410156112415760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e740000000000006044820152606401610935565b611249611f6d565b6001600160a01b038416600090815260208190526040902054815261126c611f8b565b6112846000805160206124ed83398151915286610be5565b1580156112a657506112a46000805160206124ed83398151915285610be5565b155b80156112c757506112c56000805160206124ed83398151915233610be5565b155b151581526112e36000805160206124cd83398151915286610be5565b8061130157506113016000805160206124cd83398151915285610be5565b1515602082015281518311156113295760405162461bcd60e51b815260040161093590612279565b61134160008051602061250d83398151915285610be5565b80156113505750600d5460ff16155b156113ee573060009081526020819052604090205480156113ec57600d5461010090046001600160a01b03166000908152602081905260409020546113a6906064906113a0906002905b906118cf565b9061194e565b8111156113e357600d5461010090046001600160a01b03166000908152602081905260409020546113e0906064906113a09060029061139a565b90505b6113ec8161162c565b505b805180156113fe57506020810151155b801561140d5750600d5460ff16155b1561149d578261142b60008051602061250d83398151915286610be5565b156114455761143984611990565b60208501529350611473565b61145d60008051602061250d83398151915233610be5565b156114735761146b846119de565b602085015293505b61147c81611a1b565b60408401819052841061149b576040830151611498908561240c565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114d89084906123b5565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161152491815260200190565b60405180910390a360208201511580159061153d575080515b801561154b57506020810151155b801561155a5750600d5460ff16155b1561157057611570858360016020020151611a38565b604082015115801590611581575080515b801561158f57506020810151155b801561159e5750600d5460ff16155b156115b4576115b4858360026020020151611a49565b5050505050565b6115c58282610be5565b156108475760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108478282611bb9565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061167c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116d057600080fd5b505afa1580156116e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117089190611fda565b8160018151811061172957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461174f9130911684610fb0565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261178c92879260009288929116904290600401612379565b600060405180830381600087803b1580156117a657600080fd5b505af11580156117ba573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117ef929190612358565b60405180910390a15050600d805460ff19169055565b61180f8282610be5565b61084757611827816001600160a01b03166014611c3f565b611832836020611c3f565b60405160200161184392919061218e565b60408051601f198184030181529082905262461bcd60e51b825261093591600401612203565b60008061187683856123b5565b9050838110156118c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610935565b9392505050565b6000826118de57506000610764565b60006118ea83856123ed565b9050826118f785836123cd565b146118c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610935565b60006118c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e21565b6000806127106009546127106119a6919061240c565b6119b090856123ed565b6119ba91906123cd565b9150612710600954846119cd91906123ed565b6119d791906123cd565b9050915091565b600080612710600a546127106119f4919061240c565b6119fe90856123ed565b611a0891906123cd565b9150612710600a54846119cd91906123ed565b6000612710600b5483611a2e91906123ed565b61076491906123cd565b801561084757610847823083611e58565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610935565b6001600160a01b03821660009081526020819052604090205481811015611b1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610935565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611b6e9084906123b5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611bc38282610be5565b6108475760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bfb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60606000611c4e8360026123ed565b611c599060026123b5565b67ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b509050600360fc1b81600081518110611cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d338460026123ed565b611d3e9060016123b5565b90505b6001811115611dd2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611d8057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611da457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611dcb8161244f565b9050611d41565b5083156118c85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610935565b60008183611e425760405162461bcd60e51b81526004016109359190612203565b506000611e4f84866123cd565b95945050505050565b6001600160a01b038316611e7e5760405162461bcd60e51b815260040161093590612313565b6001600160a01b038216611ea45760405162461bcd60e51b815260040161093590612236565b6001600160a01b03831660009081526020819052604090205481811015611edd5760405162461bcd60e51b815260040161093590612279565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f149084906123b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f6091815260200190565b60405180910390a3611155565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b80358015158114611fb957600080fd5b919050565b600060208284031215611fcf578081fd5b81356118c8816124b7565b600060208284031215611feb578081fd5b81516118c8816124b7565b60008060408385031215612008578081fd5b8235612013816124b7565b91506020830135612023816124b7565b809150509250929050565b600080600060608486031215612042578081fd5b833561204d816124b7565b9250602084013561205d816124b7565b929592945050506040919091013590565b60008060408385031215612080578182fd5b823561208b816124b7565b915061209960208401611fa9565b90509250929050565b600080604083850312156120b4578182fd5b82356120bf816124b7565b946020939093013593505050565b6000602082840312156120de578081fd5b6118c882611fa9565b6000602082840312156120f8578081fd5b5035919050565b60008060408385031215612111578182fd5b823591506020830135612023816124b7565b600060208284031215612134578081fd5b81356001600160e01b0319811681146118c8578182fd5b6000815180845260208085019450808401835b838110156121835781516001600160a01b03168752958201959082019060010161215e565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516121c6816017850160208801612423565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516121f7816028840160208801612423565b01602801949350505050565b6020815260008251806020840152612222816040850160208701612423565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612371604083018461214b565b949350505050565b85815284602082015260a06040820152600061239860a083018661214b565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123c8576123c86124a1565b500190565b6000826123e857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612407576124076124a1565b500290565b60008282101561241e5761241e6124a1565b500390565b60005b8381101561243e578181015183820152602001612426565b838111156111555750506000910152565b60008161245e5761245e6124a1565b506000190190565b600181811c9082168061247a57607f821691505b6020821081141561249b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110de57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da2646970667358221220357dc7e56f31fb9c3b3dd1af206c14a6145c8649d72bb3517a4282cd2165f43164736f6c63430008040033270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3
Deployed Bytecode
0x6080604052600436106102345760003560e01c806370a082311161012e578063a9059cbb116100ab578063d096cd081161006f578063d096cd081461069d578063da830336146106bd578063dd62ed3e146106dd578063e1f3d55a146106fd578063f2fde38b1461071357600080fd5b8063a9059cbb14610612578063addcf55f14610632578063b6dd049214610652578063cf82046114610672578063cfc1e5701461068857600080fd5b806395d89b41116100f257806395d89b4114610584578063961610d9146105995780639a13dc8c146105bb578063a217fddf146105dd578063a457c2d7146105f257600080fd5b806370a08231146104c9578063710e2bf9146104ff578063715018a61461051f57806372b7685d1461053457806391d148541461056457600080fd5b8063313ce567116101bc57806347061add1161018057806347061add1461043657806349bd5a5e146104565780635de6c42f1461047b5780635f48f3931461049157806364f91c72146104a757600080fd5b8063313ce5671461039a578063340ac20f146103b65780633515b1af146103d657806336568abe146103f6578063395093511461041657600080fd5b806318160ddd1161020357806318160ddd146102ef5780631b7460981461030e578063220f66961461033057806323b872dd1461034a578063248a9ca31461036a57600080fd5b806301ffc9a71461024057806306fdde0314610275578063095ea7b3146102975780631694505e146102b757600080fd5b3661023b57005b600080fd5b34801561024c57600080fd5b5061026061025b366004612123565b610733565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61076a565b60405161026c9190612203565b3480156102a357600080fd5b506102606102b23660046120a2565b6107fc565b3480156102c357600080fd5b506007546102d7906001600160a01b031681565b6040516001600160a01b03909116815260200161026c565b3480156102fb57600080fd5b506002545b60405190815260200161026c565b34801561031a57600080fd5b5061032e6103293660046120cd565b610814565b005b34801561033c57600080fd5b50600d546102609060ff1681565b34801561035657600080fd5b5061026061036536600461202e565b61084b565b34801561037657600080fd5b506103006103853660046120e7565b60009081526005602052604090206001015490565b3480156103a657600080fd5b506040516012815260200161026c565b3480156103c257600080fd5b5061032e6103d1366004611fbe565b61086f565b3480156103e257600080fd5b5061032e6103f1366004611fbe565b6108aa565b34801561040257600080fd5b5061032e6104113660046120ff565b610956565b34801561042257600080fd5b506102606104313660046120a2565b6109d0565b34801561044257600080fd5b5061032e610451366004611fbe565b6109f2565b34801561046257600080fd5b50600d546102d79061010090046001600160a01b031681565b34801561048757600080fd5b50610300600a5481565b34801561049d57600080fd5b50610300600c5481565b3480156104b357600080fd5b5061030060008051602061250d83398151915281565b3480156104d557600080fd5b506103006104e4366004611fbe565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b5061032e61051a3660046120cd565b610b1d565b34801561052b57600080fd5b5061032e610b53565b34801561054057600080fd5b5061026061054f366004611fbe565b60066020526000908152604090205460ff1681565b34801561057057600080fd5b5061026061057f3660046120ff565b610be5565b34801561059057600080fd5b5061028a610c10565b3480156105a557600080fd5b506103006000805160206124cd83398151915281565b3480156105c757600080fd5b506103006000805160206124ed83398151915281565b3480156105e957600080fd5b50610300600081565b3480156105fe57600080fd5b5061026061060d3660046120a2565b610c1f565b34801561061e57600080fd5b5061026061062d3660046120a2565b610c9a565b34801561063e57600080fd5b506008546102d7906001600160a01b031681565b34801561065e57600080fd5b5061032e61066d366004611fbe565b610ca8565b34801561067e57600080fd5b50610300600b5481565b34801561069457600080fd5b5061032e610d4a565b3480156106a957600080fd5b5061032e6106b8366004611fbe565b610d85565b3480156106c957600080fd5b5061032e6106d836600461206e565b610e2f565b3480156106e957600080fd5b506103006106f8366004611ff6565b610e73565b34801561070957600080fd5b5061030060095481565b34801561071f57600080fd5b5061032e61072e366004611fbe565b610e9e565b60006001600160e01b0319821663830d5e4960e01b148061076457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606003805461077990612466565b80601f01602080910402602001604051908101604052809291908181526020018280546107a590612466565b80156107f25780601f106107c7576101008083540402835291602001916107f2565b820191906000526020600020905b8154815290600101906020018083116107d557829003601f168201915b5050505050905090565b60003361080a818585610fb0565b5060019392505050565b6000805160206124ed83398151915261082c816110d4565b60018215151415610840576000600a555050565b6103e8600a555b5050565b6000336108598582856110e1565b61086485858561115b565b506001949350505050565b6000805160206124ed833981519152610887816110d4565b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000805160206124ed8339815191526108c2816110d4565b6108da60008051602061250d83398151915283610be5565b61093e5760405162461bcd60e51b815260206004820152602a60248201527f4552433230203a3a207265766f6b6550616972526f6c65203a20686173206e6f604482015269207061697220726f6c6560b01b60648201526084015b60405180910390fd5b61084760008051602061250d833981519152836115bb565b6001600160a01b03811633146109c65760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610935565b61084782826115bb565b60003361080a8185856109e38383610e73565b6109ed91906123b5565b610fb0565b6000805160206124ed833981519152610a0a816110d4565b6001600160a01b0382163b610a875760405162461bcd60e51b815260206004820152603960248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20706169722060448201527f6973206e6f74206120636f6e74726163742061646472657373000000000000006064820152608401610935565b610a9f60008051602061250d83398151915283610be5565b15610b055760405162461bcd60e51b815260206004820152603060248201527f4552433230203a3a206772616e74526f6c65546f50616972203a20616c72656160448201526f647920686173207061697220726f6c6560801b6064820152608401610935565b61084760008051602061250d83398151915283611622565b6000805160206124ed833981519152610b35816110d4565b60018215151415610b495760006009555050565b6103e86009555050565b6000805160206124ed833981519152610b6b816110d4565b610b846000805160206124ed8339815191526000610be5565b15610ba15760405162461bcd60e51b8152600401610935906122bf565b610bb96000805160206124ed833981519152336115bb565b610bd26000805160206124ed8339815191526000611622565b50600880546001600160a01b0319169055565b60009182526005602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606004805461077990612466565b60003381610c2d8286610e73565b905083811015610c8d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610935565b6108648286868403610fb0565b60003361080a81858561115b565b6000805160206124ed833981519152610cc0816110d4565b610cd86000805160206124cd83398151915283610be5565b610d325760405162461bcd60e51b815260206004820152602560248201527f4552433230203a3a20696e636c756465546f203a20686173206e6f207061697260448201526420726f6c6560d81b6064820152608401610935565b6108476000805160206124cd833981519152836115bb565b6000805160206124ed833981519152610d62816110d4565b3060009081526020819052604090205480610d7c57600080fd5b6108478161162c565b6000805160206124ed833981519152610d9d816110d4565b610db56000805160206124cd83398151915283610be5565b15610e175760405162461bcd60e51b815260206004820152602c60248201527f4552433230203a3a206578636c75646546726f6d203a20616c7265616479206860448201526b6173207061697220726f6c6560a01b6064820152608401610935565b6108476000805160206124cd83398151915283611622565b6000805160206124ed833981519152610e47816110d4565b506001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6000805160206124ed833981519152610eb6816110d4565b6001600160a01b038216610f285760405162461bcd60e51b815260206004820152603360248201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776044820152724f776e657220213d206164647265737328302960681b6064820152608401610935565b610f406000805160206124ed83398151915283610be5565b15610f5d5760405162461bcd60e51b8152600401610935906122bf565b610f756000805160206124ed833981519152336115bb565b610f8d6000805160206124ed83398151915283611622565b50600880546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110125760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610935565b6001600160a01b0382166110735760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610935565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6110de8133611805565b50565b60006110ed8484610e73565b9050600019811461115557818110156111485760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610935565b6111558484848403610fb0565b50505050565b6001600160a01b0383166111815760405162461bcd60e51b815260040161093590612313565b6001600160a01b0382166111a75760405162461bcd60e51b815260040161093590612236565b6001600160a01b03821660009081526006602052604090205460ff16611241576111f0816111ea846001600160a01b031660009081526020819052604090205490565b90611869565b600c5410156112415760405162461bcd60e51b815260206004820152601a60248201527f45524332303a206d6178416d6f756e74203e3d20616d6f756e740000000000006044820152606401610935565b611249611f6d565b6001600160a01b038416600090815260208190526040902054815261126c611f8b565b6112846000805160206124ed83398151915286610be5565b1580156112a657506112a46000805160206124ed83398151915285610be5565b155b80156112c757506112c56000805160206124ed83398151915233610be5565b155b151581526112e36000805160206124cd83398151915286610be5565b8061130157506113016000805160206124cd83398151915285610be5565b1515602082015281518311156113295760405162461bcd60e51b815260040161093590612279565b61134160008051602061250d83398151915285610be5565b80156113505750600d5460ff16155b156113ee573060009081526020819052604090205480156113ec57600d5461010090046001600160a01b03166000908152602081905260409020546113a6906064906113a0906002905b906118cf565b9061194e565b8111156113e357600d5461010090046001600160a01b03166000908152602081905260409020546113e0906064906113a09060029061139a565b90505b6113ec8161162c565b505b805180156113fe57506020810151155b801561140d5750600d5460ff16155b1561149d578261142b60008051602061250d83398151915286610be5565b156114455761143984611990565b60208501529350611473565b61145d60008051602061250d83398151915233610be5565b156114735761146b846119de565b602085015293505b61147c81611a1b565b60408401819052841061149b576040830151611498908561240c565b93505b505b81516001600160a01b0386811660009081526020819052604080822093879003909355908616815290812080548592906114d89084906123b5565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161152491815260200190565b60405180910390a360208201511580159061153d575080515b801561154b57506020810151155b801561155a5750600d5460ff16155b1561157057611570858360016020020151611a38565b604082015115801590611581575080515b801561158f57506020810151155b801561159e5750600d5460ff16155b156115b4576115b4858360026020020151611a49565b5050505050565b6115c58282610be5565b156108475760008281526005602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6108478282611bb9565b600d805460ff19166001179055604080516002808252606082018352600092602083019080368337019050509050308160008151811061167c57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156116d057600080fd5b505afa1580156116e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117089190611fda565b8160018151811061172957634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201015260075461174f9130911684610fb0565b600754600e5460405163791ac94760e01b81526001600160a01b039283169263791ac9479261178c92879260009288929116904290600401612379565b600060405180830381600087803b1580156117a657600080fd5b505af11580156117ba573d6000803e3d6000fd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a782826040516117ef929190612358565b60405180910390a15050600d805460ff19169055565b61180f8282610be5565b61084757611827816001600160a01b03166014611c3f565b611832836020611c3f565b60405160200161184392919061218e565b60408051601f198184030181529082905262461bcd60e51b825261093591600401612203565b60008061187683856123b5565b9050838110156118c85760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610935565b9392505050565b6000826118de57506000610764565b60006118ea83856123ed565b9050826118f785836123cd565b146118c85760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610935565b60006118c883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e21565b6000806127106009546127106119a6919061240c565b6119b090856123ed565b6119ba91906123cd565b9150612710600954846119cd91906123ed565b6119d791906123cd565b9050915091565b600080612710600a546127106119f4919061240c565b6119fe90856123ed565b611a0891906123cd565b9150612710600a54846119cd91906123ed565b6000612710600b5483611a2e91906123ed565b61076491906123cd565b801561084757610847823083611e58565b6001600160a01b038216611aa95760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610935565b6001600160a01b03821660009081526020819052604090205481811015611b1d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610935565b6001600160a01b038316600090815260208190526040812083830390558080527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb58054849290611b6e9084906123b5565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b611bc38282610be5565b6108475760008281526005602090815260408083206001600160a01b03851684529091529020805460ff19166001179055611bfb3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60606000611c4e8360026123ed565b611c599060026123b5565b67ffffffffffffffff811115611c7f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ca9576020820181803683370190505b509050600360fc1b81600081518110611cd257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611d0f57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000611d338460026123ed565b611d3e9060016123b5565b90505b6001811115611dd2576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611d8057634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110611da457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611dcb8161244f565b9050611d41565b5083156118c85760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610935565b60008183611e425760405162461bcd60e51b81526004016109359190612203565b506000611e4f84866123cd565b95945050505050565b6001600160a01b038316611e7e5760405162461bcd60e51b815260040161093590612313565b6001600160a01b038216611ea45760405162461bcd60e51b815260040161093590612236565b6001600160a01b03831660009081526020819052604090205481811015611edd5760405162461bcd60e51b815260040161093590612279565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611f149084906123b5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f6091815260200190565b60405180910390a3611155565b60405180606001604052806003906020820280368337509192915050565b60405180604001604052806002906020820280368337509192915050565b80358015158114611fb957600080fd5b919050565b600060208284031215611fcf578081fd5b81356118c8816124b7565b600060208284031215611feb578081fd5b81516118c8816124b7565b60008060408385031215612008578081fd5b8235612013816124b7565b91506020830135612023816124b7565b809150509250929050565b600080600060608486031215612042578081fd5b833561204d816124b7565b9250602084013561205d816124b7565b929592945050506040919091013590565b60008060408385031215612080578182fd5b823561208b816124b7565b915061209960208401611fa9565b90509250929050565b600080604083850312156120b4578182fd5b82356120bf816124b7565b946020939093013593505050565b6000602082840312156120de578081fd5b6118c882611fa9565b6000602082840312156120f8578081fd5b5035919050565b60008060408385031215612111578182fd5b823591506020830135612023816124b7565b600060208284031215612134578081fd5b81356001600160e01b0319811681146118c8578182fd5b6000815180845260208085019450808401835b838110156121835781516001600160a01b03168752958201959082019060010161215e565b509495945050505050565b7f416363657373436f6e74726f6c3a206163636f756e74200000000000000000008152600083516121c6816017850160208801612423565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516121f7816028840160208801612423565b01602801949350505050565b6020815260008251806020840152612222816040850160208701612423565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526034908201527f4552433230203a3a207472616e736665724f776e657273686970203a206e65776040820152734f776e657220686173206f776e657220726f6c6560601b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b828152604060208201526000612371604083018461214b565b949350505050565b85815284602082015260a06040820152600061239860a083018661214b565b6001600160a01b0394909416606083015250608001529392505050565b600082198211156123c8576123c86124a1565b500190565b6000826123e857634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615612407576124076124a1565b500290565b60008282101561241e5761241e6124a1565b500390565b60005b8381101561243e578181015183820152602001612426565b838111156111555750506000910152565b60008161245e5761245e6124a1565b506000190190565b600181811c9082168061247a57607f821691505b6020821081141561249b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146110de57600080fdfe270221b18814a6eefbdcb82121f19495c058a3c7c42f11c2ab89d1da64b4579e878383d5df9fcd73beacab8a6acfdba5b44aa5aca352bba83bed3315b18a10a3d2654377a744dfef2628bf9cf3d857efd4e3961f50697d305abe9257a6effd5da2646970667358221220357dc7e56f31fb9c3b3dd1af206c14a6145c8649d72bb3517a4282cd2165f43164736f6c63430008040033
Deployed Bytecode Sourcemap
32290:9466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10733:204;;;;;;;;;;-1:-1:-1;10733:204:0;;;;;:::i;:::-;;:::i;:::-;;;4904:14:1;;4897:22;4879:41;;4867:2;4852:18;10733:204:0;;;;;;;;19913:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22264:201::-;;;;;;;;;;-1:-1:-1;22264:201:0;;;;;:::i;:::-;;:::i;32426:41::-;;;;;;;;;;-1:-1:-1;32426:41:0;;;;-1:-1:-1;;;;;32426:41:0;;;;;;-1:-1:-1;;;;;4695:32:1;;;4677:51;;4665:2;4650:18;32426:41:0;4632:102:1;21033:108:0;;;;;;;;;;-1:-1:-1;21121:12:0;;21033:108;;;5077:25:1;;;5065:2;5050:18;21033:108:0;5032:76:1;36131:143:0;;;;;;;;;;-1:-1:-1;36131:143:0;;;;;:::i;:::-;;:::i;:::-;;32927:36;;;;;;;;;;-1:-1:-1;32927:36:0;;;;;;;;23045:295;;;;;;;;;;-1:-1:-1;23045:295:0;;;;;:::i;:::-;;:::i;12569:131::-;;;;;;;;;;-1:-1:-1;12569:131:0;;;;;:::i;:::-;12643:7;12670:12;;;:6;:12;;;;;:22;;;;12569:131;20875:93;;;;;;;;;;-1:-1:-1;20875:93:0;;20958:2;15381:36:1;;15369:2;15354:18;20875:93:0;15336:87:1;36345:136:0;;;;;;;;;;-1:-1:-1;36345:136:0;;;;;:::i;:::-;;:::i;34610:207::-;;;;;;;;;;-1:-1:-1;34610:207:0;;;;;:::i;:::-;;:::i;13207:218::-;;;;;;;;;;-1:-1:-1;13207:218:0;;;;;:::i;:::-;;:::i;23749:238::-;;;;;;;;;;-1:-1:-1;23749:238:0;;;;;:::i;:::-;;:::i;33914:311::-;;;;;;;;;;-1:-1:-1;33914:311:0;;;;;:::i;:::-;;:::i;32972:28::-;;;;;;;;;;-1:-1:-1;32972:28:0;;;;;;;-1:-1:-1;;;;;32972:28:0;;;32821:27;;;;;;;;;;;;;;;;32883:36;;;;;;;;;;;;;;;;32476:72;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32476:72:0;;21204:127;;;;;;;;;;-1:-1:-1;21204:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;21305:18:0;21278:7;21305:18;;;;;;;;;;;;21204:127;35975:146;;;;;;;;;;-1:-1:-1;35975:146:0;;;;;:::i;:::-;;:::i;35609:309::-;;;;;;;;;;;;;:::i;32376:41::-;;;;;;;;;;-1:-1:-1;32376:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;11029:147;;;;;;;;;;-1:-1:-1;11029:147:0;;;;;:::i;:::-;;:::i;20132:104::-;;;;;;;;;;;;;:::i;32632:71::-;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32632:71:0;;32555:70;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32555:70:0;;10134:49;;;;;;;;;;-1:-1:-1;10134:49:0;10179:4;10134:49;;24490:436;;;;;;;;;;-1:-1:-1;24490:436:0;;;;;:::i;:::-;;:::i;21537:193::-;;;;;;;;;;-1:-1:-1;21537:193:0;;;;;:::i;:::-;;:::i;32716:22::-;;;;;;;;;;-1:-1:-1;32716:22:0;;;;-1:-1:-1;;;;;32716:22:0;;;34881:212;;;;;;;;;;-1:-1:-1;34881:212:0;;;;;:::i;:::-;;:::i;32855:21::-;;;;;;;;;;;;;;;;36560:186;;;;;;;;;;;;;:::i;34236:223::-;;;;;;;;;;-1:-1:-1;34236:223:0;;;;;:::i;:::-;;:::i;34467:130::-;;;;;;;;;;-1:-1:-1;34467:130:0;;;;;:::i;:::-;;:::i;21793:151::-;;;;;;;;;;-1:-1:-1;21793:151:0;;;;;:::i;:::-;;:::i;32785:28::-;;;;;;;;;;;;;;;;35184:416;;;;;;;;;;-1:-1:-1;35184:416:0;;;;;:::i;:::-;;:::i;10733:204::-;10818:4;-1:-1:-1;;;;;;10842:47:0;;-1:-1:-1;;;10842:47:0;;:87;;-1:-1:-1;;;;;;;;;;8251:40:0;;;10893:36;10835:94;10733:204;-1:-1:-1;;10733:204:0:o;19913:100::-;19967:13;20000:5;19993:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19913:100;:::o;22264:201::-;22347:4;7284:10;22403:32;7284:10;22419:7;22428:6;22403:8;:32::i;:::-;-1:-1:-1;22453:4:0;;22264:201;-1:-1:-1;;;22264:201:0:o;36131:143::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;36224:4:::1;36215:13:::0;::::1;;;36212:55;;;36241:1;36230:8;:12:::0;36131:143;;:::o;36212:55::-:1;36261:4;36250:8;:15:::0;36212:55:::1;36131:143:::0;;:::o;23045:295::-;23176:4;7284:10;23234:38;23250:4;7284:10;23265:6;23234:15;:38::i;:::-;23283:27;23293:4;23299:2;23303:6;23283:9;:27::i;:::-;-1:-1:-1;23328:4:0;;23045:295;-1:-1:-1;;;;23045:295:0:o;36345:136::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;36428:15:0::1;:45:::0;;-1:-1:-1;;;;;;36428:45:0::1;-1:-1:-1::0;;;;;36428:45:0;;;::::1;::::0;;;::::1;::::0;;36345:136::o;34610:207::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34700:24:::1;-1:-1:-1::0;;;;;;;;;;;34719:4:0::1;34700:7;:24::i;:::-;34692:79;;;::::0;-1:-1:-1;;;34692:79:0;;13102:2:1;34692:79:0::1;::::0;::::1;13084:21:1::0;13141:2;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;-1:-1:-1;;;13231:18:1;;;13224:40;13281:19;;34692:79:0::1;;;;;;;;;34782:27;-1:-1:-1::0;;;;;;;;;;;34804:4:0::1;34782:11;:27::i;13207:218::-:0;-1:-1:-1;;;;;13303:23:0;;7284:10;13303:23;13295:83;;;;-1:-1:-1;;;13295:83:0;;13919:2:1;13295:83:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:34;13977:18;;;13970:62;-1:-1:-1;;;14048:18:1;;;14041:45;14103:19;;13295:83:0;13891:237:1;13295:83:0;13391:26;13403:4;13409:7;13391:11;:26::i;23749:238::-;23837:4;7284:10;23893:64;7284:10;23909:7;23946:10;23918:25;7284:10;23909:7;23918:9;:25::i;:::-;:38;;;;:::i;:::-;23893:8;:64::i;33914:311::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;41070:19:0;;;33997:86:::1;;;::::0;-1:-1:-1;;;33997:86:0;;7105:2:1;33997:86:0::1;::::0;::::1;7087:21:1::0;7144:2;7124:18;;;7117:30;7183:34;7163:18;;;7156:62;7254:27;7234:18;;;7227:55;7299:19;;33997:86:0::1;7077:247:1::0;33997:86:0::1;34103:24;-1:-1:-1::0;;;;;;;;;;;34122:4:0::1;34103:7;:24::i;:::-;34102:25;34094:86;;;::::0;-1:-1:-1;;;34094:86:0;;10649:2:1;34094:86:0::1;::::0;::::1;10631:21:1::0;10688:2;10668:18;;;10661:30;10727:34;10707:18;;;10700:62;-1:-1:-1;;;10778:18:1;;;10771:46;10834:19;;34094:86:0::1;10621:238:1::0;34094:86:0::1;34191:26;-1:-1:-1::0;;;;;;;;;;;34212:4:0::1;34191:10;:26::i;35975:146::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;36069:4:::1;36060:13:::0;::::1;;;36057:57;;;36087:1;36075:9;:13:::0;36131:143;;:::o;36057:57::-:1;36108:4;36096:9;:16:::0;35975:146;;:::o;35609:309::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;35691:34:::1;-1:-1:-1::0;;;;;;;;;;;35722:1:0::1;35691:7;:34::i;:::-;35690:35;35682:100;;;;-1:-1:-1::0;;;35682:100:0::1;;;;;;;:::i;:::-;35793:39;-1:-1:-1::0;;;;;;;;;;;7284:10:0;35793:11:::1;:39::i;:::-;35843:36;-1:-1:-1::0;;;;;;;;;;;35876:1:0::1;35843:10;:36::i;:::-;-1:-1:-1::0;35890:7:0::1;:20:::0;;-1:-1:-1;;;;;;35890:20:0::1;::::0;;35609:309::o;11029:147::-;11115:4;11139:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;11139:29:0;;;;;;;;;;;;;;;11029:147::o;20132:104::-;20188:13;20221:7;20214:14;;;;;:::i;24490:436::-;24583:4;7284:10;24583:4;24666:25;7284:10;24683:7;24666:9;:25::i;:::-;24639:52;;24730:15;24710:16;:35;;24702:85;;;;-1:-1:-1;;;24702:85:0;;13513:2:1;24702:85:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:35;13687:19;;24702:85:0;13485:227:1;24702:85:0;24823:60;24832:5;24839:7;24867:15;24848:16;:34;24823:8;:60::i;21537:193::-;21616:4;7284:10;21672:28;7284:10;21689:2;21693:6;21672:9;:28::i;34881:212::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34968:31:::1;-1:-1:-1::0;;;;;;;;;;;34991:7:0::1;34968;:31::i;:::-;34960:81;;;::::0;-1:-1:-1;;;34960:81:0;;9423:2:1;34960:81:0::1;::::0;::::1;9405:21:1::0;9462:2;9442:18;;;9435:30;9501:34;9481:18;;;9474:62;-1:-1:-1;;;9552:18:1;;;9545:35;9597:19;;34960:81:0::1;9395:227:1::0;34960:81:0::1;35051:34;-1:-1:-1::0;;;;;;;;;;;35077:7:0::1;35051:11;:34::i;36560:186::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;36658:4:::1;36626:11;21305:18:::0;;;;;;;;;;;36683:10;36675:19:::1;;;::::0;::::1;;36705:33;36731:6;36705:25;:33::i;34236:223::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;34327:31:::1;-1:-1:-1::0;;;;;;;;;;;34350:7:0::1;34327;:31::i;:::-;34326:32;34318:89;;;::::0;-1:-1:-1;;;34318:89:0;;10236:2:1;34318:89:0::1;::::0;::::1;10218:21:1::0;10275:2;10255:18;;;10248:30;10314:34;10294:18;;;10287:62;-1:-1:-1;;;10365:18:1;;;10358:42;10417:19;;34318:89:0::1;10208:234:1::0;34318:89:0::1;34418:33;-1:-1:-1::0;;;;;;;;;;;34443:7:0::1;34418:10;:33::i;34467:130::-:0;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;;34565:16:0;;;::::1;;::::0;;;:9:::1;:16;::::0;;;;:24;;-1:-1:-1;;34565:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;34467:130::o;21793:151::-;-1:-1:-1;;;;;21909:18:0;;;21882:7;21909:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21793:151::o;35184:416::-;-1:-1:-1;;;;;;;;;;;10625:16:0;10636:4;10625:10;:16::i;:::-;-1:-1:-1;;;;;35281:22:0;::::1;35273:86;;;::::0;-1:-1:-1;;;35273:86:0;;9003:2:1;35273:86:0::1;::::0;::::1;8985:21:1::0;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:1;;;9125:49;9191:19;;35273:86:0::1;8975:241:1::0;35273:86:0::1;35379:32;-1:-1:-1::0;;;;;;;;;;;35402:8:0::1;35379:7;:32::i;:::-;35378:33;35370:98;;;;-1:-1:-1::0;;;35370:98:0::1;;;;;;;:::i;:::-;35479:39;-1:-1:-1::0;;;;;;;;;;;7284:10:0;35793:11:::1;:39::i;35479:::-;35529:34;-1:-1:-1::0;;;;;;;;;;;35554:8:0::1;35529:10;:34::i;:::-;-1:-1:-1::0;35574:7:0::1;:18:::0;;-1:-1:-1;;;;;;35574:18:0::1;-1:-1:-1::0;;;;;35574:18:0;;;::::1;::::0;;;::::1;::::0;;35184:416::o;28124:380::-;-1:-1:-1;;;;;28260:19:0;;28252:68;;;;-1:-1:-1;;;28252:68:0;;12697:2:1;28252:68:0;;;12679:21:1;12736:2;12716:18;;;12709:30;12775:34;12755:18;;;12748:62;-1:-1:-1;;;12826:18:1;;;12819:34;12870:19;;28252:68:0;12669:226:1;28252:68:0;-1:-1:-1;;;;;28339:21:0;;28331:68;;;;-1:-1:-1;;;28331:68:0;;7531:2:1;28331:68:0;;;7513:21:1;7570:2;7550:18;;;7543:30;7609:34;7589:18;;;7582:62;-1:-1:-1;;;7660:18:1;;;7653:32;7702:19;;28331:68:0;7503:224:1;28331:68:0;-1:-1:-1;;;;;28412:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28464:32;;5077:25:1;;;28464:32:0;;5050:18:1;28464:32:0;;;;;;;28124:380;;;:::o;11480:105::-;11547:30;11558:4;7284:10;11547;:30::i;:::-;11480:105;:::o;28795:453::-;28930:24;28957:25;28967:5;28974:7;28957:9;:25::i;:::-;28930:52;;-1:-1:-1;;28997:16:0;:37;28993:248;;29079:6;29059:16;:26;;29051:68;;;;-1:-1:-1;;;29051:68:0;;8645:2:1;29051:68:0;;;8627:21:1;8684:2;8664:18;;;8657:30;8723:31;8703:18;;;8696:59;8772:18;;29051:68:0;8617:179:1;29051:68:0;29163:51;29172:5;29179:7;29207:6;29188:16;:25;29163:8;:51::i;:::-;28795:453;;;;:::o;36813:2358::-;-1:-1:-1;;;;;36945:18:0;;36937:68;;;;-1:-1:-1;;;36937:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37024:16:0;;37016:64;;;;-1:-1:-1;;;37016:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37097:13:0;;;;;;:9;:13;;;;;;;;37093:124;;37149:25;37167:6;37149:13;37159:2;-1:-1:-1;;;;;21305:18:0;21278:7;21305:18;;;;;;;;;;;;21204:127;37149:13;:17;;:25::i;:::-;37135:9;;:39;;37127:78;;;;-1:-1:-1;;;37127:78:0;;8290:2:1;37127:78:0;;;8272:21:1;8329:2;8309:18;;;8302:30;8368:28;8348:18;;;8341:56;8414:18;;37127:78:0;8262:176:1;37127:78:0;37288:26;;:::i;:::-;-1:-1:-1;;;;;37339:15:0;;:9;:15;;;;;;;;;;;37325:29;;37367:21;;:::i;:::-;37414:28;-1:-1:-1;;;;;;;;;;;37437:4:0;37414:7;:28::i;:::-;37413:29;37412:64;;;;;37449:26;-1:-1:-1;;;;;;;;;;;37472:2:0;37449:7;:26::i;:::-;37448:27;37412:64;:107;;;;-1:-1:-1;37482:36:0;-1:-1:-1;;;;;;;;;;;7284:10:0;11029:147;:::i;37482:36::-;37481:37;37412:107;37400:119;;;;37543:28;-1:-1:-1;;;;;;;;;;;37566:4:0;37543:7;:28::i;:::-;37542:62;;;;37577:26;-1:-1:-1;;;;;;;;;;;37600:2:0;37577:7;:26::i;:::-;37530:74;;:9;;;:74;37633:11;;:21;-1:-1:-1;37633:21:0;37625:72;;;;-1:-1:-1;;;37625:72:0;;;;;;;:::i;:::-;37721:22;-1:-1:-1;;;;;;;;;;;37740:2:0;37721:7;:22::i;:::-;:43;;;;-1:-1:-1;37748:16:0;;;;37747:17;37721:43;37718:421;;;37822:4;37781:20;21305:18;;;;;;;;;;;37846:19;;37843:285;;37919:13;;;;;-1:-1:-1;;;;;37919:13:0;21278:7;21305:18;;;;;;;;;;;37909:40;;37945:3;;37909:31;;37938:1;;37909:24;:28;;:31::i;:::-;:35;;:40::i;:::-;37891:15;:58;37888:164;;;38002:13;;;;;-1:-1:-1;;;;;38002:13:0;21278:7;21305:18;;;;;;;;;;;37992:40;;38028:3;;37992:31;;38021:1;;37992:24;21204:127;37992:40;37974:58;;37888:164;38070:42;38096:15;38070:25;:42::i;:::-;37718:421;;38154:9;;:23;;;;-1:-1:-1;38168:9:0;;;;38167:10;38154:23;:44;;;;-1:-1:-1;38182:16:0;;;;38181:17;38154:44;38151:521;;;38233:6;38259:22;-1:-1:-1;;;;;;;;;;;38278:2:0;38259:7;:22::i;:::-;38254:254;;;38340:26;38359:6;38340:18;:26::i;:::-;38325:11;;;38316:50;;-1:-1:-1;38254:254:0;;;38390:32;-1:-1:-1;;;;;;;;;;;7284:10:0;11029:147;:::i;38390:32::-;38387:121;;;38467:25;38485:6;38467:17;:25::i;:::-;38452:11;;;38443:49;;-1:-1:-1;38387:121:0;38539:23;38554:7;38539:14;:23::i;:::-;38525:11;;;:37;;;38582:21;;38579:82;;38634:11;;;;38624:21;;;;:::i;:::-;;;38579:82;38151:521;;38727:11;;-1:-1:-1;;;;;38709:15:0;;;38736:1;38709:15;;;38727:11;38709:15;;;;;;;38727:20;;;;38709:38;;;38769:13;;;;;;;;:23;;38741:6;;38736:1;38769:23;;38741:6;;38769:23;:::i;:::-;;;;;;;;38825:2;-1:-1:-1;;;;;38810:26:0;38819:4;-1:-1:-1;;;;;38810:26:0;;38829:6;38810:26;;;;5077:25:1;;5065:2;5050:18;;5032:76;38810:26:0;;;;;;;;38862:11;;;;:15;;;;38861:30;;-1:-1:-1;38882:9:0;;38861:30;:44;;;;-1:-1:-1;38896:9:0;;;;38895:10;38861:44;:65;;;;-1:-1:-1;38910:16:0;;;;38909:17;38861:65;38858:123;;;38943:26;38951:4;38957:8;38966:1;38957:11;;;;38943:7;:26::i;:::-;38997:11;;;;:15;;;;38996:30;;-1:-1:-1;39017:9:0;;38996:30;:44;;;;-1:-1:-1;39031:9:0;;;;39030:10;38996:44;:65;;;;-1:-1:-1;39045:16:0;;;;39044:17;38996:65;38993:121;;;39078:24;39084:4;39090:8;39099:1;39090:11;;;;39078:5;:24::i;:::-;36813:2358;;;;;:::o;15078:239::-;15162:22;15170:4;15176:7;15162;:22::i;:::-;15158:152;;;15233:5;15201:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;15201:29:0;;;;;;;;;;:37;;-1:-1:-1;;15201:37:0;;;15258:40;7284:10;;15201:12;;15258:40;;15233:5;15258:40;15078:239;;:::o;14084:112::-;14163:25;14174:4;14180:7;14163:10;:25::i;40392:589::-;33824:16;:23;;-1:-1:-1;;33824:23:0;33843:4;33824:23;;;40503:16:::1;::::0;;40517:1:::1;40503:16:::0;;;;;::::1;::::0;;-1:-1:-1;;40503:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;40503:16:0::1;40479:40;;40548:4;40530;40535:1;40530:7;;;;;;-1:-1:-1::0;;;40530:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40530:23:0;;::::1;:7;::::0;;::::1;::::0;;;;;;:23;;;;40574:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;40574:22:0;;;;:15;;;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;40530:7;;40574:22;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40564:4;40569:1;40564:7;;;;;;-1:-1:-1::0;;;40564:7:0::1;;;;;;;;;-1:-1:-1::0;;;;;40564:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;40641:15:::1;::::0;40609:62:::1;::::0;40626:4:::1;::::0;40641:15:::1;40659:11:::0;40609:8:::1;:62::i;:::-;40684:15;::::0;40826:18:::1;::::0;40684:199:::1;::::0;-1:-1:-1;;;40684:199:0;;-1:-1:-1;;;;;40684:15:0;;::::1;::::0;:66:::1;::::0;:199:::1;::::0;40765:11;;40684:15:::1;::::0;40807:4;;40826:18;::::1;::::0;40857:15:::1;::::0;40684:199:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;40901:72;40932:11;40958:4;40901:72;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;33870:16:0;:24;;-1:-1:-1;;33870:24:0;;;40392:589::o;11875:505::-;11964:22;11972:4;11978:7;11964;:22::i;:::-;11959:414;;12152:41;12180:7;-1:-1:-1;;;;;12152:41:0;12190:2;12152:19;:41::i;:::-;12266:38;12294:4;12301:2;12266:19;:38::i;:::-;12057:270;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;12057:270:0;;;;;;;;;;-1:-1:-1;;;12003:358:0;;;;;;;:::i;30734:181::-;30792:7;;30824:5;30828:1;30824;:5;:::i;:::-;30812:17;;30853:1;30848;:6;;30840:46;;;;-1:-1:-1;;;30840:46:0;;7934:2:1;30840:46:0;;;7916:21:1;7973:2;7953:18;;;7946:30;8012:29;7992:18;;;7985:57;8059:18;;30840:46:0;7906:177:1;30840:46:0;30906:1;30734:181;-1:-1:-1;;;30734:181:0:o;31267:250::-;31325:7;31349:6;31345:47;;-1:-1:-1;31379:1:0;31372:8;;31345:47;31404:9;31416:5;31420:1;31416;:5;:::i;:::-;31404:17;-1:-1:-1;31449:1:0;31440:5;31444:1;31404:17;31440:5;:::i;:::-;:10;31432:56;;;;-1:-1:-1;;;31432:56:0;;11066:2:1;31432:56:0;;;11048:21:1;11105:2;11085:18;;;11078:30;11144:34;11124:18;;;11117:62;-1:-1:-1;;;11195:18:1;;;11188:31;11236:19;;31432:56:0;11038:223:1;31527:132:0;31585:7;31612:39;31616:1;31619;31612:39;;;;;;;;;;;;;;;;;:3;:39::i;41112:247::-;41175:20;41197:16;32773:5;41269:9;;32773:5;41255:23;;;;:::i;:::-;41245:34;;:6;:34;:::i;:::-;:48;;;;:::i;:::-;41226:67;;32773:5;41328:9;;41319:6;:18;;;;:::i;:::-;:32;;;;:::i;:::-;41304:47;;41112:247;;;:::o;41370:242::-;41432:20;41454:15;32773:5;41525:8;;32773:5;41511:22;;;;:::i;:::-;41501:33;;:6;:33;:::i;:::-;:47;;;;:::i;:::-;41482:66;;32773:5;41582:8;;41573:6;:17;;;;:::i;41622:129::-;41681:11;32773:5;41724;;41715:6;:14;;;;:::i;:::-;:28;;;;:::i;40218:164::-;40289:11;;40286:89;;40317:46;40333:5;40348:4;40355:7;40317:15;:46::i;39184:601::-;-1:-1:-1;;;;;39269:21:0;;39261:67;;;;-1:-1:-1;;;39261:67:0;;11889:2:1;39261:67:0;;;11871:21:1;11928:2;11908:18;;;11901:30;11967:34;11947:18;;;11940:62;-1:-1:-1;;;12018:18:1;;;12011:31;12059:19;;39261:67:0;11861:223:1;39261:67:0;-1:-1:-1;;;;;39428:18:0;;39403:22;39428:18;;;;;;;;;;;39465:24;;;;39457:71;;;;-1:-1:-1;;;39457:71:0;;6702:2:1;39457:71:0;;;6684:21:1;6741:2;6721:18;;;6714:30;6780:34;6760:18;;;6753:62;-1:-1:-1;;;6831:18:1;;;6824:32;6873:19;;39457:71:0;6674:224:1;39457:71:0;-1:-1:-1;;;;;39564:18:0;;:9;:18;;;;;;;;;;39585:23;;;39564:44;;39630:21;;;;:31;;39602:6;;39564:9;39630:31;;39602:6;;39630:31;:::i;:::-;;;;-1:-1:-1;;39679:37:0;;5077:25:1;;;39705:1:0;;-1:-1:-1;;;;;39679:37:0;;;;;5065:2:1;5050:18;39679:37:0;;;;;;;29848:125;;;:::o;14708:238::-;14792:22;14800:4;14806:7;14792;:22::i;:::-;14787:152;;14831:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;14831:29:0;;;;;;;;;:36;;-1:-1:-1;;14831:36:0;14863:4;14831:36;;;14914:12;7284:10;;7204:98;14914:12;-1:-1:-1;;;;;14887:40:0;14905:7;-1:-1:-1;;;;;14887:40:0;14899:4;14887:40;;;;;;;;;;14708:238;;:::o;16877:451::-;16952:13;16978:19;17010:10;17014:6;17010:1;:10;:::i;:::-;:14;;17023:1;17010:14;:::i;:::-;17000:25;;;;;;-1:-1:-1;;;17000:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17000:25:0;;16978:47;;-1:-1:-1;;;17036:6:0;17043:1;17036:9;;;;;;-1:-1:-1;;;17036:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17036:15:0;;;;;;;;;-1:-1:-1;;;17062:6:0;17069:1;17062:9;;;;;;-1:-1:-1;;;17062:9:0;;;;;;;;;;;;:15;-1:-1:-1;;;;;17062:15:0;;;;;;;;-1:-1:-1;17093:9:0;17105:10;17109:6;17105:1;:10;:::i;:::-;:14;;17118:1;17105:14;:::i;:::-;17093:26;;17088:135;17125:1;17121;:5;17088:135;;;-1:-1:-1;;;17173:5:0;17181:3;17173:11;17160:25;;;;;-1:-1:-1;;;17160:25:0;;;;;;;;;;;;17148:6;17155:1;17148:9;;;;;;-1:-1:-1;;;17148:9:0;;;;;;;;;;;;:37;-1:-1:-1;;;;;17148:37:0;;;;;;;;-1:-1:-1;17210:1:0;17200:11;;;;;17128:3;;;:::i;:::-;;;17088:135;;;-1:-1:-1;17241:10:0;;17233:55;;;;-1:-1:-1;;;17233:55:0;;5937:2:1;17233:55:0;;;5919:21:1;;;5956:18;;;5949:30;6015:34;5995:18;;;5988:62;6067:18;;17233:55:0;5909:182:1;31667:278:0;31753:7;31788:12;31781:5;31773:28;;;;-1:-1:-1;;;31773:28:0;;;;;;;;:::i;:::-;-1:-1:-1;31812:9:0;31824:5;31828:1;31824;:5;:::i;:::-;31812:17;31667:278;-1:-1:-1;;;;;31667:278:0:o;25405:671::-;-1:-1:-1;;;;;25536:18:0;;25528:68;;;;-1:-1:-1;;;25528:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25615:16:0;;25607:64;;;;-1:-1:-1;;;25607:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25757:15:0;;25735:19;25757:15;;;;;;;;;;;25791:21;;;;25783:72;;;;-1:-1:-1;;;25783:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25891:15:0;;;:9;:15;;;;;;;;;;;25909:20;;;25891:38;;25951:13;;;;;;;;:23;;25923:6;;25891:9;25951:23;;25923:6;;25951:23;:::i;:::-;;;;;;;;26007:2;-1:-1:-1;;;;;25992:26:0;26001:4;-1:-1:-1;;;;;25992:26:0;;26011:6;25992:26;;;;5077:25:1;;5065:2;5050:18;;5032:76;25992:26:0;;;;;;;;26031:37;29848:125;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;14:160:1:-;79:20;;135:13;;128:21;118:32;;108:2;;164:1;161;154:12;108:2;60:114;;;:::o;179:257::-;238:6;291:2;279:9;270:7;266:23;262:32;259:2;;;312:6;304;297:22;259:2;356:9;343:23;375:31;400:5;375:31;:::i;441:261::-;511:6;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;622:9;616:16;641:31;666:5;641:31;:::i;707:398::-;775:6;783;836:2;824:9;815:7;811:23;807:32;804:2;;;857:6;849;842:22;804:2;901:9;888:23;920:31;945:5;920:31;:::i;:::-;970:5;-1:-1:-1;1027:2:1;1012:18;;999:32;1040:33;999:32;1040:33;:::i;:::-;1092:7;1082:17;;;794:311;;;;;:::o;1110:466::-;1187:6;1195;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:2;;;1277:6;1269;1262:22;1224:2;1321:9;1308:23;1340:31;1365:5;1340:31;:::i;:::-;1390:5;-1:-1:-1;1447:2:1;1432:18;;1419:32;1460:33;1419:32;1460:33;:::i;:::-;1214:362;;1512:7;;-1:-1:-1;;;1566:2:1;1551:18;;;;1538:32;;1214:362::o;1581:325::-;1646:6;1654;1707:2;1695:9;1686:7;1682:23;1678:32;1675:2;;;1728:6;1720;1713:22;1675:2;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;:::-;1841:5;-1:-1:-1;1865:35:1;1896:2;1881:18;;1865:35;:::i;:::-;1855:45;;1665:241;;;;;:::o;1911:325::-;1979:6;1987;2040:2;2028:9;2019:7;2015:23;2011:32;2008:2;;;2061:6;2053;2046:22;2008:2;2105:9;2092:23;2124:31;2149:5;2124:31;:::i;:::-;2174:5;2226:2;2211:18;;;;2198:32;;-1:-1:-1;;;1998:238:1:o;2241:190::-;2297:6;2350:2;2338:9;2329:7;2325:23;2321:32;2318:2;;;2371:6;2363;2356:22;2318:2;2399:26;2415:9;2399:26;:::i;2436:190::-;2495:6;2548:2;2536:9;2527:7;2523:23;2519:32;2516:2;;;2569:6;2561;2554:22;2516:2;-1:-1:-1;2597:23:1;;2506:120;-1:-1:-1;2506:120:1:o;2631:325::-;2699:6;2707;2760:2;2748:9;2739:7;2735:23;2731:32;2728:2;;;2781:6;2773;2766:22;2728:2;2822:9;2809:23;2799:33;;2882:2;2871:9;2867:18;2854:32;2895:31;2920:5;2895:31;:::i;2961:306::-;3019:6;3072:2;3060:9;3051:7;3047:23;3043:32;3040:2;;;3093:6;3085;3078:22;3040:2;3124:23;;-1:-1:-1;;;;;;3176:32:1;;3166:43;;3156:2;;3228:6;3220;3213:22;3272:463;3325:3;3363:5;3357:12;3390:6;3385:3;3378:19;3416:4;3445:2;3440:3;3436:12;3429:19;;3482:2;3475:5;3471:14;3503:3;3515:195;3529:6;3526:1;3523:13;3515:195;;;3594:13;;-1:-1:-1;;;;;3590:39:1;3578:52;;3650:12;;;;3685:15;;;;3626:1;3544:9;3515:195;;;-1:-1:-1;3726:3:1;;3333:402;-1:-1:-1;;;;;3333:402:1:o;3740:786::-;4151:25;4146:3;4139:38;4121:3;4206:6;4200:13;4222:62;4277:6;4272:2;4267:3;4263:12;4256:4;4248:6;4244:17;4222:62;:::i;:::-;-1:-1:-1;;;4343:2:1;4303:16;;;4335:11;;;4328:40;4393:13;;4415:63;4393:13;4464:2;4456:11;;4449:4;4437:17;;4415:63;:::i;:::-;4498:17;4517:2;4494:26;;4129:397;-1:-1:-1;;;;4129:397:1:o;5347:383::-;5496:2;5485:9;5478:21;5459:4;5528:6;5522:13;5571:6;5566:2;5555:9;5551:18;5544:34;5587:66;5646:6;5641:2;5630:9;5626:18;5621:2;5613:6;5609:15;5587:66;:::i;:::-;5714:2;5693:15;-1:-1:-1;;5689:29:1;5674:45;;;;5721:2;5670:54;;5468:262;-1:-1:-1;;5468:262:1:o;6096:399::-;6298:2;6280:21;;;6337:2;6317:18;;;6310:30;6376:34;6371:2;6356:18;;6349:62;-1:-1:-1;;;6442:2:1;6427:18;;6420:33;6485:3;6470:19;;6270:225::o;9627:402::-;9829:2;9811:21;;;9868:2;9848:18;;;9841:30;9907:34;9902:2;9887:18;;9880:62;-1:-1:-1;;;9973:2:1;9958:18;;9951:36;10019:3;10004:19;;9801:228::o;11266:416::-;11468:2;11450:21;;;11507:2;11487:18;;;11480:30;11546:34;11541:2;11526:18;;11519:62;-1:-1:-1;;;11612:2:1;11597:18;;11590:50;11672:3;11657:19;;11440:242::o;12089:401::-;12291:2;12273:21;;;12330:2;12310:18;;;12303:30;12369:34;12364:2;12349:18;;12342:62;-1:-1:-1;;;12435:2:1;12420:18;;12413:35;12480:3;12465:19;;12263:227::o;14315:332::-;14522:6;14511:9;14504:25;14565:2;14560;14549:9;14545:18;14538:30;14485:4;14585:56;14637:2;14626:9;14622:18;14614:6;14585:56;:::i;:::-;14577:64;14494:153;-1:-1:-1;;;;14494:153:1:o;14652:582::-;14951:6;14940:9;14933:25;14994:6;14989:2;14978:9;14974:18;14967:34;15037:3;15032:2;15021:9;15017:18;15010:31;14914:4;15058:57;15110:3;15099:9;15095:19;15087:6;15058:57;:::i;:::-;-1:-1:-1;;;;;15151:32:1;;;;15146:2;15131:18;;15124:60;-1:-1:-1;15215:3:1;15200:19;15193:35;15050:65;14923:311;-1:-1:-1;;;14923:311:1:o;15428:128::-;15468:3;15499:1;15495:6;15492:1;15489:13;15486:2;;;15505:18;;:::i;:::-;-1:-1:-1;15541:9:1;;15476:80::o;15561:217::-;15601:1;15627;15617:2;;-1:-1:-1;;;15652:31:1;;15706:4;15703:1;15696:15;15734:4;15659:1;15724:15;15617:2;-1:-1:-1;15763:9:1;;15607:171::o;15783:168::-;15823:7;15889:1;15885;15881:6;15877:14;15874:1;15871:21;15866:1;15859:9;15852:17;15848:45;15845:2;;;15896:18;;:::i;:::-;-1:-1:-1;15936:9:1;;15835:116::o;15956:125::-;15996:4;16024:1;16021;16018:8;16015:2;;;16029:18;;:::i;:::-;-1:-1:-1;16066:9:1;;16005:76::o;16086:258::-;16158:1;16168:113;16182:6;16179:1;16176:13;16168:113;;;16258:11;;;16252:18;16239:11;;;16232:39;16204:2;16197:10;16168:113;;;16299:6;16296:1;16293:13;16290:2;;;-1:-1:-1;;16334:1:1;16316:16;;16309:27;16139:205::o;16349:136::-;16388:3;16416:5;16406:2;;16425:18;;:::i;:::-;-1:-1:-1;;;16461:18:1;;16396:89::o;16490:380::-;16569:1;16565:12;;;;16612;;;16633:2;;16687:4;16679:6;16675:17;16665:27;;16633:2;16740;16732:6;16729:14;16709:18;16706:38;16703:2;;;16786:10;16781:3;16777:20;16774:1;16767:31;16821:4;16818:1;16811:15;16849:4;16846:1;16839:15;16703:2;;16545:325;;;:::o;16875:127::-;16936:10;16931:3;16927:20;16924:1;16917:31;16967:4;16964:1;16957:15;16991:4;16988:1;16981:15;17007:131;-1:-1:-1;;;;;17082:31:1;;17072:42;;17062:2;;17128:1;17125;17118:12
Swarm Source
ipfs://357dc7e56f31fb9c3b3dd1af206c14a6145c8649d72bb3517a4282cd2165f431
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.