S Price: $0.442117 (-11.18%)

Contract

0x490040E1A2df842Cab527146a20534e23DcC46FF

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

4 Internal Transactions found.

Latest 4 internal transactions

Parent Transaction Hash Block From To
160689832025-03-26 10:39:4711 days ago1742985587
0x490040E1...23DcC46FF
 Contract Creation0 S
160689832025-03-26 10:39:4711 days ago1742985587
0x490040E1...23DcC46FF
 Contract Creation0 S
160689832025-03-26 10:39:4711 days ago1742985587
0x490040E1...23DcC46FF
 Contract Creation0 S
160689832025-03-26 10:39:4711 days ago1742985587
0x490040E1...23DcC46FF
 Contract Creation0 S
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PWNFaucet

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion
File 1 of 23 : PWNFaucet.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {PWNFaucet20} from "./PWNFaucet20.sol";
import {PWNFaucet721} from "./PWNFaucet721.sol";
import {PWNFaucet1155} from "./PWNFaucet1155.sol";


contract PWNFaucet {

    PWNFaucet20 public t20D;
    PWNFaucet20 public t20S;
    PWNFaucet721 public t721;
    PWNFaucet1155 public t1155;


    constructor() {
        t20D = new PWNFaucet20("PWN D Faucet Token", "PWND");
        t20S = new PWNFaucet20("PWN S Faucet Token", "PWNS");
        t721 = new PWNFaucet721("PWN Faucet ERC721", "PWNf721");
        t1155 = new PWNFaucet1155();
    }


    /// @dev Drip 100 PWND (ERC20), 100 PWNS (ERC20), 3 NFTs (ERC721), and 10 semi-fungible tokens (ERC1155) to the receiver.
    /// @param receiver The address of the receiver.
    function drip(address receiver) external {
        t20D.mint(receiver, 100e18);
        t20S.mint(receiver, 100e18);

        t721.mint(receiver);
        t721.mint(receiver);
        t721.mint(receiver);

        t1155.mint(receiver, 10);
    }
}

File 2 of 23 : PWNFaucet20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {ERC20} from "openzeppelin/token/ERC20/ERC20.sol";


contract PWNFaucet20 is ERC20 {

    constructor(string memory name_, string memory symbol_) ERC20(name_, symbol_) {}


    function mint(address receiver, uint256 amount) external {
        _mint(receiver, amount);
    }

}

File 3 of 23 : PWNFaucet721.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {ERC721} from "openzeppelin/token/ERC721/ERC721.sol";
import {Utils} from "./UtilsLib.sol";


contract PWNFaucet721 is ERC721 {

    uint256 public lastTokenId;


    constructor(string memory name_, string memory symbol_) ERC721(name_, symbol_) {}


    function mint(address receiver) external {
        _mint(receiver, ++lastTokenId);
    }

    function tokenURI(uint256 tokenId) override public pure returns (string memory) {
        string memory svg = '<svg width="300" height="300" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10Z" fill="#111111"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.14975 18.1167C6.14479 18.0602 6.14225 18.003 6.14225 17.9452V16.5866C5.91516 16.7186 5.65151 16.7942 5.3703 16.7942C4.5175 16.7942 3.82617 16.0992 3.82617 15.2419V11.3611C3.82617 10.5038 4.5175 9.80883 5.3703 9.80883C5.88982 9.80883 6.34942 10.0668 6.6293 10.4622C6.75338 10.3222 6.89742 10.2004 7.05696 10.101C6.48751 9.4538 6.14225 8.60538 6.14225 7.6765C6.14225 5.64602 7.79198 4 9.82702 4H10.2149C12.2499 4 13.8997 5.64602 13.8997 7.6765C13.8997 8.60538 13.5544 9.4538 12.985 10.101C13.1445 10.2003 13.2885 10.3222 13.4126 10.4621C13.6925 10.0667 14.1521 9.80883 14.6716 9.80883C15.5244 9.80883 16.2157 10.5038 16.2157 11.3611V15.2419C16.2157 16.0992 15.5244 16.7942 14.6716 16.7942C14.3904 16.7942 14.1267 16.7186 13.8997 16.5866V17.9452C13.8997 17.9966 13.8977 18.0474 13.8937 18.0978C12.7199 18.6755 11.3991 19 10.0024 19C8.62108 19 7.31386 18.6826 6.14975 18.1167Z" fill="#111111"/><path d="M7.64645 7.64645C7.84171 7.45118 8.15829 7.45118 8.35355 7.64645C8.63031 7.9232 9.13925 8.26027 9.73034 8.3565C10.2904 8.44767 10.9617 8.33122 11.6464 7.64645C11.8417 7.45118 12.1583 7.45118 12.3536 7.64645C12.5488 7.84171 12.5488 8.15829 12.3536 8.35355C11.4383 9.26878 10.4429 9.48566 9.56966 9.3435C8.72742 9.20639 8.03636 8.74346 7.64645 8.35355C7.45118 8.15829 7.45118 7.84171 7.64645 7.64645Z" fill="#00FFE0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.2581 19.9967C15.6617 19.8598 20 15.4366 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20H10.0012M10.2542 18.9965C10.1702 18.9988 10.0858 19 10.0012 19C8.62032 18.9998 7.31352 18.6824 6.14975 18.1167C6.14479 18.0602 6.14225 18.003 6.14225 17.9452V16.5866C5.91516 16.7186 5.65151 16.7942 5.3703 16.7942C5.29282 16.7942 5.21667 16.7884 5.14225 16.7774C4.39759 16.6665 3.82617 16.0213 3.82617 15.2419V11.3611C3.82617 10.5038 4.5175 9.80883 5.3703 9.80883C5.47359 9.80883 5.57451 9.81903 5.67212 9.83847C5.82379 9.86868 5.96747 9.92122 6.09962 9.99254C6.3102 10.1062 6.49152 10.2675 6.6293 10.4622C6.75338 10.3222 6.89742 10.2004 7.05696 10.101C6.83687 9.85085 6.65026 9.57065 6.50414 9.26736C6.46612 9.18844 6.43083 9.10795 6.39842 9.02602C6.23309 8.60821 6.14225 8.15294 6.14225 7.6765C6.14225 5.64602 7.79198 4 9.82702 4H10.2149C12.2499 4 13.8997 5.64602 13.8997 7.6765C13.8997 8.15293 13.8088 8.60819 13.6435 9.02599C13.6111 9.10793 13.5758 9.18843 13.5378 9.26736C13.3916 9.57065 13.205 9.85085 12.985 10.101C13.1445 10.2003 13.2885 10.3222 13.4126 10.4621C13.5503 10.2675 13.7316 10.1062 13.9421 9.99259C14.0743 9.92124 14.2181 9.86868 14.3698 9.83846C14.4674 9.81902 14.5683 9.80883 14.6716 9.80883C15.5244 9.80883 16.2157 10.5038 16.2157 11.3611V15.2419C16.2157 16.0213 15.6443 16.6665 14.8997 16.7774C14.8252 16.7884 14.7491 16.7942 14.6716 16.7942C14.3904 16.7942 14.1267 16.7186 13.8997 16.5866V17.9452C13.8997 17.9966 13.8977 18.0474 13.8937 18.0978C12.7907 18.6407 11.5578 18.96 10.2542 18.9965ZM17.2117 15.3852C17.2144 15.3378 17.2157 15.29 17.2157 15.2419V11.3611C17.2157 9.98627 16.1292 8.85758 14.7608 8.81037C14.8515 8.44722 14.8997 8.06735 14.8997 7.6765C14.8997 5.09162 12.8001 3 10.2149 3H9.82702C7.24182 3 5.14225 5.09162 5.14225 7.6765C5.14225 8.06735 5.19043 8.44722 5.28111 8.81037C3.91273 8.85755 2.82617 9.98626 2.82617 11.3611V15.2419C2.82617 15.3106 2.82889 15.3787 2.83422 15.4461C1.68329 13.9341 1 12.0469 1 10C1 5.02944 5.02944 1 10 1C14.9706 1 19 5.02944 19 10C19 12.0195 18.3349 13.8836 17.2117 15.3852Z" fill="#00FFE0"/><path d="M10.2581 19.9967C10.2162 19.9978 10.1743 19.9986 10.1323 19.9991C10.1205 19.9993 10.1087 19.9994 10.097 19.9995C10.0655 19.9998 10.034 20 10.0024 20" fill="#00FFE0"/></svg>';

        string memory json = Utils.encode(bytes(string(abi.encodePacked('{"name": "PWN Faucet ERC721 #', Utils.toString(tokenId), '", "description": "Just a testnet ERC721 NFT from faucet", "image": "data:image/svg+xml;base64,', Utils.encode(bytes(svg)), '"}'))));
        string memory output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

}

File 4 of 23 : PWNFaucet1155.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {ERC1155} from "openzeppelin/token/ERC1155/ERC1155.sol";
import {Utils} from "./UtilsLib.sol";


contract PWNFaucet1155 is ERC1155 {

    uint256 public lastTokenId;


    constructor() ERC1155("") {}


    function mint(address receiver, uint256 amount) external {
        _mint(receiver, ++lastTokenId, amount, "");
    }

    function uri(uint256 tokenId) override public pure returns (string memory) {
        string memory svg = '<svg width="300" height="300" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10Z" fill="#111111"/><path fill-rule="evenodd" clip-rule="evenodd" d="M6.14975 18.1167C6.14479 18.0602 6.14225 18.003 6.14225 17.9452V16.5866C5.91516 16.7186 5.65151 16.7942 5.3703 16.7942C4.5175 16.7942 3.82617 16.0992 3.82617 15.2419V11.3611C3.82617 10.5038 4.5175 9.80883 5.3703 9.80883C5.88982 9.80883 6.34942 10.0668 6.6293 10.4622C6.75338 10.3222 6.89742 10.2004 7.05696 10.101C6.48751 9.4538 6.14225 8.60538 6.14225 7.6765C6.14225 5.64602 7.79198 4 9.82702 4H10.2149C12.2499 4 13.8997 5.64602 13.8997 7.6765C13.8997 8.60538 13.5544 9.4538 12.985 10.101C13.1445 10.2003 13.2885 10.3222 13.4126 10.4621C13.6925 10.0667 14.1521 9.80883 14.6716 9.80883C15.5244 9.80883 16.2157 10.5038 16.2157 11.3611V15.2419C16.2157 16.0992 15.5244 16.7942 14.6716 16.7942C14.3904 16.7942 14.1267 16.7186 13.8997 16.5866V17.9452C13.8997 17.9966 13.8977 18.0474 13.8937 18.0978C12.7199 18.6755 11.3991 19 10.0024 19C8.62108 19 7.31386 18.6826 6.14975 18.1167Z" fill="#111111"/><path d="M7.64645 7.64645C7.84171 7.45118 8.15829 7.45118 8.35355 7.64645C8.63031 7.9232 9.13925 8.26027 9.73034 8.3565C10.2904 8.44767 10.9617 8.33122 11.6464 7.64645C11.8417 7.45118 12.1583 7.45118 12.3536 7.64645C12.5488 7.84171 12.5488 8.15829 12.3536 8.35355C11.4383 9.26878 10.4429 9.48566 9.56966 9.3435C8.72742 9.20639 8.03636 8.74346 7.64645 8.35355C7.45118 8.15829 7.45118 7.84171 7.64645 7.64645Z" fill="#00FFE0"/><path fill-rule="evenodd" clip-rule="evenodd" d="M10.2581 19.9967C15.6617 19.8598 20 15.4366 20 10C20 4.47715 15.5228 0 10 0C4.47715 0 0 4.47715 0 10C0 15.5228 4.47715 20 10 20H10.0012M10.2542 18.9965C10.1702 18.9988 10.0858 19 10.0012 19C8.62032 18.9998 7.31352 18.6824 6.14975 18.1167C6.14479 18.0602 6.14225 18.003 6.14225 17.9452V16.5866C5.91516 16.7186 5.65151 16.7942 5.3703 16.7942C5.29282 16.7942 5.21667 16.7884 5.14225 16.7774C4.39759 16.6665 3.82617 16.0213 3.82617 15.2419V11.3611C3.82617 10.5038 4.5175 9.80883 5.3703 9.80883C5.47359 9.80883 5.57451 9.81903 5.67212 9.83847C5.82379 9.86868 5.96747 9.92122 6.09962 9.99254C6.3102 10.1062 6.49152 10.2675 6.6293 10.4622C6.75338 10.3222 6.89742 10.2004 7.05696 10.101C6.83687 9.85085 6.65026 9.57065 6.50414 9.26736C6.46612 9.18844 6.43083 9.10795 6.39842 9.02602C6.23309 8.60821 6.14225 8.15294 6.14225 7.6765C6.14225 5.64602 7.79198 4 9.82702 4H10.2149C12.2499 4 13.8997 5.64602 13.8997 7.6765C13.8997 8.15293 13.8088 8.60819 13.6435 9.02599C13.6111 9.10793 13.5758 9.18843 13.5378 9.26736C13.3916 9.57065 13.205 9.85085 12.985 10.101C13.1445 10.2003 13.2885 10.3222 13.4126 10.4621C13.5503 10.2675 13.7316 10.1062 13.9421 9.99259C14.0743 9.92124 14.2181 9.86868 14.3698 9.83846C14.4674 9.81902 14.5683 9.80883 14.6716 9.80883C15.5244 9.80883 16.2157 10.5038 16.2157 11.3611V15.2419C16.2157 16.0213 15.6443 16.6665 14.8997 16.7774C14.8252 16.7884 14.7491 16.7942 14.6716 16.7942C14.3904 16.7942 14.1267 16.7186 13.8997 16.5866V17.9452C13.8997 17.9966 13.8977 18.0474 13.8937 18.0978C12.7907 18.6407 11.5578 18.96 10.2542 18.9965ZM17.2117 15.3852C17.2144 15.3378 17.2157 15.29 17.2157 15.2419V11.3611C17.2157 9.98627 16.1292 8.85758 14.7608 8.81037C14.8515 8.44722 14.8997 8.06735 14.8997 7.6765C14.8997 5.09162 12.8001 3 10.2149 3H9.82702C7.24182 3 5.14225 5.09162 5.14225 7.6765C5.14225 8.06735 5.19043 8.44722 5.28111 8.81037C3.91273 8.85755 2.82617 9.98626 2.82617 11.3611V15.2419C2.82617 15.3106 2.82889 15.3787 2.83422 15.4461C1.68329 13.9341 1 12.0469 1 10C1 5.02944 5.02944 1 10 1C14.9706 1 19 5.02944 19 10C19 12.0195 18.3349 13.8836 17.2117 15.3852Z" fill="#00FFE0"/><path d="M10.2581 19.9967C10.2162 19.9978 10.1743 19.9986 10.1323 19.9991C10.1205 19.9993 10.1087 19.9994 10.097 19.9995C10.0655 19.9998 10.034 20 10.0024 20" fill="#00FFE0"/></svg>';

        string memory json = Utils.encode(bytes(string(abi.encodePacked('{"name": "PWN Faucet ERC1155 #', Utils.toString(tokenId), '", "description": "Just a testnet ERC1155 NFT from faucet", "image": "data:image/svg+xml;base64,', Utils.encode(bytes(svg)), '"}'))));
        string memory output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

}

File 5 of 23 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

File 6 of 23 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not token owner or approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _ownerOf(tokenId) != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId, 1);

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId, 1);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId, 1);

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId, 1);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
     * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
     * that `ownerOf(tokenId)` is `a`.
     */
    // solhint-disable-next-line func-name-mixedcase
    function __unsafe_increaseBalance(address account, uint256 amount) internal {
        _balances[account] += amount;
    }
}

