More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
78649979 | 254 days ago | Contract Creation | 0 FTM |
Loading...
Loading
Contract Name:
HamToken
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2024-04-02 */ // SPDX-License-Identifier: MIT // https://www.sadhamster.live // .d8888b. d8888 8888888b. 888 888 d8888 888b d888 .d88 //d88P Y88b d88888 888 "Y88b 888 888 d88888 8888b d8888 d88P" //Y88b. d88P888 888 888 888 888 d88P888 88888b.d88888 d88P // "Y888b. d88P 888 888 888 8888888888 d88P 888 888Y88888P888 d8b 888 // "Y88b. d88P 888 888 888 888 888 d88P 888 888 Y888P 888 Y8P 888 // "888 d88P 888 888 888 888 888 d88P 888 888 Y8P 888 Y88b //Y88b d88P d8888888888 888 .d88P 888 888 d8888888888 888 " 888 d8b Y88b. // "Y8888P" d88P 888 8888888P" 888 888 d88P 888 888 888 88P "Y88 // 8P // " // pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.10; contract HamToken is ERC20("Hamstor", "HAM"), Ownable { using SafeMath for uint256; // dev address address public liquidity_address; address public constant FEE_ADDRESS = 0x13586e315C06e84309f33c6cdFa8CE68D101E5Bb; address public presale_address; uint256 public taxrate = 0; //Taxerate will change during the life of HAM function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); } // @dev overrides transfer function to meet tokenomics of HAM function _transfer(address sender, address recipient, uint256 amount) internal virtual override { if (sender == presale_address || sender == FEE_ADDRESS || taxrate == 0 || sender == liquidity_address) { super._transfer(sender, recipient, amount); } else { // % of every transfer sent to dev wallet for marketing and giveaways uint256 taxAmount = amount.mul(taxrate).div(1000); // % of transfer sent to recipient uint256 sendAmount = amount.sub(taxAmount); require(amount == sendAmount + taxAmount, "HAM::transfer: Tax value invalid"); super._transfer(sender, FEE_ADDRESS, taxAmount); super._transfer(sender, recipient, sendAmount); amount = sendAmount; } } function setPresale(address _presale) public onlyOwner { presale_address = _presale; } function setLiquidity(address _liquidity) public onlyOwner { liquidity_address = _liquidity; } //maximum tax is 10% for the first 24 hour function setTaxrate(uint256 _taxrate) public { if(msg.sender == FEE_ADDRESS && _taxrate <= 10){ taxrate = _taxrate; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FEE_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidity_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale_address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidity","type":"address"}],"name":"setLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_presale","type":"address"}],"name":"setPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxrate","type":"uint256"}],"name":"setTaxrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxrate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260006008553480156200001657600080fd5b506040518060400160405280600781526020017f48616d73746f72000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f48414d000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009b929190620001ab565b508060049080519060200190620000b4929190620001ab565b505050620000d7620000cb620000dd60201b60201c565b620000e560201b60201c565b620002c0565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001b9906200028a565b90600052602060002090601f016020900481019282620001dd576000855562000229565b82601f10620001f857805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002285782518255916020019190600101906200020b565b5b5090506200023891906200023c565b5090565b5b80821115620002575760008160009055506001016200023d565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002a357607f821691505b60208210811415620002ba57620002b96200025b565b5b50919050565b61214b80620002d06000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063be05939e1161007c578063be05939e14610379578063d5fcc7b614610397578063dd62ed3e146103b3578063eb1edd61146103e3578063f08e967114610401578063f2fde38b1461041f57610142565b806395d89b41146102c1578063a457c2d7146102df578063a861baea1461030f578063a9059cbb1461032d578063ba7345d91461035d57610142565b806336171e0e1161010a57806336171e0e14610201578063395093511461021d57806340c10f191461024d57806370a0823114610269578063715018a6146102995780638da5cb5b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f61043b565b60405161015c91906116c4565b60405180910390f35b61017f600480360381019061017a919061177f565b6104cd565b60405161018c91906117da565b60405180910390f35b61019d6104eb565b6040516101aa9190611804565b60405180910390f35b6101cd60048036038101906101c8919061181f565b6104f5565b6040516101da91906117da565b60405180910390f35b6101eb6105ed565b6040516101f8919061188e565b60405180910390f35b61021b600480360381019061021691906118a9565b6105f6565b005b6102376004803603810190610232919061177f565b6106b6565b60405161024491906117da565b60405180910390f35b6102676004803603810190610262919061177f565b610762565b005b610283600480360381019061027e91906118a9565b6107ec565b6040516102909190611804565b60405180910390f35b6102a1610834565b005b6102ab6108bc565b6040516102b891906118e5565b60405180910390f35b6102c96108e6565b6040516102d691906116c4565b60405180910390f35b6102f960048036038101906102f4919061177f565b610978565b60405161030691906117da565b60405180910390f35b610317610a63565b60405161032491906118e5565b60405180910390f35b6103476004803603810190610342919061177f565b610a89565b60405161035491906117da565b60405180910390f35b61037760048036038101906103729190611900565b610aa7565b005b610381610b07565b60405161038e91906118e5565b60405180910390f35b6103b160048036038101906103ac91906118a9565b610b2d565b005b6103cd60048036038101906103c8919061192d565b610bed565b6040516103da9190611804565b60405180910390f35b6103eb610c74565b6040516103f891906118e5565b60405180910390f35b610409610c8c565b6040516104169190611804565b60405180910390f35b610439600480360381019061043491906118a9565b610c92565b005b60606003805461044a9061199c565b80601f01602080910402602001604051908101604052809291908181526020018280546104769061199c565b80156104c35780601f10610498576101008083540402835291602001916104c3565b820191906000526020600020905b8154815290600101906020018083116104a657829003601f168201915b5050505050905090565b60006104e16104da610d8a565b8484610d92565b6001905092915050565b6000600254905090565b6000610502848484610f5d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054d610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c490611a40565b60405180910390fd5b6105e1856105d9610d8a565b858403610d92565b60019150509392505050565b60006012905090565b6105fe610d8a565b73ffffffffffffffffffffffffffffffffffffffff1661061c6108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990611aac565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006107586106c3610d8a565b8484600160006106d1610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107539190611afb565b610d92565b6001905092915050565b61076a610d8a565b73ffffffffffffffffffffffffffffffffffffffff166107886108bc565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611aac565b60405180910390fd5b6107e88282611138565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083c610d8a565b73ffffffffffffffffffffffffffffffffffffffff1661085a6108bc565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611aac565b60405180910390fd5b6108ba6000611298565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108f59061199c565b80601f01602080910402602001604051908101604052809291908181526020018280546109219061199c565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60008060016000610987610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90611bc3565b60405180910390fd5b610a58610a4f610d8a565b85858403610d92565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a9d610a96610d8a565b8484610f5d565b6001905092915050565b7313586e315c06e84309f33c6cdfa8ce68d101e5bb73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610af75750600a8111155b15610b0457806008819055505b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b35610d8a565b73ffffffffffffffffffffffffffffffffffffffff16610b536108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090611aac565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7313586e315c06e84309f33c6cdfa8ce68d101e5bb81565b60085481565b610c9a610d8a565b73ffffffffffffffffffffffffffffffffffffffff16610cb86108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590611aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611c55565b60405180910390fd5b610d8781611298565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611d79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f509190611804565b60405180910390a3505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ff857507313586e315c06e84309f33c6cdfa8ce68d101e5bb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061100557506000600854145b8061105d5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156110725761106d83838361135e565b611133565b600061109d6103e861108f600854856115df90919063ffffffff16565b6115f590919063ffffffff16565b905060006110b4828461160b90919063ffffffff16565b905081816110c29190611afb565b8314611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611de5565b60405180910390fd5b611122857313586e315c06e84309f33c6cdfa8ce68d101e5bb8461135e565b61112d85858361135e565b80925050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90611e51565b60405180910390fd5b6111b460008383611621565b80600260008282546111c69190611afb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461121b9190611afb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112809190611804565b60405180910390a361129460008383611626565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590611ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590611f75565b60405180910390fd5b611449838383611621565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690612007565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115629190611afb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c69190611804565b60405180910390a36115d9848484611626565b50505050565b600081836115ed9190612027565b905092915050565b6000818361160391906120b0565b905092915050565b6000818361161991906120e1565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561166557808201518184015260208101905061164a565b83811115611674576000848401525b50505050565b6000601f19601f8301169050919050565b60006116968261162b565b6116a08185611636565b93506116b0818560208601611647565b6116b98161167a565b840191505092915050565b600060208201905081810360008301526116de818461168b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611716826116eb565b9050919050565b6117268161170b565b811461173157600080fd5b50565b6000813590506117438161171d565b92915050565b6000819050919050565b61175c81611749565b811461176757600080fd5b50565b60008135905061177981611753565b92915050565b60008060408385031215611796576117956116e6565b5b60006117a485828601611734565b92505060206117b58582860161176a565b9150509250929050565b60008115159050919050565b6117d4816117bf565b82525050565b60006020820190506117ef60008301846117cb565b92915050565b6117fe81611749565b82525050565b600060208201905061181960008301846117f5565b92915050565b600080600060608486031215611838576118376116e6565b5b600061184686828701611734565b935050602061185786828701611734565b92505060406118688682870161176a565b9150509250925092565b600060ff82169050919050565b61188881611872565b82525050565b60006020820190506118a3600083018461187f565b92915050565b6000602082840312156118bf576118be6116e6565b5b60006118cd84828501611734565b91505092915050565b6118df8161170b565b82525050565b60006020820190506118fa60008301846118d6565b92915050565b600060208284031215611916576119156116e6565b5b60006119248482850161176a565b91505092915050565b60008060408385031215611944576119436116e6565b5b600061195285828601611734565b925050602061196385828601611734565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119b457607f821691505b602082108114156119c8576119c761196d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611a2a602883611636565b9150611a35826119ce565b604082019050919050565b60006020820190508181036000830152611a5981611a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a96602083611636565b9150611aa182611a60565b602082019050919050565b60006020820190508181036000830152611ac581611a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b0682611749565b9150611b1183611749565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4657611b45611acc565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bad602583611636565b9150611bb882611b51565b604082019050919050565b60006020820190508181036000830152611bdc81611ba0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c3f602683611636565b9150611c4a82611be3565b604082019050919050565b60006020820190508181036000830152611c6e81611c32565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cd1602483611636565b9150611cdc82611c75565b604082019050919050565b60006020820190508181036000830152611d0081611cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d63602283611636565b9150611d6e82611d07565b604082019050919050565b60006020820190508181036000830152611d9281611d56565b9050919050565b7f48414d3a3a7472616e736665723a205461782076616c756520696e76616c6964600082015250565b6000611dcf602083611636565b9150611dda82611d99565b602082019050919050565b60006020820190508181036000830152611dfe81611dc2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e3b601f83611636565b9150611e4682611e05565b602082019050919050565b60006020820190508181036000830152611e6a81611e2e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ecd602583611636565b9150611ed882611e71565b604082019050919050565b60006020820190508181036000830152611efc81611ec0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f5f602383611636565b9150611f6a82611f03565b604082019050919050565b60006020820190508181036000830152611f8e81611f52565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ff1602683611636565b9150611ffc82611f95565b604082019050919050565b6000602082019050818103600083015261202081611fe4565b9050919050565b600061203282611749565b915061203d83611749565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207657612075611acc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120bb82611749565b91506120c683611749565b9250826120d6576120d5612081565b5b828204905092915050565b60006120ec82611749565b91506120f783611749565b92508282101561210a57612109611acc565b5b82820390509291505056fea2646970667358221220ec6c3a50174a133262820c2c13f5962b6e4e3615320a00504be7f2143508bceb64736f6c634300080a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806395d89b41116100b8578063be05939e1161007c578063be05939e14610379578063d5fcc7b614610397578063dd62ed3e146103b3578063eb1edd61146103e3578063f08e967114610401578063f2fde38b1461041f57610142565b806395d89b41146102c1578063a457c2d7146102df578063a861baea1461030f578063a9059cbb1461032d578063ba7345d91461035d57610142565b806336171e0e1161010a57806336171e0e14610201578063395093511461021d57806340c10f191461024d57806370a0823114610269578063715018a6146102995780638da5cb5b146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f61043b565b60405161015c91906116c4565b60405180910390f35b61017f600480360381019061017a919061177f565b6104cd565b60405161018c91906117da565b60405180910390f35b61019d6104eb565b6040516101aa9190611804565b60405180910390f35b6101cd60048036038101906101c8919061181f565b6104f5565b6040516101da91906117da565b60405180910390f35b6101eb6105ed565b6040516101f8919061188e565b60405180910390f35b61021b600480360381019061021691906118a9565b6105f6565b005b6102376004803603810190610232919061177f565b6106b6565b60405161024491906117da565b60405180910390f35b6102676004803603810190610262919061177f565b610762565b005b610283600480360381019061027e91906118a9565b6107ec565b6040516102909190611804565b60405180910390f35b6102a1610834565b005b6102ab6108bc565b6040516102b891906118e5565b60405180910390f35b6102c96108e6565b6040516102d691906116c4565b60405180910390f35b6102f960048036038101906102f4919061177f565b610978565b60405161030691906117da565b60405180910390f35b610317610a63565b60405161032491906118e5565b60405180910390f35b6103476004803603810190610342919061177f565b610a89565b60405161035491906117da565b60405180910390f35b61037760048036038101906103729190611900565b610aa7565b005b610381610b07565b60405161038e91906118e5565b60405180910390f35b6103b160048036038101906103ac91906118a9565b610b2d565b005b6103cd60048036038101906103c8919061192d565b610bed565b6040516103da9190611804565b60405180910390f35b6103eb610c74565b6040516103f891906118e5565b60405180910390f35b610409610c8c565b6040516104169190611804565b60405180910390f35b610439600480360381019061043491906118a9565b610c92565b005b60606003805461044a9061199c565b80601f01602080910402602001604051908101604052809291908181526020018280546104769061199c565b80156104c35780601f10610498576101008083540402835291602001916104c3565b820191906000526020600020905b8154815290600101906020018083116104a657829003601f168201915b5050505050905090565b60006104e16104da610d8a565b8484610d92565b6001905092915050565b6000600254905090565b6000610502848484610f5d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061054d610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c490611a40565b60405180910390fd5b6105e1856105d9610d8a565b858403610d92565b60019150509392505050565b60006012905090565b6105fe610d8a565b73ffffffffffffffffffffffffffffffffffffffff1661061c6108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066990611aac565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006107586106c3610d8a565b8484600160006106d1610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546107539190611afb565b610d92565b6001905092915050565b61076a610d8a565b73ffffffffffffffffffffffffffffffffffffffff166107886108bc565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d590611aac565b60405180910390fd5b6107e88282611138565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083c610d8a565b73ffffffffffffffffffffffffffffffffffffffff1661085a6108bc565b73ffffffffffffffffffffffffffffffffffffffff16146108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611aac565b60405180910390fd5b6108ba6000611298565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108f59061199c565b80601f01602080910402602001604051908101604052809291908181526020018280546109219061199c565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60008060016000610987610d8a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90611bc3565b60405180910390fd5b610a58610a4f610d8a565b85858403610d92565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610a9d610a96610d8a565b8484610f5d565b6001905092915050565b7313586e315c06e84309f33c6cdfa8ce68d101e5bb73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148015610af75750600a8111155b15610b0457806008819055505b50565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b35610d8a565b73ffffffffffffffffffffffffffffffffffffffff16610b536108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090611aac565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7313586e315c06e84309f33c6cdfa8ce68d101e5bb81565b60085481565b610c9a610d8a565b73ffffffffffffffffffffffffffffffffffffffff16610cb86108bc565b73ffffffffffffffffffffffffffffffffffffffff1614610d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0590611aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7590611c55565b60405180910390fd5b610d8781611298565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ce7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990611d79565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f509190611804565b60405180910390a3505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610ff857507313586e315c06e84309f33c6cdfa8ce68d101e5bb73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061100557506000600854145b8061105d5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156110725761106d83838361135e565b611133565b600061109d6103e861108f600854856115df90919063ffffffff16565b6115f590919063ffffffff16565b905060006110b4828461160b90919063ffffffff16565b905081816110c29190611afb565b8314611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611de5565b60405180910390fd5b611122857313586e315c06e84309f33c6cdfa8ce68d101e5bb8461135e565b61112d85858361135e565b80925050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119f90611e51565b60405180910390fd5b6111b460008383611621565b80600260008282546111c69190611afb565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461121b9190611afb565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112809190611804565b60405180910390a361129460008383611626565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c590611ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561143e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143590611f75565b60405180910390fd5b611449838383611621565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690612007565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115629190611afb565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115c69190611804565b60405180910390a36115d9848484611626565b50505050565b600081836115ed9190612027565b905092915050565b6000818361160391906120b0565b905092915050565b6000818361161991906120e1565b905092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561166557808201518184015260208101905061164a565b83811115611674576000848401525b50505050565b6000601f19601f8301169050919050565b60006116968261162b565b6116a08185611636565b93506116b0818560208601611647565b6116b98161167a565b840191505092915050565b600060208201905081810360008301526116de818461168b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611716826116eb565b9050919050565b6117268161170b565b811461173157600080fd5b50565b6000813590506117438161171d565b92915050565b6000819050919050565b61175c81611749565b811461176757600080fd5b50565b60008135905061177981611753565b92915050565b60008060408385031215611796576117956116e6565b5b60006117a485828601611734565b92505060206117b58582860161176a565b9150509250929050565b60008115159050919050565b6117d4816117bf565b82525050565b60006020820190506117ef60008301846117cb565b92915050565b6117fe81611749565b82525050565b600060208201905061181960008301846117f5565b92915050565b600080600060608486031215611838576118376116e6565b5b600061184686828701611734565b935050602061185786828701611734565b92505060406118688682870161176a565b9150509250925092565b600060ff82169050919050565b61188881611872565b82525050565b60006020820190506118a3600083018461187f565b92915050565b6000602082840312156118bf576118be6116e6565b5b60006118cd84828501611734565b91505092915050565b6118df8161170b565b82525050565b60006020820190506118fa60008301846118d6565b92915050565b600060208284031215611916576119156116e6565b5b60006119248482850161176a565b91505092915050565b60008060408385031215611944576119436116e6565b5b600061195285828601611734565b925050602061196385828601611734565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119b457607f821691505b602082108114156119c8576119c761196d565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611a2a602883611636565b9150611a35826119ce565b604082019050919050565b60006020820190508181036000830152611a5981611a1d565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611a96602083611636565b9150611aa182611a60565b602082019050919050565b60006020820190508181036000830152611ac581611a89565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b0682611749565b9150611b1183611749565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611b4657611b45611acc565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bad602583611636565b9150611bb882611b51565b604082019050919050565b60006020820190508181036000830152611bdc81611ba0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c3f602683611636565b9150611c4a82611be3565b604082019050919050565b60006020820190508181036000830152611c6e81611c32565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611cd1602483611636565b9150611cdc82611c75565b604082019050919050565b60006020820190508181036000830152611d0081611cc4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d63602283611636565b9150611d6e82611d07565b604082019050919050565b60006020820190508181036000830152611d9281611d56565b9050919050565b7f48414d3a3a7472616e736665723a205461782076616c756520696e76616c6964600082015250565b6000611dcf602083611636565b9150611dda82611d99565b602082019050919050565b60006020820190508181036000830152611dfe81611dc2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e3b601f83611636565b9150611e4682611e05565b602082019050919050565b60006020820190508181036000830152611e6a81611e2e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ecd602583611636565b9150611ed882611e71565b604082019050919050565b60006020820190508181036000830152611efc81611ec0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f5f602383611636565b9150611f6a82611f03565b604082019050919050565b60006020820190508181036000830152611f8e81611f52565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611ff1602683611636565b9150611ffc82611f95565b604082019050919050565b6000602082019050818103600083015261202081611fe4565b9050919050565b600061203282611749565b915061203d83611749565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561207657612075611acc565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006120bb82611749565b91506120c683611749565b9250826120d6576120d5612081565b5b828204905092915050565b60006120ec82611749565b91506120f783611749565b92508282101561210a57612109611acc565b5b82820390509291505056fea2646970667358221220ec6c3a50174a133262820c2c13f5962b6e4e3615320a00504be7f2143508bceb64736f6c634300080a0033
Deployed Bytecode Sourcemap
41543:1779:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19793:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21960:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20913:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22611:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20755:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42999:108;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23512:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41907:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21084:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13626:94;;;:::i;:::-;;12975:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20012:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24230:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41783:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21424:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43162:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41657:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42893:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21662:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41696:80;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41820:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13875:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19793:100;19847:13;19880:5;19873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19793:100;:::o;21960:169::-;22043:4;22060:39;22069:12;:10;:12::i;:::-;22083:7;22092:6;22060:8;:39::i;:::-;22117:4;22110:11;;21960:169;;;;:::o;20913:108::-;20974:7;21001:12;;20994:19;;20913:108;:::o;22611:492::-;22751:4;22768:36;22778:6;22786:9;22797:6;22768:9;:36::i;:::-;22817:24;22844:11;:19;22856:6;22844:19;;;;;;;;;;;;;;;:33;22864:12;:10;:12::i;:::-;22844:33;;;;;;;;;;;;;;;;22817:60;;22916:6;22896:16;:26;;22888:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;23003:57;23012:6;23020:12;:10;:12::i;:::-;23053:6;23034:16;:25;23003:8;:57::i;:::-;23091:4;23084:11;;;22611:492;;;;;:::o;20755:93::-;20813:5;20838:2;20831:9;;20755:93;:::o;42999:108::-;13206:12;:10;:12::i;:::-;13195:23;;:7;:5;:7::i;:::-;:23;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43089:10:::1;43069:17;;:30;;;;;;;;;;;;;;;;;;42999:108:::0;:::o;23512:215::-;23600:4;23617:80;23626:12;:10;:12::i;:::-;23640:7;23686:10;23649:11;:25;23661:12;:10;:12::i;:::-;23649:25;;;;;;;;;;;;;;;:34;23675:7;23649:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;23617:8;:80::i;:::-;23715:4;23708:11;;23512:215;;;;:::o;41907:99::-;13206:12;:10;:12::i;:::-;13195:23;;:7;:5;:7::i;:::-;:23;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41979:19:::1;41985:3;41990:7;41979:5;:19::i;:::-;41907:99:::0;;:::o;21084:127::-;21158:7;21185:9;:18;21195:7;21185:18;;;;;;;;;;;;;;;;21178:25;;21084:127;;;:::o;13626:94::-;13206:12;:10;:12::i;:::-;13195:23;;:7;:5;:7::i;:::-;:23;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13691:21:::1;13709:1;13691:9;:21::i;:::-;13626:94::o:0;12975:87::-;13021:7;13048:6;;;;;;;;;;;13041:13;;12975:87;:::o;20012:104::-;20068:13;20101:7;20094:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20012:104;:::o;24230:413::-;24323:4;24340:24;24367:11;:25;24379:12;:10;:12::i;:::-;24367:25;;;;;;;;;;;;;;;:34;24393:7;24367:34;;;;;;;;;;;;;;;;24340:61;;24440:15;24420:16;:35;;24412:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24533:67;24542:12;:10;:12::i;:::-;24556:7;24584:15;24565:16;:34;24533:8;:67::i;:::-;24631:4;24624:11;;;24230:413;;;;:::o;41783:30::-;;;;;;;;;;;;;:::o;21424:175::-;21510:4;21527:42;21537:12;:10;:12::i;:::-;21551:9;21562:6;21527:9;:42::i;:::-;21587:4;21580:11;;21424:175;;;;:::o;43162:155::-;41734:42;43221:25;;:10;:25;;;:43;;;;;43262:2;43250:8;:14;;43221:43;43218:92;;;43290:8;43280:7;:18;;;;43218:92;43162:155;:::o;41657:32::-;;;;;;;;;;;;;:::o;42893:100::-;13206:12;:10;:12::i;:::-;13195:23;;:7;:5;:7::i;:::-;:23;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42977:8:::1;42959:15;;:26;;;;;;;;;;;;;;;;;;42893:100:::0;:::o;21662:151::-;21751:7;21778:11;:18;21790:5;21778:18;;;;;;;;;;;;;;;:27;21797:7;21778:27;;;;;;;;;;;;;;;;21771:34;;21662:151;;;;:::o;41696:80::-;41734:42;41696:80;:::o;41820:26::-;;;;:::o;13875:192::-;13206:12;:10;:12::i;:::-;13195:23;;:7;:5;:7::i;:::-;:23;;;13187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13984:1:::1;13964:22;;:8;:22;;;;13956:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14040:19;14050:8;14040:9;:19::i;:::-;13875:192:::0;:::o;11742:98::-;11795:7;11822:10;11815:17;;11742:98;:::o;27914:380::-;28067:1;28050:19;;:5;:19;;;;28042:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28148:1;28129:21;;:7;:21;;;;28121:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28232:6;28202:11;:18;28214:5;28202:18;;;;;;;;;;;;;;;:27;28221:7;28202:27;;;;;;;;;;;;;;;:36;;;;28270:7;28254:32;;28263:5;28254:32;;;28279:6;28254:32;;;;;;:::i;:::-;;;;;;;;27914:380;;;:::o;42080:807::-;42201:15;;;;;;;;;;;42191:25;;:6;:25;;;:50;;;;41734:42;42220:21;;:6;:21;;;42191:50;:66;;;;42256:1;42245:7;;:12;42191:66;:97;;;;42271:17;;;;;;;;;;;42261:27;;:6;:27;;;42191:97;42187:693;;;42305:42;42321:6;42329:9;42340:6;42305:15;:42::i;:::-;42187:693;;;42463:17;42483:29;42507:4;42483:19;42494:7;;42483:6;:10;;:19;;;;:::i;:::-;:23;;:29;;;;:::i;:::-;42463:49;;42575:18;42596:21;42607:9;42596:6;:10;;:21;;;;:::i;:::-;42575:42;;42663:9;42650:10;:22;;;;:::i;:::-;42640:6;:32;42632:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;42726:47;42742:6;41734:42;42763:9;42726:15;:47::i;:::-;42788:46;42804:6;42812:9;42823:10;42788:15;:46::i;:::-;42858:10;42849:19;;42365:515;;42187:693;42080:807;;;:::o;26153:399::-;26256:1;26237:21;;:7;:21;;;;26229:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;26307:49;26336:1;26340:7;26349:6;26307:20;:49::i;:::-;26385:6;26369:12;;:22;;;;;;;:::i;:::-;;;;;;;;26424:6;26402:9;:18;26412:7;26402:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;26467:7;26446:37;;26463:1;26446:37;;;26476:6;26446:37;;;;;;:::i;:::-;;;;;;;;26496:48;26524:1;26528:7;26537:6;26496:19;:48::i;:::-;26153:399;;:::o;14075:173::-;14131:16;14150:6;;;;;;;;;;;14131:25;;14176:8;14167:6;;:17;;;;;;;;;;;;;;;;;;14231:8;14200:40;;14221:8;14200:40;;;;;;;;;;;;14120:128;14075:173;:::o;25133:733::-;25291:1;25273:20;;:6;:20;;;;25265:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;25375:1;25354:23;;:9;:23;;;;25346:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25430:47;25451:6;25459:9;25470:6;25430:20;:47::i;:::-;25490:21;25514:9;:17;25524:6;25514:17;;;;;;;;;;;;;;;;25490:41;;25567:6;25550:13;:23;;25542:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25688:6;25672:13;:22;25652:9;:17;25662:6;25652:17;;;;;;;;;;;;;;;:42;;;;25740:6;25716:9;:20;25726:9;25716:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;25781:9;25764:35;;25773:6;25764:35;;;25792:6;25764:35;;;;;;:::i;:::-;;;;;;;;25812:46;25832:6;25840:9;25851:6;25812:19;:46::i;:::-;25254:612;25133:733;;;:::o;4620:98::-;4678:7;4709:1;4705;:5;;;;:::i;:::-;4698:12;;4620:98;;;;:::o;5019:::-;5077:7;5108:1;5104;:5;;;;:::i;:::-;5097:12;;5019:98;;;;:::o;4263:::-;4321:7;4352:1;4348;:5;;;;:::i;:::-;4341:12;;4263:98;;;;:::o;28894:125::-;;;;:::o;29623:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:619::-;3923:6;3931;3939;3988:2;3976:9;3967:7;3963:23;3959:32;3956:119;;;3994:79;;:::i;:::-;3956:119;4114:1;4139:53;4184:7;4175:6;4164:9;4160:22;4139:53;:::i;:::-;4129:63;;4085:117;4241:2;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4212:118;4369:2;4395:53;4440:7;4431:6;4420:9;4416:22;4395:53;:::i;:::-;4385:63;;4340:118;3846:619;;;;;:::o;4471:86::-;4506:7;4546:4;4539:5;4535:16;4524:27;;4471:86;;;:::o;4563:112::-;4646:22;4662:5;4646:22;:::i;:::-;4641:3;4634:35;4563:112;;:::o;4681:214::-;4770:4;4808:2;4797:9;4793:18;4785:26;;4821:67;4885:1;4874:9;4870:17;4861:6;4821:67;:::i;:::-;4681:214;;;;:::o;4901:329::-;4960:6;5009:2;4997:9;4988:7;4984:23;4980:32;4977:119;;;5015:79;;:::i;:::-;4977:119;5135:1;5160:53;5205:7;5196:6;5185:9;5181:22;5160:53;:::i;:::-;5150:63;;5106:117;4901:329;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:329::-;5647:6;5696:2;5684:9;5675:7;5671:23;5667:32;5664:119;;;5702:79;;:::i;:::-;5664:119;5822:1;5847:53;5892:7;5883:6;5872:9;5868:22;5847:53;:::i;:::-;5837:63;;5793:117;5588:329;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:227::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:10;7119:2;7111:6;7107:15;7100:35;6915:227;:::o;7148:366::-;7290:3;7311:67;7375:2;7370:3;7311:67;:::i;:::-;7304:74;;7387:93;7476:3;7387:93;:::i;:::-;7505:2;7500:3;7496:12;7489:19;;7148:366;;;:::o;7520:419::-;7686:4;7724:2;7713:9;7709:18;7701:26;;7773:9;7767:4;7763:20;7759:1;7748:9;7744:17;7737:47;7801:131;7927:4;7801:131;:::i;:::-;7793:139;;7520:419;;;:::o;7945:182::-;8085:34;8081:1;8073:6;8069:14;8062:58;7945:182;:::o;8133:366::-;8275:3;8296:67;8360:2;8355:3;8296:67;:::i;:::-;8289:74;;8372:93;8461:3;8372:93;:::i;:::-;8490:2;8485:3;8481:12;8474:19;;8133:366;;;:::o;8505:419::-;8671:4;8709:2;8698:9;8694:18;8686:26;;8758:9;8752:4;8748:20;8744:1;8733:9;8729:17;8722:47;8786:131;8912:4;8786:131;:::i;:::-;8778:139;;8505:419;;;:::o;8930:180::-;8978:77;8975:1;8968:88;9075:4;9072:1;9065:15;9099:4;9096:1;9089:15;9116:305;9156:3;9175:20;9193:1;9175:20;:::i;:::-;9170:25;;9209:20;9227:1;9209:20;:::i;:::-;9204:25;;9363:1;9295:66;9291:74;9288:1;9285:81;9282:107;;;9369:18;;:::i;:::-;9282:107;9413:1;9410;9406:9;9399:16;;9116:305;;;;:::o;9427:224::-;9567:34;9563:1;9555:6;9551:14;9544:58;9636:7;9631:2;9623:6;9619:15;9612:32;9427:224;:::o;9657:366::-;9799:3;9820:67;9884:2;9879:3;9820:67;:::i;:::-;9813:74;;9896:93;9985:3;9896:93;:::i;:::-;10014:2;10009:3;10005:12;9998:19;;9657:366;;;:::o;10029:419::-;10195:4;10233:2;10222:9;10218:18;10210:26;;10282:9;10276:4;10272:20;10268:1;10257:9;10253:17;10246:47;10310:131;10436:4;10310:131;:::i;:::-;10302:139;;10029:419;;;:::o;10454:225::-;10594:34;10590:1;10582:6;10578:14;10571:58;10663:8;10658:2;10650:6;10646:15;10639:33;10454:225;:::o;10685:366::-;10827:3;10848:67;10912:2;10907:3;10848:67;:::i;:::-;10841:74;;10924:93;11013:3;10924:93;:::i;:::-;11042:2;11037:3;11033:12;11026:19;;10685:366;;;:::o;11057:419::-;11223:4;11261:2;11250:9;11246:18;11238:26;;11310:9;11304:4;11300:20;11296:1;11285:9;11281:17;11274:47;11338:131;11464:4;11338:131;:::i;:::-;11330:139;;11057:419;;;:::o;11482:223::-;11622:34;11618:1;11610:6;11606:14;11599:58;11691:6;11686:2;11678:6;11674:15;11667:31;11482:223;:::o;11711:366::-;11853:3;11874:67;11938:2;11933:3;11874:67;:::i;:::-;11867:74;;11950:93;12039:3;11950:93;:::i;:::-;12068:2;12063:3;12059:12;12052:19;;11711:366;;;:::o;12083:419::-;12249:4;12287:2;12276:9;12272:18;12264:26;;12336:9;12330:4;12326:20;12322:1;12311:9;12307:17;12300:47;12364:131;12490:4;12364:131;:::i;:::-;12356:139;;12083:419;;;:::o;12508:221::-;12648:34;12644:1;12636:6;12632:14;12625:58;12717:4;12712:2;12704:6;12700:15;12693:29;12508:221;:::o;12735:366::-;12877:3;12898:67;12962:2;12957:3;12898:67;:::i;:::-;12891:74;;12974:93;13063:3;12974:93;:::i;:::-;13092:2;13087:3;13083:12;13076:19;;12735:366;;;:::o;13107:419::-;13273:4;13311:2;13300:9;13296:18;13288:26;;13360:9;13354:4;13350:20;13346:1;13335:9;13331:17;13324:47;13388:131;13514:4;13388:131;:::i;:::-;13380:139;;13107:419;;;:::o;13532:182::-;13672:34;13668:1;13660:6;13656:14;13649:58;13532:182;:::o;13720:366::-;13862:3;13883:67;13947:2;13942:3;13883:67;:::i;:::-;13876:74;;13959:93;14048:3;13959:93;:::i;:::-;14077:2;14072:3;14068:12;14061:19;;13720:366;;;:::o;14092:419::-;14258:4;14296:2;14285:9;14281:18;14273:26;;14345:9;14339:4;14335:20;14331:1;14320:9;14316:17;14309:47;14373:131;14499:4;14373:131;:::i;:::-;14365:139;;14092:419;;;:::o;14517:181::-;14657:33;14653:1;14645:6;14641:14;14634:57;14517:181;:::o;14704:366::-;14846:3;14867:67;14931:2;14926:3;14867:67;:::i;:::-;14860:74;;14943:93;15032:3;14943:93;:::i;:::-;15061:2;15056:3;15052:12;15045:19;;14704:366;;;:::o;15076:419::-;15242:4;15280:2;15269:9;15265:18;15257:26;;15329:9;15323:4;15319:20;15315:1;15304:9;15300:17;15293:47;15357:131;15483:4;15357:131;:::i;:::-;15349:139;;15076:419;;;:::o;15501:224::-;15641:34;15637:1;15629:6;15625:14;15618:58;15710:7;15705:2;15697:6;15693:15;15686:32;15501:224;:::o;15731:366::-;15873:3;15894:67;15958:2;15953:3;15894:67;:::i;:::-;15887:74;;15970:93;16059:3;15970:93;:::i;:::-;16088:2;16083:3;16079:12;16072:19;;15731:366;;;:::o;16103:419::-;16269:4;16307:2;16296:9;16292:18;16284:26;;16356:9;16350:4;16346:20;16342:1;16331:9;16327:17;16320:47;16384:131;16510:4;16384:131;:::i;:::-;16376:139;;16103:419;;;:::o;16528:222::-;16668:34;16664:1;16656:6;16652:14;16645:58;16737:5;16732:2;16724:6;16720:15;16713:30;16528:222;:::o;16756:366::-;16898:3;16919:67;16983:2;16978:3;16919:67;:::i;:::-;16912:74;;16995:93;17084:3;16995:93;:::i;:::-;17113:2;17108:3;17104:12;17097:19;;16756:366;;;:::o;17128:419::-;17294:4;17332:2;17321:9;17317:18;17309:26;;17381:9;17375:4;17371:20;17367:1;17356:9;17352:17;17345:47;17409:131;17535:4;17409:131;:::i;:::-;17401:139;;17128:419;;;:::o;17553:225::-;17693:34;17689:1;17681:6;17677:14;17670:58;17762:8;17757:2;17749:6;17745:15;17738:33;17553:225;:::o;17784:366::-;17926:3;17947:67;18011:2;18006:3;17947:67;:::i;:::-;17940:74;;18023:93;18112:3;18023:93;:::i;:::-;18141:2;18136:3;18132:12;18125:19;;17784:366;;;:::o;18156:419::-;18322:4;18360:2;18349:9;18345:18;18337:26;;18409:9;18403:4;18399:20;18395:1;18384:9;18380:17;18373:47;18437:131;18563:4;18437:131;:::i;:::-;18429:139;;18156:419;;;:::o;18581:348::-;18621:7;18644:20;18662:1;18644:20;:::i;:::-;18639:25;;18678:20;18696:1;18678:20;:::i;:::-;18673:25;;18866:1;18798:66;18794:74;18791:1;18788:81;18783:1;18776:9;18769:17;18765:105;18762:131;;;18873:18;;:::i;:::-;18762:131;18921:1;18918;18914:9;18903:20;;18581:348;;;;:::o;18935:180::-;18983:77;18980:1;18973:88;19080:4;19077:1;19070:15;19104:4;19101:1;19094:15;19121:185;19161:1;19178:20;19196:1;19178:20;:::i;:::-;19173:25;;19212:20;19230:1;19212:20;:::i;:::-;19207:25;;19251:1;19241:35;;19256:18;;:::i;:::-;19241:35;19298:1;19295;19291:9;19286:14;;19121:185;;;;:::o;19312:191::-;19352:4;19372:20;19390:1;19372:20;:::i;:::-;19367:25;;19406:20;19424:1;19406:20;:::i;:::-;19401:25;;19445:1;19442;19439:8;19436:34;;;19450:18;;:::i;:::-;19436:34;19495:1;19492;19488:9;19480:17;;19312:191;;;;:::o
Swarm Source
ipfs://ec6c3a50174a133262820c2c13f5962b6e4e3615320a00504be7f2143508bceb
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.