File 7 of 23 : UtilsLib.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import {Math} from "openzeppelin/utils/math/Math.sol";


library Utils {

    string private constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    bytes16 private constant _SYMBOLS = "0123456789abcdef";

    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }

}

File 8 of 23 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: address zero is not a valid owner");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    ) public view virtual override returns (uint256[] memory) {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not token owner or approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _afterTokenTransfer(operator, from, to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address to, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _afterTokenTransfer(operator, address(0), to, ids, amounts, data);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address from, uint256 id, uint256 amount) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();
        uint256[] memory ids = _asSingletonArray(id);
        uint256[] memory amounts = _asSingletonArray(amount);

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);

        _afterTokenTransfer(operator, from, address(0), ids, amounts, "");
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `ids` and `amounts` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    /**
     * @dev Hook that is called after any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non-ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 9 of 23 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

File 10 of 23 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 11 of 23 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 23 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 13 of 23 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 14 of 23 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 15 of 23 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 16 of 23 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";
import "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 17 of 23 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 18 of 23 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 19 of 23 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] calldata accounts,
        uint256[] calldata ids
    ) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 20 of 23 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 21 of 23 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 22 of 23 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 23 of 23 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

Settings
{
  "remappings": [
    "forge-std/=lib/forge-std/src/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": false,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"drip","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"t1155","outputs":[{"internalType":"contract PWNFaucet1155","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t20D","outputs":[{"internalType":"contract PWNFaucet20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t20S","outputs":[{"internalType":"contract PWNFaucet20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t721","outputs":[{"internalType":"contract PWNFaucet721","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040516200002090620001e8565b6200002b90620002c3565b604051809103906000f08015801562000048573d6000803e3d6000fd5b506000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040516200009690620001e8565b620000a1906200039a565b604051809103906000f080158015620000be573d6000803e3d6000fd5b50600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040516200010d90620001f6565b620001189062000471565b604051809103906000f08015801562000135573d6000803e3d6000fd5b50600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604051620001849062000204565b604051809103906000f080158015620001a1573d6000803e3d6000fd5b50600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004a8565b6119e78062000c5a83390190565b613e40806200264183390190565b6140f5806200648183390190565b600082825260208201905092915050565b7f50574e20442046617563657420546f6b656e0000000000000000000000000000600082015250565b60006200025b60128362000212565b9150620002688262000223565b602082019050919050565b7f50574e4400000000000000000000000000000000000000000000000000000000600082015250565b6000620002ab60048362000212565b9150620002b88262000273565b602082019050919050565b60006040820190508181036000830152620002de816200024c565b90508181036020830152620002f3816200029c565b9050919050565b7f50574e20532046617563657420546f6b656e0000000000000000000000000000600082015250565b60006200033260128362000212565b91506200033f82620002fa565b602082019050919050565b7f50574e5300000000000000000000000000000000000000000000000000000000600082015250565b60006200038260048362000212565b91506200038f826200034a565b602082019050919050565b60006040820190508181036000830152620003b58162000323565b90508181036020830152620003ca8162000373565b9050919050565b7f50574e2046617563657420455243373231000000000000000000000000000000600082015250565b60006200040960118362000212565b91506200041682620003d1565b602082019050919050565b7f50574e6637323100000000000000000000000000000000000000000000000000600082015250565b60006200045960078362000212565b9150620004668262000421565b602082019050919050565b600060408201905081810360008301526200048c81620003fa565b90508181036020830152620004a1816200044a565b9050919050565b6107a280620004b86000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c806367a5cd061461005c578063958ad41a14610078578063a98e6f4a14610096578063bc7990c6146100b4578063cee6edfc146100d2575b600080fd5b61007660048036038101906100719190610551565b6100f0565b005b610080610458565b60405161008d91906105dd565b60405180910390f35b61009e61047c565b6040516100ab9190610619565b60405180910390f35b6100bc6104a2565b6040516100c991906105dd565b60405180910390f35b6100da6104c8565b6040516100e79190610655565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f198268056bc75e2d631000006040518363ffffffff1660e01b81526004016101549291906106c4565b600060405180830381600087803b15801561016e57600080fd5b505af1158015610182573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f198268056bc75e2d631000006040518363ffffffff1660e01b81526004016101ec9291906106c4565b600060405180830381600087803b15801561020657600080fd5b505af115801561021a573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161027991906106ed565b600060405180830381600087803b15801561029357600080fd5b505af11580156102a7573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161030691906106ed565b600060405180830381600087803b15801561032057600080fd5b505af1158015610334573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161039391906106ed565b600060405180830381600087803b1580156103ad57600080fd5b505af11580156103c1573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1982600a6040518363ffffffff1660e01b8152600401610423929190610743565b600060405180830381600087803b15801561043d57600080fd5b505af1158015610451573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061051e826104f3565b9050919050565b61052e81610513565b811461053957600080fd5b50565b60008135905061054b81610525565b92915050565b600060208284031215610567576105666104ee565b5b60006105758482850161053c565b91505092915050565b6000819050919050565b60006105a361059e610599846104f3565b61057e565b6104f3565b9050919050565b60006105b582610588565b9050919050565b60006105c7826105aa565b9050919050565b6105d7816105bc565b82525050565b60006020820190506105f260008301846105ce565b92915050565b6000610603826105aa565b9050919050565b610613816105f8565b82525050565b600060208201905061062e600083018461060a565b92915050565b600061063f826105aa565b9050919050565b61064f81610634565b82525050565b600060208201905061066a6000830184610646565b92915050565b61067981610513565b82525050565b6000819050919050565b6000819050919050565b60006106ae6106a96106a48461067f565b61057e565b610689565b9050919050565b6106be81610693565b82525050565b60006040820190506106d96000830185610670565b6106e660208301846106b5565b9392505050565b60006020820190506107026000830184610670565b92915050565b6000819050919050565b600061072d61072861072384610708565b61057e565b610689565b9050919050565b61073d81610712565b82525050565b60006040820190506107586000830185610670565b6107656020830184610734565b939250505056fea2646970667358221220ca9e0b74d4489c8747605a96c5a7765301378c06a0075d4c6d0e6c3c8657b12964736f6c6343000813003360806040523480156200001157600080fd5b50604051620019e7380380620019e78339818101604052810190620000379190620001fa565b818181600390816200004a9190620004ca565b5080600490816200005c9190620004ca565b5050505050620005b1565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000d08262000085565b810181811067ffffffffffffffff82111715620000f257620000f162000096565b5b80604052505050565b60006200010762000067565b9050620001158282620000c5565b919050565b600067ffffffffffffffff82111562000138576200013762000096565b5b620001438262000085565b9050602081019050919050565b60005b838110156200017057808201518184015260208101905062000153565b60008484015250505050565b6000620001936200018d846200011a565b620000fb565b905082815260208101848484011115620001b257620001b162000080565b5b620001bf84828562000150565b509392505050565b600082601f830112620001df57620001de6200007b565b5b8151620001f18482602086016200017c565b91505092915050565b6000806040838503121562000214576200021362000071565b5b600083015167ffffffffffffffff81111562000235576200023462000076565b5b6200024385828601620001c7565b925050602083015167ffffffffffffffff81111562000267576200026662000076565b5b6200027585828601620001c7565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d257607f821691505b602082108103620002e857620002e76200028a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000313565b6200035e868362000313565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ab620003a56200039f8462000376565b62000380565b62000376565b9050919050565b6000819050919050565b620003c7836200038a565b620003df620003d682620003b2565b84845462000320565b825550505050565b600090565b620003f6620003e7565b62000403818484620003bc565b505050565b5b818110156200042b576200041f600082620003ec565b60018101905062000409565b5050565b601f8211156200047a576200044481620002ee565b6200044f8462000303565b810160208510156200045f578190505b620004776200046e8562000303565b83018262000408565b50505b505050565b600082821c905092915050565b60006200049f600019846008026200047f565b1980831691505092915050565b6000620004ba83836200048c565b9150826002028217905092915050565b620004d5826200027f565b67ffffffffffffffff811115620004f157620004f062000096565b5b620004fd8254620002b9565b6200050a8282856200042f565b600060209050601f8311600181146200054257600084156200052d578287015190505b620005398582620004ac565b865550620005a9565b601f1984166200055286620002ee565b60005b828110156200057c5784890151825560018201915060208501945060208101905062000555565b868310156200059c578489015162000598601f8916826200048c565b8355505b6001600288020188555050505b505050505050565b61142680620005c16000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f19146101a357806370a08231146101bf57806395d89b41146101ef578063a457c2d71461020d578063a9059cbb1461023d578063dd62ed3e1461026d576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029d565b6040516100ce9190610c97565b60405180910390f35b6100f160048036038101906100ec9190610d52565b61032f565b6040516100fe9190610dad565b60405180910390f35b61010f610352565b60405161011c9190610dd7565b60405180910390f35b61013f600480360381019061013a9190610df2565b61035c565b60405161014c9190610dad565b60405180910390f35b61015d61038b565b60405161016a9190610e61565b60405180910390f35b61018d60048036038101906101889190610d52565b610394565b60405161019a9190610dad565b60405180910390f35b6101bd60048036038101906101b89190610d52565b6103cb565b005b6101d960048036038101906101d49190610e7c565b6103d9565b6040516101e69190610dd7565b60405180910390f35b6101f7610421565b6040516102049190610c97565b60405180910390f35b61022760048036038101906102229190610d52565b6104b3565b6040516102349190610dad565b60405180910390f35b61025760048036038101906102529190610d52565b61052a565b6040516102649190610dad565b60405180910390f35b61028760048036038101906102829190610ea9565b61054d565b6040516102949190610dd7565b60405180910390f35b6060600380546102ac90610f18565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610f18565b80156103255780601f106102fa57610100808354040283529160200191610325565b820191906000526020600020905b81548152906001019060200180831161030857829003601f168201915b5050505050905090565b60008061033a6105d4565b90506103478185856105dc565b600191505092915050565b6000600254905090565b6000806103676105d4565b90506103748582856107a5565b61037f858585610831565b60019150509392505050565b60006012905090565b60008061039f6105d4565b90506103c08185856103b1858961054d565b6103bb9190610f78565b6105dc565b600191505092915050565b6103d58282610aa7565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461043090610f18565b80601f016020809104026020016040519081016040528092919081815260200182805461045c90610f18565b80156104a95780601f1061047e576101008083540402835291602001916104a9565b820191906000526020600020905b81548152906001019060200180831161048c57829003601f168201915b5050505050905090565b6000806104be6105d4565b905060006104cc828661054d565b905083811015610511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105089061101e565b60405180910390fd5b61051e82868684036105dc565b60019250505092915050565b6000806105356105d4565b9050610542818585610831565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361064b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610642906110b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b190611142565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107989190610dd7565b60405180910390a3505050565b60006107b1848461054d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461082b578181101561081d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610814906111ae565b60405180910390fd5b61082a84848484036105dc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089790611240565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610906906112d2565b60405180910390fd5b61091a838383610bfd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099790611364565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a8e9190610dd7565b60405180910390a3610aa1848484610c02565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d906113d0565b60405180910390fd5b610b2260008383610bfd565b8060026000828254610b349190610f78565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610be59190610dd7565b60405180910390a3610bf960008383610c02565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c41578082015181840152602081019050610c26565b60008484015250505050565b6000601f19601f8301169050919050565b6000610c6982610c07565b610c738185610c12565b9350610c83818560208601610c23565b610c8c81610c4d565b840191505092915050565b60006020820190508181036000830152610cb18184610c5e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ce982610cbe565b9050919050565b610cf981610cde565b8114610d0457600080fd5b50565b600081359050610d1681610cf0565b92915050565b6000819050919050565b610d2f81610d1c565b8114610d3a57600080fd5b50565b600081359050610d4c81610d26565b92915050565b60008060408385031215610d6957610d68610cb9565b5b6000610d7785828601610d07565b9250506020610d8885828601610d3d565b9150509250929050565b60008115159050919050565b610da781610d92565b82525050565b6000602082019050610dc26000830184610d9e565b92915050565b610dd181610d1c565b82525050565b6000602082019050610dec6000830184610dc8565b92915050565b600080600060608486031215610e0b57610e0a610cb9565b5b6000610e1986828701610d07565b9350506020610e2a86828701610d07565b9250506040610e3b86828701610d3d565b9150509250925092565b600060ff82169050919050565b610e5b81610e45565b82525050565b6000602082019050610e766000830184610e52565b92915050565b600060208284031215610e9257610e91610cb9565b5b6000610ea084828501610d07565b91505092915050565b60008060408385031215610ec057610ebf610cb9565b5b6000610ece85828601610d07565b9250506020610edf85828601610d07565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610f3057607f821691505b602082108103610f4357610f42610ee9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f8382610d1c565b9150610f8e83610d1c565b9250828201905080821115610fa657610fa5610f49565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611008602583610c12565b915061101382610fac565b604082019050919050565b6000602082019050818103600083015261103781610ffb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061109a602483610c12565b91506110a58261103e565b604082019050919050565b600060208201905081810360008301526110c98161108d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061112c602283610c12565b9150611137826110d0565b604082019050919050565b6000602082019050818103600083015261115b8161111f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611198601d83610c12565b91506111a382611162565b602082019050919050565b600060208201905081810360008301526111c78161118b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061122a602583610c12565b9150611235826111ce565b604082019050919050565b600060208201905081810360008301526112598161121d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006112bc602383610c12565b91506112c782611260565b604082019050919050565b600060208201905081810360008301526112eb816112af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061134e602683610c12565b9150611359826112f2565b604082019050919050565b6000602082019050818103600083015261137d81611341565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006113ba601f83610c12565b91506113c582611384565b602082019050919050565b600060208201905081810360008301526113e9816113ad565b905091905056fea2646970667358221220d43d08f55968fe125e6973b1df05d854e8da1003c60d6a19c9664eabf93e2a0d64736f6c6343000813003360806040523480156200001157600080fd5b5060405162003e4038038062003e408339818101604052810190620000379190620001fa565b818181600090816200004a9190620004ca565b5080600190816200005c9190620004ca565b5050505050620005b1565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620000d08262000085565b810181811067ffffffffffffffff82111715620000f257620000f162000096565b5b80604052505050565b60006200010762000067565b9050620001158282620000c5565b919050565b600067ffffffffffffffff82111562000138576200013762000096565b5b620001438262000085565b9050602081019050919050565b60005b838110156200017057808201518184015260208101905062000153565b60008484015250505050565b6000620001936200018d846200011a565b620000fb565b905082815260208101848484011115620001b257620001b162000080565b5b620001bf84828562000150565b509392505050565b600082601f830112620001df57620001de6200007b565b5b8151620001f18482602086016200017c565b91505092915050565b6000806040838503121562000214576200021362000071565b5b600083015167ffffffffffffffff81111562000235576200023462000076565b5b6200024385828601620001c7565b925050602083015167ffffffffffffffff81111562000267576200026662000076565b5b6200027585828601620001c7565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d257607f821691505b602082108103620002e857620002e76200028a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000313565b6200035e868362000313565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003ab620003a56200039f8462000376565b62000380565b62000376565b9050919050565b6000819050919050565b620003c7836200038a565b620003df620003d682620003b2565b84845462000320565b825550505050565b600090565b620003f6620003e7565b62000403818484620003bc565b505050565b5b818110156200042b576200041f600082620003ec565b60018101905062000409565b5050565b601f8211156200047a576200044481620002ee565b6200044f8462000303565b810160208510156200045f578190505b620004776200046e8562000303565b83018262000408565b50505b505050565b600082821c905092915050565b60006200049f600019846008026200047f565b1980831691505092915050565b6000620004ba83836200048c565b9150826002028217905092915050565b620004d5826200027f565b67ffffffffffffffff811115620004f157620004f062000096565b5b620004fd8254620002b9565b6200050a8282856200042f565b600060209050601f8311600181146200054257600084156200052d578287015190505b620005398582620004ac565b865550620005a9565b601f1984166200055286620002ee565b60005b828110156200057c5784890151825560018201915060208501945060208101905062000555565b868310156200059c578489015162000598601f8916826200048c565b8355505b6001600288020188555050505b505050505050565b61387f80620005c16000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c80636a62784211610097578063b88d4fde11610066578063b88d4fde14610282578063c87b56dd1461029e578063e985e9c5146102ce578063f84ddf0b146102fe576100f5565b80636a627842146101fc57806370a082311461021857806395d89b4114610248578063a22cb46514610266576100f5565b8063095ea7b3116100d3578063095ea7b31461017857806323b872dd1461019457806342842e0e146101b05780636352211e146101cc576100f5565b806301ffc9a7146100fa57806306fdde031461012a578063081812fc14610148575b600080fd5b610114600480360381019061010f919061190b565b61031c565b6040516101219190611953565b60405180910390f35b6101326103fe565b60405161013f91906119fe565b60405180910390f35b610162600480360381019061015d9190611a56565b610490565b60405161016f9190611ac4565b60405180910390f35b610192600480360381019061018d9190611b0b565b6104d6565b005b6101ae60048036038101906101a99190611b4b565b6105ed565b005b6101ca60048036038101906101c59190611b4b565b61064d565b005b6101e660048036038101906101e19190611a56565b61066d565b6040516101f39190611ac4565b60405180910390f35b61021660048036038101906102119190611b9e565b6106f3565b005b610232600480360381019061022d9190611b9e565b610714565b60405161023f9190611bda565b60405180910390f35b6102506107cb565b60405161025d91906119fe565b60405180910390f35b610280600480360381019061027b9190611c21565b61085d565b005b61029c60048036038101906102979190611d96565b610873565b005b6102b860048036038101906102b39190611a56565b6108d5565b6040516102c591906119fe565b60405180910390f35b6102e860048036038101906102e39190611e19565b610964565b6040516102f59190611953565b60405180910390f35b6103066109f8565b6040516103139190611bda565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103e757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103f757506103f6826109fe565b5b9050919050565b60606000805461040d90611e88565b80601f016020809104026020016040519081016040528092919081815260200182805461043990611e88565b80156104865780601f1061045b57610100808354040283529160200191610486565b820191906000526020600020905b81548152906001019060200180831161046957829003601f168201915b5050505050905090565b600061049b82610a68565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104e18261066d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610551576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161054890611f2b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610570610ab3565b73ffffffffffffffffffffffffffffffffffffffff16148061059f575061059e81610599610ab3565b610964565b5b6105de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d590611fbd565b60405180910390fd5b6105e88383610abb565b505050565b6105fe6105f8610ab3565b82610b74565b61063d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106349061204f565b60405180910390fd5b610648838383610c09565b505050565b61066883838360405180602001604052806000815250610873565b505050565b60008061067983610f02565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e1906120bb565b60405180910390fd5b80915050919050565b610711816006600081546107069061210a565b919050819055610f3f565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077b906121c4565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107da90611e88565b80601f016020809104026020016040519081016040528092919081815260200182805461080690611e88565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b61086f610868610ab3565b838361115c565b5050565b61088461087e610ab3565b83610b74565b6108c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ba9061204f565b60405180910390fd5b6108cf848484846112c8565b50505050565b6060600060405180610f800160405280610f5381526020016128b7610f5391399050600061093361090585611324565b61090e846113f2565b60405160200161091f929190612350565b6040516020818303038152906040526113f2565b905060008160405160200161094891906123e1565b6040516020818303038152906040529050809350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60065481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610a7181611555565b610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa7906120bb565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b2e8361066d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610b808361066d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610bc25750610bc18185610964565b5b80610c0057508373ffffffffffffffffffffffffffffffffffffffff16610be884610490565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610c298261066d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7690612475565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce590612507565b60405180910390fd5b610cfb8383836001611596565b8273ffffffffffffffffffffffffffffffffffffffff16610d1b8261066d565b73ffffffffffffffffffffffffffffffffffffffff1614610d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6890612475565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610efd838383600161159c565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa590612573565b60405180910390fd5b610fb781611555565b15610ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fee906125df565b60405180910390fd5b611005600083836001611596565b61100e81611555565b1561104e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611045906125df565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461115860008383600161159c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c19061264b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112bb9190611953565b60405180910390a3505050565b6112d3848484610c09565b6112df848484846115a2565b61131e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611315906126dd565b60405180910390fd5b50505050565b60606000600161133384611729565b01905060008167ffffffffffffffff81111561135257611351611c6b565b5b6040519080825280601f01601f1916602001820160405280156113845781602001600182028036833780820191505090505b509050600082602001820190505b6001156113e7578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816113db576113da6126fd565b5b04945060008503611392575b819350505050919050565b6060600082510361141457604051806020016040528060008152509050611550565b600060405180606001604052806040815260200161380a6040913990506000600360028551611443919061272c565b61144d9190612760565b60046114599190612791565b67ffffffffffffffff81111561147257611471611c6b565b5b6040519080825280601f01601f1916602001820160405280156114a45781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015611510576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506114b5565b505060038651066001811461152c576002811461153f57611547565b603d6001830353603d6002830353611547565b603d60018303535b50505080925050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661157783610f02565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b60006115c38473ffffffffffffffffffffffffffffffffffffffff1661187c565b1561171c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026115ec610ab3565b8786866040518563ffffffff1660e01b815260040161160e9493929190612828565b6020604051808303816000875af192505050801561164a57506040513d601f19601f820116820180604052508101906116479190612889565b60015b6116cc573d806000811461167a576040519150601f19603f3d011682016040523d82523d6000602084013e61167f565b606091505b5060008151036116c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bb906126dd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611721565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611787577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161177d5761177c6126fd565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106117c4576d04ee2d6d415b85acef810000000083816117ba576117b96126fd565b5b0492506020810190505b662386f26fc1000083106117f357662386f26fc1000083816117e9576117e86126fd565b5b0492506010810190505b6305f5e100831061181c576305f5e1008381611812576118116126fd565b5b0492506008810190505b6127108310611841576127108381611837576118366126fd565b5b0492506004810190505b60648310611864576064838161185a576118596126fd565b5b0492506002810190505b600a8310611873576001810190505b80915050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6118e8816118b3565b81146118f357600080fd5b50565b600081359050611905816118df565b92915050565b600060208284031215611921576119206118a9565b5b600061192f848285016118f6565b91505092915050565b60008115159050919050565b61194d81611938565b82525050565b60006020820190506119686000830184611944565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119a857808201518184015260208101905061198d565b60008484015250505050565b6000601f19601f8301169050919050565b60006119d08261196e565b6119da8185611979565b93506119ea81856020860161198a565b6119f3816119b4565b840191505092915050565b60006020820190508181036000830152611a1881846119c5565b905092915050565b6000819050919050565b611a3381611a20565b8114611a3e57600080fd5b50565b600081359050611a5081611a2a565b92915050565b600060208284031215611a6c57611a6b6118a9565b5b6000611a7a84828501611a41565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611aae82611a83565b9050919050565b611abe81611aa3565b82525050565b6000602082019050611ad96000830184611ab5565b92915050565b611ae881611aa3565b8114611af357600080fd5b50565b600081359050611b0581611adf565b92915050565b60008060408385031215611b2257611b216118a9565b5b6000611b3085828601611af6565b9250506020611b4185828601611a41565b9150509250929050565b600080600060608486031215611b6457611b636118a9565b5b6000611b7286828701611af6565b9350506020611b8386828701611af6565b9250506040611b9486828701611a41565b9150509250925092565b600060208284031215611bb457611bb36118a9565b5b6000611bc284828501611af6565b91505092915050565b611bd481611a20565b82525050565b6000602082019050611bef6000830184611bcb565b92915050565b611bfe81611938565b8114611c0957600080fd5b50565b600081359050611c1b81611bf5565b92915050565b60008060408385031215611c3857611c376118a9565b5b6000611c4685828601611af6565b9250506020611c5785828601611c0c565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ca3826119b4565b810181811067ffffffffffffffff82111715611cc257611cc1611c6b565b5b80604052505050565b6000611cd561189f565b9050611ce18282611c9a565b919050565b600067ffffffffffffffff821115611d0157611d00611c6b565b5b611d0a826119b4565b9050602081019050919050565b82818337600083830152505050565b6000611d39611d3484611ce6565b611ccb565b905082815260208101848484011115611d5557611d54611c66565b5b611d60848285611d17565b509392505050565b600082601f830112611d7d57611d7c611c61565b5b8135611d8d848260208601611d26565b91505092915050565b60008060008060808587031215611db057611daf6118a9565b5b6000611dbe87828801611af6565b9450506020611dcf87828801611af6565b9350506040611de087828801611a41565b925050606085013567ffffffffffffffff811115611e0157611e006118ae565b5b611e0d87828801611d68565b91505092959194509250565b60008060408385031215611e3057611e2f6118a9565b5b6000611e3e85828601611af6565b9250506020611e4f85828601611af6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ea057607f821691505b602082108103611eb357611eb2611e59565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f15602183611979565b9150611f2082611eb9565b604082019050919050565b60006020820190508181036000830152611f4481611f08565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000611fa7603d83611979565b9150611fb282611f4b565b604082019050919050565b60006020820190508181036000830152611fd681611f9a565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612039602d83611979565b915061204482611fdd565b604082019050919050565b600060208201905081810360008301526120688161202c565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006120a5601883611979565b91506120b08261206f565b602082019050919050565b600060208201905081810360008301526120d481612098565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061211582611a20565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612147576121466120db565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006121ae602983611979565b91506121b982612152565b604082019050919050565b600060208201905081810360008301526121dd816121a1565b9050919050565b600081905092915050565b7f7b226e616d65223a202250574e20466175636574204552433732312023000000600082015250565b6000612225601d836121e4565b9150612230826121ef565b601d82019050919050565b60006122468261196e565b61225081856121e4565b935061226081856020860161198a565b80840191505092915050565b7f222c20226465736372697074696f6e223a20224a757374206120746573746e6560008201527f7420455243373231204e46542066726f6d20666175636574222c2022696d616760208201527f65223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c00604082015250565b60006122ee605f836121e4565b91506122f98261226c565b605f82019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061233a6002836121e4565b915061234582612304565b600282019050919050565b600061235b82612218565b9150612367828561223b565b9150612372826122e1565b915061237e828461223b565b91506123898261232d565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b60006123cb601d836121e4565b91506123d682612395565b601d82019050919050565b60006123ec826123be565b91506123f8828461223b565b915081905092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b600061245f602583611979565b915061246a82612403565b604082019050919050565b6000602082019050818103600083015261248e81612452565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124f1602483611979565b91506124fc82612495565b604082019050919050565b60006020820190508181036000830152612520816124e4565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061255d602083611979565b915061256882612527565b602082019050919050565b6000602082019050818103600083015261258c81612550565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006125c9601c83611979565b91506125d482612593565b602082019050919050565b600060208201905081810360008301526125f8816125bc565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612635601983611979565b9150612640826125ff565b602082019050919050565b6000602082019050818103600083015261266481612628565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006126c7603283611979565b91506126d28261266b565b604082019050919050565b600060208201905081810360008301526126f6816126ba565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061273782611a20565b915061274283611a20565b925082820190508082111561275a576127596120db565b5b92915050565b600061276b82611a20565b915061277683611a20565b925082612786576127856126fd565b5b828204905092915050565b600061279c82611a20565b91506127a783611a20565b92508282026127b581611a20565b915082820484148315176127cc576127cb6120db565b5b5092915050565b600081519050919050565b600082825260208201905092915050565b60006127fa826127d3565b61280481856127de565b935061281481856020860161198a565b61281d816119b4565b840191505092915050565b600060808201905061283d6000830187611ab5565b61284a6020830186611ab5565b6128576040830185611bcb565b818103606083015261286981846127ef565b905095945050505050565b600081519050612883816118df565b92915050565b60006020828403121561289f5761289e6118a9565b5b60006128ad84828501612874565b9150509291505056fe3c7376672077696474683d2233303022206865696768743d22333030222076696577426f783d22302030203230203230222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7061746820643d224d32302031304332302031352e353232382031352e3532323820323020313020323043342e343737313520323020302031352e353232382030203130433020342e343737313520342e3437373135203020313020304331352e35323238203020323020342e34373731352032302031305a222066696c6c3d2223313131313131222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d362e31343937352031382e3131363743362e31343437392031382e3036303220362e31343232352031382e30303320362e31343232352031372e393435325631362e3538363643352e39313531362031362e3731383620352e36353135312031362e3739343220352e333730332031362e3739343243342e353137352031362e3739343220332e38323631372031362e3039393220332e38323631372031352e323431395631312e3336313143332e38323631372031302e3530333820342e3531373520392e383038383320352e3337303320392e383038383343352e383839383220392e383038383320362e33343934322031302e3036363820362e363239332031302e3436323243362e37353333382031302e3332323220362e38393734322031302e3230303420372e30353639362031302e31303143362e343837353120392e3435333820362e313432323520382e363035333820362e313432323520372e3637363543362e313432323520352e363436303220372e3739313938203420392e383237303220344831302e323134394331322e3234393920342031332e3839393720352e36343630322031332e3839393720372e363736354331332e3839393720382e36303533382031332e3535343420392e343533382031322e3938352031302e3130314331332e313434352031302e323030332031332e323838352031302e333232322031332e343132362031302e343632314331332e363932352031302e303636372031342e3135323120392e38303838332031342e3637313620392e38303838334331352e3532343420392e38303838332031362e323135372031302e353033382031362e323135372031312e333631315631352e323431394331362e323135372031362e303939322031352e353234342031362e373934322031342e363731362031362e373934324331342e333930342031362e373934322031342e313236372031362e373138362031332e383939372031362e353836365631372e393435324331332e383939372031372e393936362031332e383937372031382e303437342031332e383933372031382e303937384331322e373139392031382e363735352031312e333939312031392031302e3030323420313943382e363231303820313920372e33313338362031382e3638323620362e31343937352031382e313136375a222066696c6c3d2223313131313131222f3e3c7061746820643d224d372e363436343520372e363436343543372e383431373120372e343531313820382e313538323920372e343531313820382e333533353520372e363436343543382e363330333120372e3932333220392e313339323520382e323630323720392e373330333420382e333536354331302e3239303420382e34343736372031302e3936313720382e33333132322031312e3634363420372e36343634354331312e3834313720372e34353131382031322e3135383320372e34353131382031322e3335333620372e36343634354331322e3534383820372e38343137312031322e3534383820382e31353832392031322e3335333620382e33353335354331312e3433383320392e32363837382031302e3434323920392e343835363620392e353639363620392e3334333543382e373237343220392e323036333920382e303336333620382e373433343620372e363436343520382e333533353543372e343531313820382e313538323920372e343531313820372e383431373120372e363436343520372e36343634355a222066696c6c3d2223303046464530222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d31302e323538312031392e393936374331352e363631372031392e383539382032302031352e3433363620323020313043323020342e34373731352031352e353232382030203130203043342e34373731352030203020342e3437373135203020313043302031352e3532323820342e34373731352032302031302032304831302e303031324d31302e323534322031382e393936354331302e313730322031382e393938382031302e303835382031392031302e3030313220313943382e36323033322031382e3939393820372e33313335322031382e3638323420362e31343937352031382e3131363743362e31343437392031382e3036303220362e31343232352031382e30303320362e31343232352031372e393435325631362e3538363643352e39313531362031362e3731383620352e36353135312031362e3739343220352e333730332031362e3739343243352e32393238322031362e3739343220352e32313636372031362e3738383420352e31343232352031362e3737373443342e33393735392031362e3636363520332e38323631372031362e3032313320332e38323631372031352e323431395631312e3336313143332e38323631372031302e3530333820342e3531373520392e383038383320352e3337303320392e383038383343352e343733353920392e383038383320352e353734353120392e383139303320352e363732313220392e383338343743352e383233373920392e383638363820352e393637343720392e393231323220362e303939363220392e393932353443362e333130322031302e3130363220362e34393135322031302e3236373520362e363239332031302e3436323243362e37353333382031302e3332323220362e38393734322031302e3230303420372e30353639362031302e31303143362e383336383720392e383530383520362e363530323620392e353730363520362e353034313420392e323637333643362e343636313220392e313838343420362e343330383320392e313037393520362e333938343220392e303236303243362e323333303920382e363038323120362e313432323520382e313532393420362e313432323520372e3637363543362e313432323520352e363436303220372e3739313938203420392e383237303220344831302e323134394331322e3234393920342031332e3839393720352e36343630322031332e3839393720372e363736354331332e3839393720382e31353239332031332e3830383820382e36303831392031332e3634333520392e30323539394331332e3631313120392e31303739332031332e3537353820392e31383834332031332e3533373820392e32363733364331332e3339313620392e35373036352031332e32303520392e38353038352031322e3938352031302e3130314331332e313434352031302e323030332031332e323838352031302e333232322031332e343132362031302e343632314331332e353530332031302e323637352031332e373331362031302e313036322031332e3934323120392e39393235394331342e3037343320392e39323132342031342e3231383120392e38363836382031342e3336393820392e38333834364331342e3436373420392e38313930322031342e3536383320392e38303838332031342e3637313620392e38303838334331352e3532343420392e38303838332031362e323135372031302e353033382031362e323135372031312e333631315631352e323431394331362e323135372031362e303231332031352e363434332031362e363636352031342e383939372031362e373737344331342e383235322031362e373838342031342e373439312031362e373934322031342e363731362031362e373934324331342e333930342031362e373934322031342e313236372031362e373138362031332e383939372031362e353836365631372e393435324331332e383939372031372e393936362031332e383937372031382e303437342031332e383933372031382e303937384331322e373930372031382e363430372031312e353537382031382e39362031302e323534322031382e393936355a4d31372e323131372031352e333835324331372e323134342031352e333337382031372e323135372031352e32392031372e323135372031352e323431395631312e333631314331372e3231353720392e39383632372031362e3132393220382e38353735382031342e3736303820382e38313033374331342e3835313520382e34343732322031342e3839393720382e30363733352031342e3839393720372e363736354331342e3839393720352e30393136322031322e3830303120332031302e32313439203348392e383237303243372e3234313832203320352e313432323520352e303931363220352e313432323520372e3637363543352e313432323520382e303637333520352e313930343320382e343437323220352e323831313120382e383130333743332e393132373320382e383537353520322e383236313720392e393836323620322e38323631372031312e333631315631352e3234313943322e38323631372031352e3331303620322e38323838392031352e3337383720322e38333432322031352e3434363143312e36383332392031332e3933343120312031322e303436392031203130433120352e303239343420352e3032393434203120313020314331342e39373036203120313920352e30323934342031392031304331392031322e303139352031382e333334392031332e383833362031372e323131372031352e333835325a222066696c6c3d2223303046464530222f3e3c7061746820643d224d31302e323538312031392e393936374331302e323136322031392e393937382031302e313734332031392e393938362031302e313332332031392e393939314331302e313230352031392e393939332031302e313038372031392e393939342031302e3039372031392e393939354331302e303635352031392e393939382031302e3033342032302031302e30303234203230222066696c6c3d2223303046464530222f3e3c2f7376673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f5833e11910315e28d6d53b0a82bb6f33a3693267f09bff44c5111fba528c5e264736f6c6343000813003360806040523480156200001157600080fd5b506040518060200160405280600081525062000033816200003a60201b60201c565b50620003b0565b80600290816200004b9190620002c9565b5050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620000d157607f821691505b602082108103620000e757620000e662000089565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000112565b6200015d868362000112565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001aa620001a46200019e8462000175565b6200017f565b62000175565b9050919050565b6000819050919050565b620001c68362000189565b620001de620001d582620001b1565b8484546200011f565b825550505050565b600090565b620001f5620001e6565b62000202818484620001bb565b505050565b5b818110156200022a576200021e600082620001eb565b60018101905062000208565b5050565b601f82111562000279576200024381620000ed565b6200024e8462000102565b810160208510156200025e578190505b620002766200026d8562000102565b83018262000207565b50505b505050565b600082821c905092915050565b60006200029e600019846008026200027e565b1980831691505092915050565b6000620002b983836200028b565b9150826002028217905092915050565b620002d4826200004f565b67ffffffffffffffff811115620002f057620002ef6200005a565b5b620002fc8254620000b8565b620003098282856200022e565b600060209050601f8311600181146200034157600084156200032c578287015190505b620003388582620002ab565b865550620003a8565b601f1984166200035186620000ed565b60005b828110156200037b5784890151825560018201915060208501945060208101905062000354565b868310156200039b578489015162000397601f8916826200028b565b8355505b6001600288020188555050505b505050505050565b613d3580620003c06000396000f3fe608060405234801561001057600080fd5b506004361061009d5760003560e01c80634e1273f4116100665780634e1273f41461016a578063a22cb4651461019a578063e985e9c5146101b6578063f242432a146101e6578063f84ddf0b146102025761009d565b8062fdd58e146100a257806301ffc9a7146100d25780630e89341c146101025780632eb2c2d61461013257806340c10f191461014e575b600080fd5b6100bc60048036038101906100b79190611968565b610220565b6040516100c991906119b7565b60405180910390f35b6100ec60048036038101906100e79190611a2a565b6102e8565b6040516100f99190611a72565b60405180910390f35b61011c60048036038101906101179190611a8d565b6103ca565b6040516101299190611b4a565b60405180910390f35b61014c60048036038101906101479190611d69565b610459565b005b61016860048036038101906101639190611968565b6104fa565b005b610184600480360381019061017f9190611efb565b61052d565b6040516101919190612031565b60405180910390f35b6101b460048036038101906101af919061207f565b610646565b005b6101d060048036038101906101cb91906120bf565b61065c565b6040516101dd9190611a72565b60405180910390f35b61020060048036038101906101fb91906120ff565b6106f0565b005b61020a610791565b60405161021791906119b7565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161028790612208565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806103b357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806103c357506103c282610797565b5b9050919050565b6060600060405180610f800160405280610f538152602001612d6d610f539139905060006104286103fa85610801565b610403846108cf565b604051602001610414929190612394565b6040516020818303038152906040526108cf565b905060008160405160200161043d9190612425565b6040516020818303038152906040529050809350505050919050565b610461610a32565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806104a757506104a6856104a1610a32565b61065c565b5b6104e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dd906124b9565b60405180910390fd5b6104f38585858585610a3a565b5050505050565b6105298260036000815461050d90612508565b9190508190558360405180602001604052806000815250610d5b565b5050565b60608151835114610573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056a906125c2565b60405180910390fd5b6000835167ffffffffffffffff8111156105905761058f611b71565b5b6040519080825280602002602001820160405280156105be5781602001602082028036833780820191505090505b50905060005b845181101561063b5761060b8582815181106105e3576105e26125e2565b5b60200260200101518583815181106105fe576105fd6125e2565b5b6020026020010151610220565b82828151811061061e5761061d6125e2565b5b6020026020010181815250508061063490612508565b90506105c4565b508091505092915050565b610658610651610a32565b8383610f0b565b5050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6106f8610a32565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061073e575061073d85610738610a32565b61065c565b5b61077d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610774906124b9565b60405180910390fd5b61078a8585858585611077565b5050505050565b60035481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000600161081084611312565b01905060008167ffffffffffffffff81111561082f5761082e611b71565b5b6040519080825280601f01601f1916602001820160405280156108615781602001600182028036833780820191505090505b509050600082602001820190505b6001156108c4578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816108b8576108b7612611565b5b0494506000850361086f575b819350505050919050565b606060008251036108f157604051806020016040528060008152509050610a2d565b6000604051806060016040528060408152602001613cc060409139905060006003600285516109209190612640565b61092a9190612674565b600461093691906126a5565b67ffffffffffffffff81111561094f5761094e611b71565b5b6040519080825280601f01601f1916602001820160405280156109815781602001600182028036833780820191505090505b509050600182016020820185865187015b808210156109ed576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050610992565b5050600386510660018114610a095760028114610a1c57610a24565b603d6001830353603d6002830353610a24565b603d60018303535b50505080925050505b919050565b600033905090565b8151835114610a7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7590612759565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae4906127eb565b60405180910390fd5b6000610af7610a32565b9050610b07818787878787611465565b60005b8451811015610cb8576000858281518110610b2857610b276125e2565b5b602002602001015190506000858381518110610b4757610b466125e2565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf9061287d565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c9d9190612640565b9250508190555050505080610cb190612508565b9050610b0a565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051610d2f92919061289d565b60405180910390a4610d4581878787878761146d565b610d53818787878787611475565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc190612946565b60405180910390fd5b6000610dd4610a32565b90506000610de18561164c565b90506000610dee8561164c565b9050610dff83600089858589611465565b8460008088815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e5e9190612640565b925050819055508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628989604051610edc929190612966565b60405180910390a4610ef38360008985858961146d565b610f02836000898989896116c6565b50505050505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7090612a01565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161106a9190611a72565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dd906127eb565b60405180910390fd5b60006110f0610a32565b905060006110fd8561164c565b9050600061110a8561164c565b905061111a838989858589611465565b600080600088815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050858110156111b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a89061287d565b60405180910390fd5b85810360008089815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508560008089815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112669190612640565b925050819055508773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628a8a6040516112e3929190612966565b60405180910390a46112f9848a8a86868a61146d565b611307848a8a8a8a8a6116c6565b505050505050505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611370577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161136657611365612611565b5b0492506040810190505b6d04ee2d6d415b85acef810000000083106113ad576d04ee2d6d415b85acef810000000083816113a3576113a2612611565b5b0492506020810190505b662386f26fc1000083106113dc57662386f26fc1000083816113d2576113d1612611565b5b0492506010810190505b6305f5e1008310611405576305f5e10083816113fb576113fa612611565b5b0492506008810190505b612710831061142a5761271083816114205761141f612611565b5b0492506004810190505b6064831061144d576064838161144357611442612611565b5b0492506002810190505b600a831061145c576001810190505b80915050919050565b505050505050565b505050505050565b6114948473ffffffffffffffffffffffffffffffffffffffff1661189d565b15611644578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016114da959493929190612a85565b6020604051808303816000875af192505050801561151657506040513d601f19601f820116820180604052508101906115139190612b02565b60015b6115bb57611522612b3c565b806308c379a00361157e5750611536612b5e565b806115415750611580565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115759190611b4a565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b290612c60565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163990612cf2565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561166b5761166a611b71565b5b6040519080825280602002602001820160405280156116995781602001602082028036833780820191505090505b50905082816000815181106116b1576116b06125e2565b5b60200260200101818152505080915050919050565b6116e58473ffffffffffffffffffffffffffffffffffffffff1661189d565b15611895578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161172b959493929190612d12565b6020604051808303816000875af192505050801561176757506040513d601f19601f820116820180604052508101906117649190612b02565b60015b61180c57611773612b3c565b806308c379a0036117cf5750611787612b5e565b8061179257506117d1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c69190611b4a565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180390612c60565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188a90612cf2565b60405180910390fd5b505b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006118ff826118d4565b9050919050565b61190f816118f4565b811461191a57600080fd5b50565b60008135905061192c81611906565b92915050565b6000819050919050565b61194581611932565b811461195057600080fd5b50565b6000813590506119628161193c565b92915050565b6000806040838503121561197f5761197e6118ca565b5b600061198d8582860161191d565b925050602061199e85828601611953565b9150509250929050565b6119b181611932565b82525050565b60006020820190506119cc60008301846119a8565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a07816119d2565b8114611a1257600080fd5b50565b600081359050611a24816119fe565b92915050565b600060208284031215611a4057611a3f6118ca565b5b6000611a4e84828501611a15565b91505092915050565b60008115159050919050565b611a6c81611a57565b82525050565b6000602082019050611a876000830184611a63565b92915050565b600060208284031215611aa357611aa26118ca565b5b6000611ab184828501611953565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611af4578082015181840152602081019050611ad9565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b1c82611aba565b611b268185611ac5565b9350611b36818560208601611ad6565b611b3f81611b00565b840191505092915050565b60006020820190508181036000830152611b648184611b11565b905092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ba982611b00565b810181811067ffffffffffffffff82111715611bc857611bc7611b71565b5b80604052505050565b6000611bdb6118c0565b9050611be78282611ba0565b919050565b600067ffffffffffffffff821115611c0757611c06611b71565b5b602082029050602081019050919050565b600080fd5b6000611c30611c2b84611bec565b611bd1565b90508083825260208201905060208402830185811115611c5357611c52611c18565b5b835b81811015611c7c5780611c688882611953565b845260208401935050602081019050611c55565b5050509392505050565b600082601f830112611c9b57611c9a611b6c565b5b8135611cab848260208601611c1d565b91505092915050565b600080fd5b600067ffffffffffffffff821115611cd457611cd3611b71565b5b611cdd82611b00565b9050602081019050919050565b82818337600083830152505050565b6000611d0c611d0784611cb9565b611bd1565b905082815260208101848484011115611d2857611d27611cb4565b5b611d33848285611cea565b509392505050565b600082601f830112611d5057611d4f611b6c565b5b8135611d60848260208601611cf9565b91505092915050565b600080600080600060a08688031215611d8557611d846118ca565b5b6000611d938882890161191d565b9550506020611da48882890161191d565b945050604086013567ffffffffffffffff811115611dc557611dc46118cf565b5b611dd188828901611c86565b935050606086013567ffffffffffffffff811115611df257611df16118cf565b5b611dfe88828901611c86565b925050608086013567ffffffffffffffff811115611e1f57611e1e6118cf565b5b611e2b88828901611d3b565b9150509295509295909350565b600067ffffffffffffffff821115611e5357611e52611b71565b5b602082029050602081019050919050565b6000611e77611e7284611e38565b611bd1565b90508083825260208201905060208402830185811115611e9a57611e99611c18565b5b835b81811015611ec35780611eaf888261191d565b845260208401935050602081019050611e9c565b5050509392505050565b600082601f830112611ee257611ee1611b6c565b5b8135611ef2848260208601611e64565b91505092915050565b60008060408385031215611f1257611f116118ca565b5b600083013567ffffffffffffffff811115611f3057611f2f6118cf565b5b611f3c85828601611ecd565b925050602083013567ffffffffffffffff811115611f5d57611f5c6118cf565b5b611f6985828601611c86565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611fa881611932565b82525050565b6000611fba8383611f9f565b60208301905092915050565b6000602082019050919050565b6000611fde82611f73565b611fe88185611f7e565b9350611ff383611f8f565b8060005b8381101561202457815161200b8882611fae565b975061201683611fc6565b925050600181019050611ff7565b5085935050505092915050565b6000602082019050818103600083015261204b8184611fd3565b905092915050565b61205c81611a57565b811461206757600080fd5b50565b60008135905061207981612053565b92915050565b60008060408385031215612096576120956118ca565b5b60006120a48582860161191d565b92505060206120b58582860161206a565b9150509250929050565b600080604083850312156120d6576120d56118ca565b5b60006120e48582860161191d565b92505060206120f58582860161191d565b9150509250929050565b600080600080600060a0868803121561211b5761211a6118ca565b5b60006121298882890161191d565b955050602061213a8882890161191d565b945050604061214b88828901611953565b935050606061215c88828901611953565b925050608086013567ffffffffffffffff81111561217d5761217c6118cf565b5b61218988828901611d3b565b9150509295509295909350565b7f455243313135353a2061646472657373207a65726f206973206e6f742061207660008201527f616c6964206f776e657200000000000000000000000000000000000000000000602082015250565b60006121f2602a83611ac5565b91506121fd82612196565b604082019050919050565b60006020820190508181036000830152612221816121e5565b9050919050565b600081905092915050565b7f7b226e616d65223a202250574e20466175636574204552433131353520230000600082015250565b6000612269601e83612228565b915061227482612233565b601e82019050919050565b600061228a82611aba565b6122948185612228565b93506122a4818560208601611ad6565b80840191505092915050565b7f222c20226465736372697074696f6e223a20224a757374206120746573746e6560008201527f742045524331313535204e46542066726f6d20666175636574222c2022696d6160208201527f6765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c604082015250565b6000612332606083612228565b915061233d826122b0565b606082019050919050565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b600061237e600283612228565b915061238982612348565b600282019050919050565b600061239f8261225c565b91506123ab828561227f565b91506123b682612325565b91506123c2828461227f565b91506123cd82612371565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b600061240f601d83612228565b915061241a826123d9565b601d82019050919050565b600061243082612402565b915061243c828461227f565b915081905092915050565b7f455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e60008201527f6572206f7220617070726f766564000000000000000000000000000000000000602082015250565b60006124a3602e83611ac5565b91506124ae82612447565b604082019050919050565b600060208201905081810360008301526124d281612496565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061251382611932565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612545576125446124d9565b5b600182019050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b60006125ac602983611ac5565b91506125b782612550565b604082019050919050565b600060208201905081810360008301526125db8161259f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061264b82611932565b915061265683611932565b925082820190508082111561266e5761266d6124d9565b5b92915050565b600061267f82611932565b915061268a83611932565b92508261269a57612699612611565b5b828204905092915050565b60006126b082611932565b91506126bb83611932565b92508282026126c981611932565b915082820484148315176126e0576126df6124d9565b5b5092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000612743602883611ac5565b915061274e826126e7565b604082019050919050565b6000602082019050818103600083015261277281612736565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127d5602583611ac5565b91506127e082612779565b604082019050919050565b60006020820190508181036000830152612804816127c8565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000612867602a83611ac5565b91506128728261280b565b604082019050919050565b600060208201905081810360008301526128968161285a565b9050919050565b600060408201905081810360008301526128b78185611fd3565b905081810360208301526128cb8184611fd3565b90509392505050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612930602183611ac5565b915061293b826128d4565b604082019050919050565b6000602082019050818103600083015261295f81612923565b9050919050565b600060408201905061297b60008301856119a8565b61298860208301846119a8565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b60006129eb602983611ac5565b91506129f68261298f565b604082019050919050565b60006020820190508181036000830152612a1a816129de565b9050919050565b612a2a816118f4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000612a5782612a30565b612a618185612a3b565b9350612a71818560208601611ad6565b612a7a81611b00565b840191505092915050565b600060a082019050612a9a6000830188612a21565b612aa76020830187612a21565b8181036040830152612ab98186611fd3565b90508181036060830152612acd8185611fd3565b90508181036080830152612ae18184612a4c565b90509695505050505050565b600081519050612afc816119fe565b92915050565b600060208284031215612b1857612b176118ca565b5b6000612b2684828501612aed565b91505092915050565b60008160e01c9050919050565b600060033d1115612b5b5760046000803e612b58600051612b2f565b90505b90565b600060443d10612beb57612b706118c0565b60043d036004823e80513d602482011167ffffffffffffffff82111715612b98575050612beb565b808201805167ffffffffffffffff811115612bb65750505050612beb565b80602083010160043d038501811115612bd3575050505050612beb565b612be282602001850186611ba0565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e2d4552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000612c4a603483611ac5565b9150612c5582612bee565b604082019050919050565b60006020820190508181036000830152612c7981612c3d565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000612cdc602883611ac5565b9150612ce782612c80565b604082019050919050565b60006020820190508181036000830152612d0b81612ccf565b9050919050565b600060a082019050612d276000830188612a21565b612d346020830187612a21565b612d4160408301866119a8565b612d4e60608301856119a8565b8181036080830152612d608184612a4c565b9050969550505050505056fe3c7376672077696474683d2233303022206865696768743d22333030222076696577426f783d22302030203230203230222066696c6c3d226e6f6e652220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f737667223e3c7061746820643d224d32302031304332302031352e353232382031352e3532323820323020313020323043342e343737313520323020302031352e353232382030203130433020342e343737313520342e3437373135203020313020304331352e35323238203020323020342e34373731352032302031305a222066696c6c3d2223313131313131222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d362e31343937352031382e3131363743362e31343437392031382e3036303220362e31343232352031382e30303320362e31343232352031372e393435325631362e3538363643352e39313531362031362e3731383620352e36353135312031362e3739343220352e333730332031362e3739343243342e353137352031362e3739343220332e38323631372031362e3039393220332e38323631372031352e323431395631312e3336313143332e38323631372031302e3530333820342e3531373520392e383038383320352e3337303320392e383038383343352e383839383220392e383038383320362e33343934322031302e3036363820362e363239332031302e3436323243362e37353333382031302e3332323220362e38393734322031302e3230303420372e30353639362031302e31303143362e343837353120392e3435333820362e313432323520382e363035333820362e313432323520372e3637363543362e313432323520352e363436303220372e3739313938203420392e383237303220344831302e323134394331322e3234393920342031332e3839393720352e36343630322031332e3839393720372e363736354331332e3839393720382e36303533382031332e3535343420392e343533382031322e3938352031302e3130314331332e313434352031302e323030332031332e323838352031302e333232322031332e343132362031302e343632314331332e363932352031302e303636372031342e3135323120392e38303838332031342e3637313620392e38303838334331352e3532343420392e38303838332031362e323135372031302e353033382031362e323135372031312e333631315631352e323431394331362e323135372031362e303939322031352e353234342031362e373934322031342e363731362031362e373934324331342e333930342031362e373934322031342e313236372031362e373138362031332e383939372031362e353836365631372e393435324331332e383939372031372e393936362031332e383937372031382e303437342031332e383933372031382e303937384331322e373139392031382e363735352031312e333939312031392031302e3030323420313943382e363231303820313920372e33313338362031382e3638323620362e31343937352031382e313136375a222066696c6c3d2223313131313131222f3e3c7061746820643d224d372e363436343520372e363436343543372e383431373120372e343531313820382e313538323920372e343531313820382e333533353520372e363436343543382e363330333120372e3932333220392e313339323520382e323630323720392e373330333420382e333536354331302e3239303420382e34343736372031302e3936313720382e33333132322031312e3634363420372e36343634354331312e3834313720372e34353131382031322e3135383320372e34353131382031322e3335333620372e36343634354331322e3534383820372e38343137312031322e3534383820382e31353832392031322e3335333620382e33353335354331312e3433383320392e32363837382031302e3434323920392e343835363620392e353639363620392e3334333543382e373237343220392e323036333920382e303336333620382e373433343620372e363436343520382e333533353543372e343531313820382e313538323920372e343531313820372e383431373120372e363436343520372e36343634355a222066696c6c3d2223303046464530222f3e3c706174682066696c6c2d72756c653d226576656e6f64642220636c69702d72756c653d226576656e6f64642220643d224d31302e323538312031392e393936374331352e363631372031392e383539382032302031352e3433363620323020313043323020342e34373731352031352e353232382030203130203043342e34373731352030203020342e3437373135203020313043302031352e3532323820342e34373731352032302031302032304831302e303031324d31302e323534322031382e393936354331302e313730322031382e393938382031302e303835382031392031302e3030313220313943382e36323033322031382e3939393820372e33313335322031382e3638323420362e31343937352031382e3131363743362e31343437392031382e3036303220362e31343232352031382e30303320362e31343232352031372e393435325631362e3538363643352e39313531362031362e3731383620352e36353135312031362e3739343220352e333730332031362e3739343243352e32393238322031362e3739343220352e32313636372031362e3738383420352e31343232352031362e3737373443342e33393735392031362e3636363520332e38323631372031362e3032313320332e38323631372031352e323431395631312e3336313143332e38323631372031302e3530333820342e3531373520392e383038383320352e3337303320392e383038383343352e343733353920392e383038383320352e353734353120392e383139303320352e363732313220392e383338343743352e383233373920392e383638363820352e393637343720392e393231323220362e303939363220392e393932353443362e333130322031302e3130363220362e34393135322031302e3236373520362e363239332031302e3436323243362e37353333382031302e3332323220362e38393734322031302e3230303420372e30353639362031302e31303143362e383336383720392e383530383520362e363530323620392e353730363520362e353034313420392e323637333643362e343636313220392e313838343420362e343330383320392e313037393520362e333938343220392e303236303243362e323333303920382e363038323120362e313432323520382e313532393420362e313432323520372e3637363543362e313432323520352e363436303220372e3739313938203420392e383237303220344831302e323134394331322e3234393920342031332e3839393720352e36343630322031332e3839393720372e363736354331332e3839393720382e31353239332031332e3830383820382e36303831392031332e3634333520392e30323539394331332e3631313120392e31303739332031332e3537353820392e31383834332031332e3533373820392e32363733364331332e3339313620392e35373036352031332e32303520392e38353038352031322e3938352031302e3130314331332e313434352031302e323030332031332e323838352031302e333232322031332e343132362031302e343632314331332e353530332031302e323637352031332e373331362031302e313036322031332e3934323120392e39393235394331342e3037343320392e39323132342031342e3231383120392e38363836382031342e3336393820392e38333834364331342e3436373420392e38313930322031342e3536383320392e38303838332031342e3637313620392e38303838334331352e3532343420392e38303838332031362e323135372031302e353033382031362e323135372031312e333631315631352e323431394331362e323135372031362e303231332031352e363434332031362e363636352031342e383939372031362e373737344331342e383235322031362e373838342031342e373439312031362e373934322031342e363731362031362e373934324331342e333930342031362e373934322031342e313236372031362e373138362031332e383939372031362e353836365631372e393435324331332e383939372031372e393936362031332e383937372031382e303437342031332e383933372031382e303937384331322e373930372031382e363430372031312e353537382031382e39362031302e323534322031382e393936355a4d31372e323131372031352e333835324331372e323134342031352e333337382031372e323135372031352e32392031372e323135372031352e323431395631312e333631314331372e3231353720392e39383632372031362e3132393220382e38353735382031342e3736303820382e38313033374331342e3835313520382e34343732322031342e3839393720382e30363733352031342e3839393720372e363736354331342e3839393720352e30393136322031322e3830303120332031302e32313439203348392e383237303243372e3234313832203320352e313432323520352e303931363220352e313432323520372e3637363543352e313432323520382e303637333520352e313930343320382e343437323220352e323831313120382e383130333743332e393132373320382e383537353520322e383236313720392e393836323620322e38323631372031312e333631315631352e3234313943322e38323631372031352e3331303620322e38323838392031352e3337383720322e38333432322031352e3434363143312e36383332392031332e3933343120312031322e303436392031203130433120352e303239343420352e3032393434203120313020314331342e39373036203120313920352e30323934342031392031304331392031322e303139352031382e333334392031332e383833362031372e323131372031352e333835325a222066696c6c3d2223303046464530222f3e3c7061746820643d224d31302e323538312031392e393936374331302e323136322031392e393937382031302e313734332031392e393938362031302e313332332031392e393939314331302e313230352031392e393939332031302e313038372031392e393939342031302e3039372031392e393939354331302e303635352031392e393939382031302e3033342032302031302e30303234203230222066696c6c3d2223303046464530222f3e3c2f7376673e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa26469706673582212208ce0f469cdbec3255253d8bd6a5c6c8cdd2704bd408d9f6c5307101494fa9b9164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100575760003560e01c806367a5cd061461005c578063958ad41a14610078578063a98e6f4a14610096578063bc7990c6146100b4578063cee6edfc146100d2575b600080fd5b61007660048036038101906100719190610551565b6100f0565b005b610080610458565b60405161008d91906105dd565b60405180910390f35b61009e61047c565b6040516100ab9190610619565b60405180910390f35b6100bc6104a2565b6040516100c991906105dd565b60405180910390f35b6100da6104c8565b6040516100e79190610655565b60405180910390f35b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f198268056bc75e2d631000006040518363ffffffff1660e01b81526004016101549291906106c4565b600060405180830381600087803b15801561016e57600080fd5b505af1158015610182573d6000803e3d6000fd5b50505050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f198268056bc75e2d631000006040518363ffffffff1660e01b81526004016101ec9291906106c4565b600060405180830381600087803b15801561020657600080fd5b505af115801561021a573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161027991906106ed565b600060405180830381600087803b15801561029357600080fd5b505af11580156102a7573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161030691906106ed565b600060405180830381600087803b15801561032057600080fd5b505af1158015610334573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636a627842826040518263ffffffff1660e01b815260040161039391906106ed565b600060405180830381600087803b1580156103ad57600080fd5b505af11580156103c1573d6000803e3d6000fd5b50505050600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1982600a6040518363ffffffff1660e01b8152600401610423929190610743565b600060405180830381600087803b15801561043d57600080fd5b505af1158015610451573d6000803e3d6000fd5b5050505050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061051e826104f3565b9050919050565b61052e81610513565b811461053957600080fd5b50565b60008135905061054b81610525565b92915050565b600060208284031215610567576105666104ee565b5b60006105758482850161053c565b91505092915050565b6000819050919050565b60006105a361059e610599846104f3565b61057e565b6104f3565b9050919050565b60006105b582610588565b9050919050565b60006105c7826105aa565b9050919050565b6105d7816105bc565b82525050565b60006020820190506105f260008301846105ce565b92915050565b6000610603826105aa565b9050919050565b610613816105f8565b82525050565b600060208201905061062e600083018461060a565b92915050565b600061063f826105aa565b9050919050565b61064f81610634565b82525050565b600060208201905061066a6000830184610646565b92915050565b61067981610513565b82525050565b6000819050919050565b6000819050919050565b60006106ae6106a96106a48461067f565b61057e565b610689565b9050919050565b6106be81610693565b82525050565b60006040820190506106d96000830185610670565b6106e660208301846106b5565b9392505050565b60006020820190506107026000830184610670565b92915050565b6000819050919050565b600061072d61072861072384610708565b61057e565b610689565b9050919050565b61073d81610712565b82525050565b60006040820190506107586000830185610670565b6107656020830184610734565b939250505056fea2646970667358221220ca9e0b74d4489c8747605a96c5a7765301378c06a0075d4c6d0e6c3c8657b12964736f6c63430008130033

Block Transaction Gas Used Reward
view all blocks ##produced##

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.